| | |
| | | [DisplayName("单据号")] |
| | | public string ORDER_NO { get; set; } |
| | | /// <summary> |
| | | /// 状态(0Init初始化|1Imported已导入|2Counting清点中|3Storing上架中|4Review待审核|5Finished已完成|6Cancel已作废) |
| | | /// 状态(0Production生产退料|1Outsourcing委外退料) |
| | | /// </summary> |
| | | [DisplayName("状态(0Init初始化|1Imported已导入|2Counting清点中|3Storing上架中|4Review待审核|5Finished已完成|6Cancel已作废)")] |
| | | [DisplayName("状态(0Production生产退料|1Outsourcing委外退料)")] |
| | | public int RETURN_TYPE { get; set; } |
| | | /// <summary> |
| | | /// 状态(0Init初始化|1Imported已导入|2Counting清点中|3WaitIn待上架|4Storing上架中|5Review待审核|6Finished已完成|7Cancel已作废) |
| | | /// </summary> |
| | | [DisplayName("状态(0Init初始化|1Imported已导入|2Counting清点中|3WaitIn待上架|4Storing上架中|5Review待审核|6Finished已完成|7Cancel已作废)")] |
| | | public int STATUS { get; set; } |
| | | /// <summary> |
| | | /// 来源单据编码 |
| | |
| | | [Navigate(typeof(MappingClass), nameof(MappingClass.BIZ_U9_RETURNId), nameof(MappingClass.ClassAId))]//注意顺序 |
| | | public List<ClassA> ClassAList { get; set; } //注意禁止手动赋值,只能是null |
| | | */ |
| | | |
| | | [Navigate(NavigateType.OneToMany, nameof(BIZ_U9_RETURN_DTL.ORDER_NO), nameof(ORDER_NO), "GHOST_ROW = 0")]//一对一 ClassAId是BIZ_U9_RETURN类里面的外键ID字段 |
| | | public List<BIZ_U9_RETURN_DTL> Details { get; set; } //注意禁止手动赋值,只能是null |
| | | [Navigate(NavigateType.OneToMany, nameof(BIZ_U9_RETURN_SN.ORDER_NO), nameof(ORDER_NO), "GHOST_ROW = 0")]//一对一 ClassAId是BIZ_U9_RETURN类里面的外键ID字段 |
| | |
| | | */ |
| | | |
| | | /// <summary> |
| | | /// 枚举:状态(0Init初始化|1Imported已导入|2Counting清点中|3Storing上架中|4Review待审核|5Finished已完成|6Cancel已作废) |
| | | /// 枚举:状态(0Production生产退料|1Outsourcing委外退料) |
| | | /// </summary> |
| | | public enum RETURN_TYPEs |
| | | { |
| | | [Description("生产退料")] |
| | | Production = 0, |
| | | [Description("委外退料")] |
| | | Outsourcing = 1, |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 枚举:状态(0Init初始化|1Imported已导入|2Counting清点中|3WaitIn待上架|4Storing上架中|5Review待审核|6Finished已完成|7Cancel已作废) |
| | | /// </summary> |
| | | public enum STATUSs |
| | | { |
| | | [Description("初始化")] |
| | | Init = 0, |
| | | [Description("已导入")] |
| | | Imported = 1, |
| | | [Description("清点中")] |
| | | Counting = 2, |
| | | [Description("上架中")] |
| | | Storing = 3, |
| | | [Description("待审核")] |
| | | Review = 4, |
| | | [Description("已完成")] |
| | | Finished = 5, |
| | | [Description("已作废")] |
| | | Cancel = 6, |
| | | } |
| | | #endregion |
| | | { |
| | | [Description("初始化")] |
| | | Init = 0, |
| | | [Description("已导入")] |
| | | Imported = 1, |
| | | [Description("清点中")] |
| | | Counting = 2, |
| | | [Description("待上架")] |
| | | WaitIn = 3, |
| | | [Description("上架中")] |
| | | Storing = 4, |
| | | [Description("待审核")] |
| | | Review = 5, |
| | | [Description("已完成")] |
| | | Finished = 6, |
| | | [Description("已作废")] |
| | | Cancel = 7, |
| | | } |
| | | #endregion |
| | | |
| | | #region 公共方法 |
| | | #region 公共方法 |
| | | |
| | | #endregion |
| | | #endregion |
| | | |
| | | }//endClass |
| | | }//endClass |
| | | } |