namespace YY.Admin.Core.Entity; /// MES 胶料快检记录原始数据明细 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; } /// 行检验结果:1合格 0不合格 public string? RowInspectResult { get; set; } public int? SortNo { get; set; } }