using System.ComponentModel.DataAnnotations; namespace ZR.Model.MES.wms.Dto { /// /// 拼箱操作 /// public class WmGoodsConsolidationDto { public List PackageList { get; set; } public int secondNum { get; set; } public string CreateBy { get; set; } } /// /// 拆箱操作 /// public class WmGoodsUnpackingDto { public ResultionPackageCodeDto Package { get; set; } public int firstNum { get; set; } public string CreateBy { get; set; } } }