2026-01-26 14:46:56 +08:00

41 lines
911 B
C#

using MiniExcelLibs.Attributes;
using RIZO.Model;
using System.ComponentModel.DataAnnotations;
namespace RIZO.Admin.WebApi.PLC.Model.Dto
{
/// <summary>
/// PLC返回的工位工序结果查询对象
/// </summary>
public class PlcOperationResultQueryDto : PagerInfo
{
}
/// <summary>
/// PLC返回的工位工序结果输入输出对象
/// </summary>
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; }
}
}