using SqlSugar; namespace DS.WMS.Core.Op.Entity.TaskInteraction { /// /// 任务邮件接收人配置 /// [SugarTable("business_task_mail_receiver", "任务邮件接收人配置")] public class BusinessTaskMailReceiver { /// /// 任务邮件配置ID /// [SugarColumn(IsPrimaryKey = true)] public long TaskMailId { get; set; } /// /// Desc:是否船公司 /// [SugarColumn(ColumnDescription = "是否船公司", DefaultValue = "0")] public bool IsCarrier { get; set; } /// /// Desc:是否订舱公司 /// [SugarColumn(ColumnDescription = "是否订舱公司", DefaultValue = "0")] public bool IsBooking { get; set; } /// /// Desc:是否场站 /// [SugarColumn(ColumnDescription = "是否场站", DefaultValue = "0")] public bool IsYard { get; set; } /// /// Desc:是否车队 /// [SugarColumn(ColumnDescription = "是否车队", DefaultValue = "0")] public bool IsTruck { get; set; } /// /// Desc:是否委托单位 /// [SugarColumn(ColumnDescription = "是否委托单位", DefaultValue = "0")] public bool IsController { get; set; } ///// ///// Desc:是否报关行 ///// //[SugarColumn(ColumnDescription = "是否报关行", DefaultValue = "0")] //public bool IsCustom { get; set; } ///// ///// Desc:是否代理(国外) ///// //[SugarColumn(ColumnDescription = "是否代理(国外)", DefaultValue = "0")] //public bool IsAgent { get; set; } ///// ///// Desc:是否代理(国内) ///// //[SugarColumn(ColumnDescription = "是否代理(国内)", DefaultValue = "0")] //public bool IsAgentCn { get; set; } ///// ///// Desc:是否快递公司 ///// //[SugarColumn(ColumnDescription = "是否快递公司", DefaultValue = "0")] //public bool IsExpress { get; set; } ///// ///// Desc:是否航空公司 ///// //[SugarColumn(ColumnDescription = "是否航空公司", DefaultValue = "0")] //public bool IsAirLines { get; set; } ///// ///// Desc:是否发货人 ///// //[SugarColumn(ColumnDescription = "是否发货人", DefaultValue = "0")] //public bool IsShipper { get; set; } ///// ///// Desc:是否收货人 ///// //[SugarColumn(ColumnDescription = "是否收货人", DefaultValue = "0")] //public bool IsConsignee { get; set; } ///// ///// Desc:是否通知人 ///// //[SugarColumn(ColumnDescription = "是否通知人", DefaultValue = "0")] //public bool IsNotifyParty { get; set; } ///// ///// Desc:是否仓库 ///// //[SugarColumn(ColumnDescription = "是否仓库", DefaultValue = "0")] //public bool IsWareHouse { get; set; } ///// ///// Desc:是否码头 ///// //[SugarColumn(ColumnDescription = "是否码头", DefaultValue = "0")] //public bool IsWharf { get; set; } ///// ///// Desc:是否保险公司 ///// //[SugarColumn(ColumnDescription = "是否保险公司", DefaultValue = "0")] //public bool IsInsurer { get; set; } ///// ///// Desc:是否租箱公司 ///// //[SugarColumn(ColumnDescription = "是否租箱公司", DefaultValue = "0")] //public bool IsLeasing { get; set; } ///// ///// Desc:是否贸易代理 ///// //[SugarColumn(ColumnDescription = "是否贸易代理", DefaultValue = "0")] //public bool IsTradingAgency { get; set; } ///// ///// Desc:是否船代 ///// //[SugarColumn(ColumnDescription = "是否船代", DefaultValue = "0")] //public bool IsShipAgency { get; set; } ///// ///// Desc:是否经营单位 ///// //[SugarColumn(ColumnDescription = "是否经营单位", DefaultValue = "0")] //public bool IsEnterprise { get; set; } ///// ///// Desc:是否国内发货人 ///// //[SugarColumn(ColumnDescription = "是否国内发货人", DefaultValue = "0")] //public bool IsShipperCn { get; set; } } }