| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel; |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | |
| | | /// <summary> |
| | | /// 订åæç»ç¶æ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "订åæç»ç¶æ")] |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "订åæç»ç¶æ", DefaultValue = "0")] |
| | | public int OrderDetailStatus { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// <summary> |
| | | /// æ¶è´§åæç»è¡å· |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "æ¶è´§åæç»è¡å·")] |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "æ¶è´§åæç»è¡å·", DefaultValue = "0")] |
| | | public int RowNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// è¡å· |
| | | /// é»è®¤å¼: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "lineNo", ColumnDescription = "è¡å·")] |
| | | [SugarColumn(ColumnName = "lineNo", ColumnDescription = "è¡å·", DefaultValue = "0")] |
| | | public string? lineNo { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// ä»åº |
| | | /// é»è®¤å¼: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "warehouseCode", ColumnDescription = "ä»åº")] |
| | | [SugarColumn(ColumnName = "warehouseCode", ColumnDescription = "ä»åº", DefaultValue = "")] |
| | | public string? WarehouseCode { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// å¤ç®±æ¡ç |
| | | /// é»è®¤å¼: |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "outBoxbarcodes", ColumnDescription = "å¤ç®±æ¡ç ")] |
| | | [SugarColumn(ColumnName = "outBoxbarcodes", ColumnDescription = "å¤ç®±æ¡ç ", DefaultValue = "")] |
| | | public string? OutBoxbarcodes { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | public string BarcodeUnit { get; set; } = null!; |
| | | |
| | | /// <summary> |
| | | /// åä¼ MES |
| | | /// åä¼ MES 0æªåä¼ 1å·²åä¼ 2åä¼ å¤±è´¥ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "åä¼ MES")] |
| | | public int ReturnToMESStatus { get; set; } = 0; |
| | |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "夿³¨")] |
| | | public string Remark { get; set; } |
| | | |
| | | /// <summary> |
| | | /// èæåºå
¥åºæ°é |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "èæåºå
¥åºæ°é")] |
| | | public decimal NoStockOutQty { get; set; } |
| | | |
| | | /// <summary> |
| | | /// è°æ¨åè¿ææ¶é´ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "è¿ææ¥æ")] |
| | | public DateTime ValidDate { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æçç¼å· |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true, IsNullable = true)] |
| | | public string Pallet { get; set; } |
| | | } |
| | | } |