|
|
@@ -228,5 +228,66 @@ namespace Business.Model.MES.IC
|
|
|
/// </summary>
|
|
|
[Comment("启用预警")]
|
|
|
public int? enable_warning { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 生命周期状态:1-成熟品,2-新品,3-重点新品,4-退市
|
|
|
+ /// </summary>
|
|
|
+ [Comment("生命周期状态")]
|
|
|
+ public int? life_state { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 经济生产批量
|
|
|
+ /// </summary>
|
|
|
+ [Comment("经济生产批量")]
|
|
|
+ public decimal? moq { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 最大生产批量
|
|
|
+ /// </summary>
|
|
|
+ [Comment("最大生产批量")]
|
|
|
+ public decimal? maq{ get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 是否备料前预处理
|
|
|
+ /// </summary>
|
|
|
+ [Comment("是否备料前预处理")]
|
|
|
+ public int? is_clean { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 预处理提前期(天)
|
|
|
+ /// </summary>
|
|
|
+ [Comment("预处理提前期")]
|
|
|
+ public decimal? clean_leadtime { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 工序委外提前期/灭菌提前期(天)
|
|
|
+ /// </summary>
|
|
|
+ [Comment("工序委外提前期")]
|
|
|
+ public decimal? sterilize_leadtime { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 平台调拨提前期(天)
|
|
|
+ /// </summary>
|
|
|
+ [Comment("平台调拨提前期")]
|
|
|
+ public decimal? transfer_leadtime { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 标准工期(天)
|
|
|
+ /// </summary>
|
|
|
+ [Comment("标准工期")]
|
|
|
+ public decimal? standard_period { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// FMR分类:F-F类,M-M类,R-R类
|
|
|
+ /// </summary>
|
|
|
+ [Comment("FMR分类")]
|
|
|
+ public string? fmr { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// ABC分类:A-A类,B-B类,C-C类
|
|
|
+ /// </summary>
|
|
|
+ [Comment("ABC分类")]
|
|
|
+ public string? abc { get; set; }
|
|
|
+
|
|
|
}
|
|
|
}
|