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.
|
|
|
|
using DS.WMS.Core.Sys.Entity;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.Sys.Dtos
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务台字段自定义列查询接口的入参Dto
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class SysFieldSetTaskPlatQueryDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PermissionId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否获取默认配置 false:如果存在个人配置优先获取个人配置,否则获取默认配置 true:仅获取默认配置
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsGetDefault { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务类型Code数组
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string[] TaskTypeCodeArray { get; set; }
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务台字段自定义列查询接口的返回Dto
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class SysFieldSetTaskPlatResultDto: SysFieldSet
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务类型Code
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TaskTypeCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否为默认配置
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsDefault { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|