消除warning
This commit is contained in:
@@ -36,7 +36,7 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
||||
/// <summary>
|
||||
/// 物料规格型号
|
||||
/// </summary>
|
||||
public string material_standard { get; set; } = string.Empty;
|
||||
public string? material_standard { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 工单类型:1-正常工单、2-返工工单、3-试制工单
|
||||
@@ -51,32 +51,32 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
||||
/// <summary>
|
||||
/// 计划生产数量
|
||||
/// </summary>
|
||||
public string plan_qty { get; set; } = string.Empty;
|
||||
public string? plan_qty { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 已投入数量
|
||||
/// </summary>
|
||||
public string input_qty { get; set; } = string.Empty;
|
||||
public string? input_qty { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 已完工数量
|
||||
/// </summary>
|
||||
public string complete_qty { get; set; } = string.Empty;
|
||||
public string? complete_qty { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 报废数量
|
||||
/// </summary>
|
||||
public string scrap_qty { get; set; } = string.Empty;
|
||||
public string? scrap_qty { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 计划开始时间
|
||||
/// </summary>
|
||||
public string plan_start_date { get; set; } = string.Empty;
|
||||
public string? plan_start_date { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 计划结束时间
|
||||
/// </summary>
|
||||
public string plan_end_date { get; set; } = string.Empty;
|
||||
public string? plan_end_date { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 是否生派工单
|
||||
@@ -112,7 +112,7 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
public string create_time { get; set; } = string.Empty;
|
||||
public string? create_time { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 修改用户
|
||||
@@ -131,7 +131,7 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
||||
/// <summary>
|
||||
/// 已排产数量
|
||||
/// </summary>
|
||||
public string scheduled_qty { get; set; } = string.Empty;
|
||||
public string? scheduled_qty { get; set; } = string.Empty;
|
||||
/// <summary>
|
||||
/// 父工单id
|
||||
/// </summary>
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user