namespace Tnb.ProductionMgr.Entities.Dto { public class KittingOutInput { public string id { get; set; } /// /// 出库仓库ID /// public string warehouse_id { get; set; } = string.Empty; /// /// 目标库位编号 /// public string location_code { get; set; } = string.Empty; /// /// 产品ID /// public string material_id { get; set; } = string.Empty; /// /// 产品编号 /// public string? material_code { get; set; } /// /// 齐套搭配方案ID /// public string collocation_scheme_id { get; set; } = string.Empty; /// /// 齐套搭配方案编号 /// public string? collocation_scheme_code { get; set; } /// /// 顺序号 /// public string? seq { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } /// /// 单据号 /// public string code { get; set; } = string.Empty; /// /// 所属工位 /// public string? workstation_id { get; set; } /// /// 所属产线 /// public string? workline_id { get; set; } /// /// 任务单 /// public string? mo_task_id { get; set; } public List> tableField115 { get; set; } } }