消除warning

This commit is contained in:
2023-07-17 11:57:47 +08:00
parent 4d6a192605
commit 1006f54afb
11 changed files with 41 additions and 36 deletions

View File

@@ -3,7 +3,7 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
public class PrdTaskManageListOutput
{
public string id { get; set; } = string.Empty;
public string mo_task_code { 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;
@@ -11,7 +11,7 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
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; } = string.Empty;
public string schedule_type { get; set; } = string.Empty;
public string? mo_task_status { get; set; } = string.Empty;
public string? schedule_type { get; set; } = string.Empty;
}
}