namespace Tnb.WarehouseMgr.Entities.Dto { /// /// 库房业务更新输入参数 /// public class FinishproductOutstockSortInput { /// /// 载具id /// public string? carry_id { get; set; } ///// ///// 物料id ///// //public string? material_id { get; set; } /// /// 数量 /// public decimal qty { get; set; } } }