pan
2025-11-30 dcdb87f1cb6cfd66d3fc01bc2248e4876c37f223
ÏîÄ¿´úÂë/WMSÎÞ²Ö´¢°æ/WIDESEA_WMSServer/WIDESEA_DTO/Outbound/BatchOutBoundDto.cs
@@ -165,5 +165,30 @@
        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; }
        public bool IsAutoSplit { get; set; }
    }
    #endregion
}