namespace Tnb.WarehouseMgr.Entities.Dto
{
///
/// 库房业务更新输入参数
///
public class OutsourcedPartsInstockInput
{
///
/// 载具ID
///
public string? carry_code { get; set; }
///
/// 物料ID
///
public string? material_id { get; set; }
///
/// 物料数量
///
public decimal qty { get; set; }
///
/// 起点
///
public string? startlocation_id { get; set; }
///
/// 需求单据
///
public string? source_id { get; set; }
}
}