647556386
2025-11-30 04bd9fa1060d711e0e90492c103699f50b49ba17
ÏîÄ¿´úÂë/WMSÎÞ²Ö´¢°æ/WIDESEA_WMSServer/WIDESEA_DTO/Outbound/BatchOutBoundDto.cs
@@ -165,5 +165,28 @@
        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
}