namespace Tnb.WarehouseMgr.Entities.Dto { /// /// 库房业务更新输入参数 /// public class CarryMaterialInventoryInput { /// /// 仓库编码 /// public string? warehouse_code { get; set; } /// /// 物料id /// public string? material_id { get; set; } /// /// 批次 /// public string? code_batch { get; set; } } }