2026-01-10 09:40:54 +08:00

54 lines
1.1 KiB
C#

namespace RIZO.Model.YALITEST.Dto
{
/// <summary>
/// 查询对象
/// </summary>
public class Test1QueryDto : PagerInfo
{
}
/// <summary>
/// 输入输出对象
/// </summary>
public class Test1Dto
{
[Required(ErrorMessage = "Id不能为空")]
public long Id { get; set; }
public string Linecode { get; set; }
public string Linename { get; set; }
public string Machinecode { get; set; }
public string Machinename { get; set; }
public string Rountingcode { get; set; }
public string Rountingname { get; set; }
public string Operationcode { get; set; }
public string Operationname { get; set; }
public int? Operationxuhao { get; set; }
public int? Status { get; set; }
public string Worker { get; set; }
public DateTime? Starttime { get; set; }
public DateTime? Finishtime { get; set; }
public int? Ifupload { get; set; }
public string Partnumber { get; set; }
[ExcelColumn(Name = "Status")]
public string StatusLabel { get; set; }
}
}