|
|
@@ -40,13 +40,6 @@ namespace Bussiness.Model.Tech
|
|
|
[Description("组合层级")]
|
|
|
public int level { get; set; }
|
|
|
|
|
|
- /// <summary>
|
|
|
- /// 单位数量
|
|
|
- /// </summary>
|
|
|
- [Required]
|
|
|
- [Description("单位数量")]
|
|
|
- public int quantity { get; set; }
|
|
|
-
|
|
|
/// <summary>
|
|
|
/// 是否需要排产:1-是;0-否
|
|
|
/// </summary>
|
|
|
@@ -61,6 +54,39 @@ namespace Bussiness.Model.Tech
|
|
|
[Description("前置准备时间")]
|
|
|
public decimal? readytime { get; set; }
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 工作中心类型WorkCenterType
|
|
|
+ /// </summary>
|
|
|
+ [Description("工作中心类型")]
|
|
|
+ public int? wctype { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 前置最小数量LeadQuantity to Start Next
|
|
|
+ /// </summary>
|
|
|
+ [Precision(20, 8)]
|
|
|
+ [Description("前置最小数量")]
|
|
|
+ public decimal? lq { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 子工序加工数量UnitPerParent
|
|
|
+ /// </summary>
|
|
|
+ [Precision(20, 8)]
|
|
|
+ [Description("子工序加工数量")]
|
|
|
+ public decimal? upp { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 一次可加工数量UnitPerEquipment
|
|
|
+ /// </summary>
|
|
|
+ [Precision(20, 8)]
|
|
|
+ [Description("一次可加工数量")]
|
|
|
+ public decimal? upe { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 实际运行工位数WorkshopInUse
|
|
|
+ /// </summary>
|
|
|
+ [Description("实际运行工位数")]
|
|
|
+ public int? wsinuse { get; set; }
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 效率计算类型 1-节拍时间;2-UPH
|
|
|
/// </summary>
|