| | |
| | | public string PalletCode { get; set; } |
| | | } |
| | | #endregion |
| | | #region DTOç±» |
| | | |
| | | |
| | | |
| | | public class SplitPackageChainInfoDto |
| | | { |
| | | public string OriginalBarcode { get; set; } |
| | | public string RootBarcode { get; set; } // æ°å¢ï¼æ ¹æ¡ç |
| | | public int TotalSplitTimes { get; set; } |
| | | public string ChainType { get; set; } // "root" æ "branch" |
| | | public List<SplitChainItemDto> SplitChain { get; set; } |
| | | } |
| | | |
| | | public class SplitChainItemDto |
| | | { |
| | | public DateTime SplitTime { get; set; } |
| | | public string OriginalBarcode { get; set; } |
| | | public string NewBarcode { get; set; } |
| | | public decimal SplitQuantity { get; set; } |
| | | public string Operator { get; set; } |
| | | public bool IsReverted { get; set; } |
| | | } |
| | | |
| | | #endregion |
| | | } |