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.

42 lines
1.1 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}