using MiniExcelLibs.Attributes; using RIZO.Model; using System.ComponentModel.DataAnnotations; namespace RIZO.Admin.WebApi.PLC.Model.Dto { /// /// PLC返回的工位工序结果查询对象 /// public class PlcOperationResultQueryDto : PagerInfo { } /// /// PLC返回的工位工序结果输入输出对象 /// public class PlcOperationResultDto { [Required(ErrorMessage = "ID不能为空")] public int Id { get; set; } public string? Sn { get; set; } public string? Workstationcode { get; set; } public int? Result { get; set; } public int? Qty { get; set; } public string? CreatedBy { get; set; } public DateTime? CreatedTime { get; set; } public string? UpdatedBy { get; set; } public DateTime? UpdatedTime { get; set; } } }