using DS.Module.Core.Data; using SqlSugar; namespace DS.WMS.Core.TaskPlat.Entity { /// /// 任务分配设置表 /// [SugarTable("task_allot_set", "任务分配设置表")] public class TaskAllotSet : BaseModelV2 { /// /// 任务类型 /// [SugarColumn(ColumnDescription = "任务类型编码", IsNullable = false, Length = 40)] public string TaskType { get; set; } /// /// 是否分配至操作 /// [SugarColumn(ColumnDescription = "是否分配至操作", IsNullable = false)] public bool AllotOperator { get; set; } /// /// 是否分配至单证 /// [SugarColumn(ColumnDescription = "是否分配至单证", IsNullable = false)] public bool AllotVouchingClerk { get; set; } /// /// 是否分配至销售 /// [SugarColumn(ColumnDescription = "是否分配至销售", IsNullable = false)] public bool AllotSale { get; set; } /// /// 是否分配至报关员 /// [SugarColumn(ColumnDescription = "是否分配至报关员", IsNullable = false)] public bool AllotCustom { get; set; } /// /// 是否分配至财务 /// [SugarColumn(ColumnDescription = "是否分配至财务", IsNullable = false)] public bool AllotFinancialStaff { get; set; } /// /// 是否分配至客服 /// [SugarColumn(ColumnDescription = "是否分配至客服", IsNullable = false)] public bool AllotCustomerService { get; set; } /// /// 是否分配至司机 /// [SugarColumn(ColumnDescription = "是否分配至司机", IsNullable = false)] public bool AllotDriver { get; set; } /// /// 是否分配至派车调度人员 /// [SugarColumn(ColumnDescription = "是否分配至派车调度人员", IsNullable = false)] public bool AllotDispatcher { get; set; } } }