| | |
| | | public string PalletCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// è´§ä½ç¼ç |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "è´§ä½ç¼ç ")] |
| | | public string LocationCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦æ»¡ç |
| | | /// </summary> |
| | | [Required] |
| | |
| | | public bool IsFull { get; set; } = true; |
| | | |
| | | /// <summary> |
| | | /// ç¶æ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "ç¶æ")] |
| | | public int StockStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 夿³¨ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "夿³¨")] |
| | | public string Remark { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// ç产产线 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "ç产产线")] |
| | | public string ProductionLine { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å½åå·¥åº |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "å½åå·¥åº")] |
| | | public string ProcessCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ä¸ä¸å·¥åº |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "ä¸ä¸å·¥åº")] |
| | | public string NextProcessCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åºåæç» |
| | | /// </summary> |
| | | [MinItemsCount(1)] // æ£æµéåå
ç´ æå°1个 |
| | | [SugarColumn(ColumnName = "BoxingInfoDetails")] |
| | | [Navigate(NavigateType.OneToMany, nameof(DtBoxingInfoDetail.BoxingInfoId))] |
| | | public List<DtBoxingInfoDetail>? BoxingInfoDetails { get; set; } |