人员产量统计表 注塑质量不合格倒扣
This commit is contained in:
@@ -9,6 +9,7 @@ namespace Tnb.ProductionMgr.Entities.Dto
|
||||
public string eqp_id { get; set; }
|
||||
public string mo_task_status { get; set; }
|
||||
public decimal? plan_qty { get; set; }
|
||||
public decimal? rqty { get; set; }
|
||||
public decimal? scheduled_qty { get; set; }
|
||||
public string create_time { get; set; }
|
||||
public string workstation_id { get; set; }
|
||||
|
||||
@@ -57,12 +57,12 @@ public partial class PrdMo : BaseEntity<string>
|
||||
/// <summary>
|
||||
/// 已报工数量
|
||||
/// </summary>
|
||||
public decimal? reported_work_qty { get; set; }
|
||||
public decimal? reported_work_qty { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// 报废数量
|
||||
/// </summary>
|
||||
public decimal? scrap_qty { get; set; }
|
||||
public decimal? scrap_qty { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// 计划开始时间
|
||||
|
||||
@@ -82,12 +82,12 @@ public partial class PrdMoTask : BaseEntity<string>
|
||||
/// <summary>
|
||||
/// 已报工数量
|
||||
/// </summary>
|
||||
public decimal? reported_work_qty { get; set; }
|
||||
public decimal? reported_work_qty { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// 报废数量
|
||||
/// </summary>
|
||||
public decimal? scrap_qty { get; set; }
|
||||
public decimal? scrap_qty { get; set; } = 0;
|
||||
|
||||
/// <summary>
|
||||
/// 已排产数量
|
||||
|
||||
Reference in New Issue
Block a user