Files
qhmes/yy-admin-master/YY.Admin.Core/Entity/MesXslRubberQuickTestRecordRawLine.cs

18 lines
644 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace YY.Admin.Core.Entity;
/// <summary>MES 胶料快检记录原始数据明细</summary>
public class MesXslRubberQuickTestRecordRawLine
{
public string? Id { get; set; }
public string? RecordId { get; set; }
public string? RowNo { get; set; }
public string? DataPointId { get; set; }
public string? InspectItem { get; set; }
public decimal? LowerLimit { get; set; }
public decimal? UpperLimit { get; set; }
public decimal? InspectValue { get; set; }
/// <summary>行检验结果1合格 0不合格</summary>
public string? RowInspectResult { get; set; }
public int? SortNo { get; set; }
}