14 lines
424 B
C#
14 lines
424 B
C#
namespace YY.Admin.Core.Entity;
|
|
|
|
public class MesXslRubberQuickTestRecordLine
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? RecordId { get; set; }
|
|
public string? DataPointId { get; set; }
|
|
public string? InspectItem { get; set; }
|
|
public decimal? LowerLimit { get; set; }
|
|
public decimal? InspectValue { get; set; }
|
|
public decimal? UpperLimit { get; set; }
|
|
public int? SortNo { get; set; }
|
|
}
|