namespace Tnb.ProductionMgr.Entities.Dto { public class PrdMoTaskIssueListOutput { public string id { get; set; } public string mo_task_code { get; set; } public string material_id { get; set; } public string mold_id { get; set; } public string eqp_id { get; set; } public string mo_task_status { get; set; } public decimal? plan_qty { get; set; } /// /// 已报工数量 /// public decimal? reported_work_qty { get; set; } = 0; public decimal? scrap_qty { get; set; } public decimal? scheduled_qty { get; set; } public string create_time { get; set; } public string workstation_id { get; set; } public string worker_id { get; set; } /// /// 白班人员id/白班前人员id/ /// public string dayshift_worker_id { get; set; } /// /// 夜班人员id/夜班前人员id/ /// public string nightshift_worker_id { get; set; } /// /// 白班后人员id/ /// public string dayshiftafter_worker_id { get; set; } /// /// 夜班后人员id/ /// public string nightshiftafter_worker_id { get; set; } /// /// 物料规格 /// public string? f_flowtaskid { get; set; } /// /// 物料型号 /// public string? f_flowid { get; set; } } }