You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
namespace Myshipping.Core.Const
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 租户参数Code常量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class TenantParamCode
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否启用舱位相关功能
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const string ENABLE_SLOT_ABILITY = "ENABLE_SLOT_ABILITY";
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否启用费用相关功能
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const string ENABLE_FEE_ABILITY = "ENABLE_FEE_ABILITY";
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否必须使用船期表录入船期参数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const string VESSEL_FROM_CONFIG_ONLY = "VESSEL_FROM_CONFIG_ONLY";
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通过运踪更新船舶动态开关
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const string ENABLE_STATUS_TO_SAILING_DATE = "EnableStatusToSailingDate";
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 删除订舱前是否先询问东胜
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const string ASK_DS_BEFORE_DELETE_BOOKING_ORDER = "AskDsBeforeDeleteBookingOrder";
|
|
|
|
|
}
|
|
|
|
|
}
|