桌面端胶料快检实验标准添加

This commit is contained in:
2026-06-17 15:41:06 +08:00
parent e28352f8ea
commit 94b15e5237
43 changed files with 2651 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
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; }
}