| | |
| | | { |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] |
| | | public int Id { get; set; } |
| | | |
| | | public string OrderNo { get; set; } |
| | | public int OrderDetailId { get; set; } |
| | | |
| | | public string PalletCode { get; set; } |
| | | |
| | | public int OutStockLockId { get; set; } |
| | | public string MaterielCode { get; set; } |
| | | |
| | | [SugarColumn(Length = 100)] |
| | | public string Barcode { get; set; } |
| | |
| | | { |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] |
| | | public int Id { get; set; } |
| | | |
| | | public string OrderNo { get; set; } |
| | | public string PalletCode { get; set; } |
| | | public string StockId { get; set; } |
| | | public bool IsReverted { get; set; } = false; |
| | | public int OutStockLockInfoId { get; set; } // å
³èçåºåºéå®ä¿¡æ¯ |
| | | public string OriginalBarcode { get; set; } // åæ¡ç |
| | | public string NewBarcode { get; set; } // æ°æ¡ç |
| | |
| | | /// </summary> |
| | | public decimal SplitQty { get; set; } |
| | | |
| | | |
| | | public decimal RemainQuantity { get; set; } |
| | | |
| | | public string MaterielCode { get; set; } // ç©æç¼ç |
| | | public DateTime SplitTime { get; set; } = DateTime.Now; |