namespace Tnb.WarehouseMgr.Entities.Dto { /// /// 库房业务更新输入参数 /// public class MaterialTransferCallRackToProductionLineInput { /// /// 组织ID /// public string org_id { get; set; } /// /// 创建用户 /// public string create_id { get; set; } /// /// 工位 /// public string? workstation_id { get; set; } /// /// 终点库位 /// public string? endlocation_code { get; set; } /// /// 载具 /// public string? carry_code { get; set; } } }