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