| | |
| | | public int pageNo { get; set; } |
| | | |
| | | } |
| | | // æå
é¾DTO |
| | | public class SplitPackageChainDto |
| | | { |
| | | public int Id { get; set; } |
| | | public DateTime SplitTime { get; set; } |
| | | public string Operator { get; set; } |
| | | public string OriginalBarcode { get; set; } |
| | | public string NewBarcode { get; set; } |
| | | public decimal SplitQty { get; set; } |
| | | public decimal RemainQuantity { get; set; } |
| | | public bool IsReverted { get; set; } |
| | | public DateTime? RevertTime { get; set; } |
| | | public int? PreviousSplitRecordId { get; set; } |
| | | |
| | | public int NewLockInfoId { get; set; } |
| | | public int Status { get; set; } |
| | | } |
| | | // æå
è¯·æ± |
| | | public class SplitPackageRequest |
| | | { |
| | |
| | | public string PalletCode { get; set; } |
| | | public string OriginalBarcode { get; set; } |
| | | public decimal SplitQuantity { get; set; } |
| | | public string MaterielCode { get; set; } |
| | | } |
| | | |
| | | public class RevertSplitDto |
| | | { |
| | | public string OriginalBarcode { get; set; } |
| | | } |
| | | |
| | | // æå
ç»æç±» |
| | | public class SplitResult |
| | | { |
| | | public string OriginalBarcode { get; set; } |
| | | public string NewBarcode { get; set; } |
| | | public decimal SplitQuantity { get; set; } |
| | | public decimal RemainQuantity { get; set; } |
| | | } |
| | | } |