43 lines
984 B
C#
43 lines
984 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DOAN.Model.Dto
|
|
{
|
|
/// <summary>
|
|
/// 折叠台,追溯码绑定检测数据列描述字典查询对象
|
|
/// </summary>
|
|
public class TraceDictZdParameterQueryDto : PagerInfo
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 折叠台,追溯码绑定检测数据列描述字典输入输出对象
|
|
/// </summary>
|
|
public class TraceDictZdParameterDto
|
|
{
|
|
[Required(ErrorMessage = "数据上传字典不能为空")]
|
|
public int Id { get; set; }
|
|
|
|
public string ColCode { get; set; }
|
|
|
|
public string Code { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public decimal UpperLimit { get; set; }
|
|
|
|
public decimal LowerLimit { get; set; }
|
|
|
|
public string Unit { get; set; }
|
|
|
|
public int? Sort { get; set; }
|
|
|
|
public int? Status { get; set; }
|
|
|
|
public string CreateBy { get; set; }
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |