| | |
| | | [DisplayName("状态(0Init初始化|1Imported已导入|2Release已下发|3Working生产中|4Paused已暂停|5Closed已关闭)")] |
| | | public int STATUS { get; set; } |
| | | /// <summary> |
| | | /// 是否准备完成(Y/N) |
| | | /// </summary> |
| | | [DisplayName("是否准备完成(Y/N)")] |
| | | public string IS_READY { get; set; } |
| | | /// <summary> |
| | | /// 物料编码 |
| | | /// </summary> |
| | | [DisplayName("物料编码")] |
| | |
| | | /// </summary> |
| | | [DisplayName("实际线体")] |
| | | public string ACT_LINE { get; set; } |
| | | /// <summary> |
| | | /// 计划日期 |
| | | /// </summary> |
| | | [DisplayName("计划日期")] |
| | | public DateTime PLAN_DATE { get; set; } = DateTime.MinValue; |
| | | /// <summary> |
| | | /// 实际开始时间 |
| | | /// </summary> |
| | |
| | | [DisplayName("下发人")] |
| | | public string RELEASE_USER { get; set; } |
| | | /// <summary> |
| | | /// 变更时间 |
| | | /// </summary> |
| | | [DisplayName("变更时间")] |
| | | public DateTime CHANGE_TIME { get; set; } = DateTime.MinValue; |
| | | /// <summary> |
| | | /// 变更人 |
| | | /// </summary> |
| | | [DisplayName("变更人")] |
| | | public string CHANGE_USER { get; set; } |
| | | /// <summary> |
| | | /// 计划数量 |
| | | /// </summary> |
| | | [DisplayName("计划数量")] |
| | |
| | | [DisplayName("入库数量")] |
| | | public int STOCK_IN_QTY { get; set; } |
| | | /// <summary> |
| | | /// 首件确认数量 |
| | | /// </summary> |
| | | [DisplayName("首件确认数量")] |
| | | public int FIRST_IN_QTY { get; set; } |
| | | /// <summary> |
| | | /// UPH |
| | | /// </summary> |
| | | [DisplayName("UPH")] |
| | |
| | | #region 虚拟属性 |
| | | /*例子 |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string FieldName { get; set; } |
| | | public string FieldName { get; set; } |
| | | */ |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string VALIDATION_TYPE { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string VALIDATION_RESULT { get; set; } |
| | | #endregion |
| | | |
| | | #region 外键属性 |