namespace Tnb.WarehouseMgr.Entities.Dto
{
///
/// 库房业务更新输入参数
///
public class MaterialTransferDistributeSCWToZCCInput
{
///
/// 组织ID
///
public string org_id { get; set; }
///
/// 创建用户
///
public string create_id { get; set; }
///
/// 来源单据id(转库单子表)
///
public string? source_id { get; set; }
///
/// 载具条码
///
public string? carry_code { get; set; }
///
/// 数量
///
public decimal qty { get; set; }
///
/// 起点
///
public string startlocation_code { get; set; }
}
}