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.
70 lines
2.4 KiB
C#
70 lines
2.4 KiB
C#
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";
|
|
|
|
/// <summary>
|
|
/// 是否启用委托单位权限显示控制
|
|
/// </summary>
|
|
/// <remarks>开启此参数后,在部分接口查询数据时会根据当前登陆人的权限范围来决定返回哪些委托单位,如委托单位管理台账查询接口、委托单位下拉查询接口、舱位管理台账查询接口、舱位管理详情查询接口等</remarks>
|
|
public const string IS_ENABLE_CUSTOMER_AUTHORITY = "IS_ENABLE_CUSTOMER_AUTHORITY";
|
|
|
|
/// <summary>
|
|
/// 订舱途径选择
|
|
/// </summary>
|
|
public const string BOOKING_CHANNEL_SELECT_SHOW = "BOOKING_CHANNEL_SELECT_SHOW";
|
|
|
|
/// <summary>
|
|
/// BC任务生成默认选项
|
|
/// </summary>
|
|
public const string BC_TASK_CREATE_ORDER = "BC_TASK_CREATE_ORDER";
|
|
|
|
/// <summary>
|
|
/// 订舱分公司信息
|
|
/// </summary>
|
|
public const string BOOKING_SUB_TENANT = "BOOKING_SUB_TENANT";
|
|
|
|
/// <summary>
|
|
/// 货描允许中文
|
|
/// </summary>
|
|
public const string DESCRIP_CAN_CHINESE = "DESCRIP_CAN_CHINESE";
|
|
|
|
/// <summary>
|
|
/// 订舱台账显示退舱
|
|
/// </summary>
|
|
public const string BOOKING_LIST_SHOW_CANCEL = "BOOKING_LIST_SHOW_CANCEL";
|
|
|
|
/// <summary>
|
|
/// ERP代码字段是否可编辑
|
|
/// </summary>
|
|
public const string ERP_CODE_CAN_EDIT = "ERP_CODE_CAN_EDIT";
|
|
}
|
|
}
|