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.
22 lines
485 B
C#
22 lines
485 B
C#
using DS.WMS.Core.Sys.Entity;
|
|
|
|
namespace DS.WMS.Core.Sys.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 任务台字段自定义列查询接口的返回Dto
|
|
/// </summary>
|
|
public class SysFieldSetTaskPlatQueryDtos: SysFieldSet
|
|
{
|
|
/// <summary>
|
|
/// 任务类型Code
|
|
/// </summary>
|
|
public string TaskTypeCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 是否为默认配置
|
|
/// </summary>
|
|
public bool IsDefault { get; set; }
|
|
}
|
|
}
|