|
@@ -12,26 +12,31 @@ namespace wms.sqlsugar.model.cp
|
|
|
/// <summary>
|
|
|
/// 标准重量
|
|
|
/// </summary>
|
|
|
- public decimal StandardWeight;
|
|
|
+ [SugarColumn(ColumnDescription = "标准重量")]
|
|
|
+ public decimal StandardWeight { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 称重重量
|
|
|
/// </summary>
|
|
|
- public decimal MeasuredWeight;
|
|
|
+ [SugarColumn(ColumnDescription = "称重重量")]
|
|
|
+ public decimal MeasuredWeight { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 偏差上限
|
|
|
/// </summary>
|
|
|
- public decimal UpperDeviationLimit;
|
|
|
+ [SugarColumn(ColumnDescription = "偏差上限")]
|
|
|
+ public decimal UpperDeviationLimit { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 偏差下限
|
|
|
/// </summary>
|
|
|
- public decimal LowerDeviationLimit;
|
|
|
+ [SugarColumn(ColumnDescription = "偏差下限")]
|
|
|
+ public decimal LowerDeviationLimit { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 是否超限
|
|
|
/// </summary>
|
|
|
- public bool IsOutOfTolerance;
|
|
|
+ [SugarColumn(ColumnDescription = "是否超限")]
|
|
|
+ public bool IsOutOfTolerance { get; set; }
|
|
|
}
|
|
|
}
|