| | |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] |
| | | public int Id { get; set; } |
| | | |
| | | public int TaskNo { 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; } |
| | |
| | | public string LocationCode { get; set; } |
| | | |
| | | public int StockId { get; set; } |
| | | } |
| | | |
| | | |
| | | |
| | | public string FactoryArea { get; set; } |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// ååºè®°å½è¡¨ |
| | | /// </summary> |
| | |
| | | { |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] |
| | | public int Id { get; set; } |
| | | |
| | | public string OrderNo { get; set; } |
| | | public int? TaskNum { get; set; } |
| | | public string PalletCode { get; set; } |
| | | public int StockId { get; set; } |
| | | public bool IsReverted { get; set; } = false; |
| | | public int OutStockLockInfoId { get; set; } // å
³èçåºåºéå®ä¿¡æ¯ |
| | | public string OriginalBarcode { get; set; } // åæ¡ç |
| | | public string NewBarcode { get; set; } // æ°æ¡ç |
| | | |
| | | public string FactoryArea { get; set; } |
| | | /// <summary> |
| | | /// æåæ°éï¼æ°æ¡ç æ°éï¼ |
| | | /// </summary> |
| | | public decimal SplitQty { get; set; } |
| | | |
| | | |
| | | |
| | | public decimal RemainQuantity { get; set; } |
| | | |
| | | public string MaterielCode { get; set; } // ç©æç¼ç |
| | | public DateTime SplitTime { get; set; } = DateTime.Now; |
| | | public string Operator { get; set; } // æä½äºº |
| | | public int Status { get; set; } // ç¶æï¼1-å·²æå
2-å·²æ£é 3-å·²ååº |
| | | } |
| | | |
| | | |
| | | public DateTime RevertTime { get; set; } |
| | | |
| | | public int PreviousSplitRecordId { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true)] |
| | | public decimal? OriginalStockQuantity { get; set; } |
| | | |
| | | public decimal StockBeforeSplit { get; set; } |
| | | public decimal AssignBeforeSplit { get; set; } |
| | | } |
| | | |
| | | |
| | | } |