修复错误
This commit is contained in:
@@ -61,20 +61,20 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
||||
/// <summary>
|
||||
/// 完成数量
|
||||
/// </summary>
|
||||
public int complete_qty { get; set; }
|
||||
public int? complete_qty { get; set; }
|
||||
/// <summary>
|
||||
/// 计划生产数量
|
||||
/// </summary>
|
||||
public int plan_qty { get; set; }
|
||||
public int scheduled_qty { get; set; }
|
||||
public int? plan_qty { get; set; }
|
||||
public int? scheduled_qty { get; set; }
|
||||
/// <summary>
|
||||
/// 预计开工时间
|
||||
/// </summary>
|
||||
public DateTime estimated_start_date { get; set; }
|
||||
public DateTime? estimated_start_date { get; set; }
|
||||
/// <summary>
|
||||
/// 预计完工时间
|
||||
/// </summary>
|
||||
public DateTime estimated_end_date { get; set; }
|
||||
public DateTime? estimated_end_date { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user