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