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.
17 lines
525 B
C#
17 lines
525 B
C#
namespace DS.WMS.Core.TaskPlat.Dtos
|
|
{
|
|
public class TaskAllocationSaveDto
|
|
{
|
|
/// <summary>
|
|
/// 分配对象编码 Operator=操作 VouchingClerk=单证 Sale=销售 Custom=报关员 FinancialStaff=财务 CustomerService=客服 Driver=司机 Dispatcher=派车调度人员
|
|
/// </summary>
|
|
public string AllocationTargetCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 任务类型编码列表
|
|
/// </summary>
|
|
public List<string> TaskTypeCodeList { get; set; }
|
|
}
|
|
}
|