heshaofeng
8 天以前 cd44f1223ccf40a2b6f0788dbcd24ff7cd8f0eef
ÏîÄ¿´úÂë/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
}