56 lines
1.4 KiB
C#
Raw Normal View History

2025-11-29 14:58:50 +08:00
namespace RIZO.Model.Mes.Dto.ProductionPreparation
{
/// <summary>
/// 质量控制主表查询对象
/// </summary>
public class QualityControlQueryDto : PagerInfo
{
2025-12-01 17:24:01 +08:00
public string LineCode { get; set; }
public string CheckType { get; set; }
public string CheckDate { get; set; }
2025-11-29 14:58:50 +08:00
}
/// <summary>
/// 质量控制主表输入输出对象
/// </summary>
public class QualityControlDto
{
public long Id { get; set; }
public string QcCode { get; set; }
public string CheckType { get; set; }
public string CheckDate { get; set; }
public string LineCode { get; set; }
2025-11-29 16:11:46 +08:00
public string LineName { get; set; }
2025-11-29 14:58:50 +08:00
public int? CheckResult { get; set; }
public DateTime? CheckTime { get; set; }
public string Remark { get; set; }
public DateTime? CreatedTime { get; set; }
public string CreatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
public string UpdatedBy { get; set; }
2025-11-29 16:11:46 +08:00
public string CreatedName { get; set; }
public string UpdatedName { get; set; }
public int? Sequcence { get; set; }
2025-11-29 14:58:50 +08:00
[ExcelColumn(Name = "质控类型")]
public string CheckTypeLabel { get; set; }
2025-11-29 16:11:46 +08:00
[ExcelColumn(Ignore = true)]
public List<QualityControlDetailDto> parmDetails { get; set; }
2025-11-29 14:58:50 +08:00
}
}