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.
24 lines
548 B
C#
24 lines
548 B
C#
namespace DS.WMS.Core.TaskPlat.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 是否创建任务配置列表查询结果Dto
|
|
/// </summary>
|
|
public class CreateTaskConfigDto
|
|
{
|
|
/// <summary>
|
|
/// 任务类型编码
|
|
/// </summary>
|
|
public string TaskTypeCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务类型名称
|
|
/// </summary>
|
|
public string TaskTypeName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否创建
|
|
/// </summary>
|
|
public bool IsCreate { get; set; }
|
|
}
|
|
}
|