| | |
| | | |
| | | public int StockId { get; set; } |
| | | |
| | | public string BatchNo { get; set; } |
| | | |
| | | public bool IsCancelled { get; set; } |
| | | |
| | | public DateTime? CancelTime { get; set; } |
| | | |
| | | public string CancelOperator { get; set; } |
| | | public string FactoryArea { 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 string RevertOperator { 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; } |
| | | } |
| | | |
| | | |