消除warning

This commit is contained in:
2023-07-07 15:54:43 +08:00
parent c112472256
commit 844b76b823
17 changed files with 81 additions and 96 deletions

View File

@@ -2,16 +2,16 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class PrdTaskManageListOutput
{
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 plan_start_date { get; set; }
public string plan_end_date { get; set; }
public string id { get; set; } = string.Empty;
public string mo_task_code { get; set; } = string.Empty;
public string material_id { get; set; } = string.Empty;
public string mold_id { get; set; } = string.Empty;
public string eqp_id { get; set; } = string.Empty;
public string plan_start_date { get; set; } = string.Empty;
public string plan_end_date { get; set; } = string.Empty;
public int? plan_qty { get; set; }
public int? complete_qty { get; set; }
public string mo_task_status { get; set; }
public string schedule_type { get; set; }
public string mo_task_status { get; set; } = string.Empty;
public string schedule_type { get; set; } = string.Empty;
}
}