质量
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
||||
{
|
||||
public class CheckCompleteInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 提报id
|
||||
/// </summary>
|
||||
public string report_id { get; set; }
|
||||
/// <summary>
|
||||
/// 合格数
|
||||
/// </summary>
|
||||
public decimal pqty { get; set; }
|
||||
/// <summary>
|
||||
/// 不合格数
|
||||
/// </summary>
|
||||
public decimal rqty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 质检结果
|
||||
/// </summary>
|
||||
public string check_result { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 视觉记录
|
||||
/// </summary>
|
||||
public List<PrdVisionResultRecord> records { get; set; } = null;
|
||||
|
||||
}
|
||||
}
|
||||
@@ -83,6 +83,26 @@
|
||||
|
||||
public string workstation_name { get; set; }
|
||||
public string worker_name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 白班人员id/白班前人员id/
|
||||
/// </summary>
|
||||
public string dayshift_worker_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 夜班人员id/夜班前人员id/
|
||||
/// </summary>
|
||||
public string nightshift_worker_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 白班后人员id/
|
||||
/// </summary>
|
||||
public string dayshiftafter_worker_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 夜班后人员id/
|
||||
/// </summary>
|
||||
public string nightshiftafter_worker_id { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -13,5 +13,25 @@ namespace Tnb.ProductionMgr.Entities.Dto
|
||||
public string create_time { get; set; }
|
||||
public string workstation_id { get; set; }
|
||||
public string worker_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 白班人员id/白班前人员id/
|
||||
/// </summary>
|
||||
public string dayshift_worker_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 夜班人员id/夜班前人员id/
|
||||
/// </summary>
|
||||
public string nightshift_worker_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 白班后人员id/
|
||||
/// </summary>
|
||||
public string dayshiftafter_worker_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 夜班后人员id/
|
||||
/// </summary>
|
||||
public string nightshiftafter_worker_id { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -25,5 +25,25 @@ namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
||||
public string create_time { get; set; }
|
||||
|
||||
public int? schedule_type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 白班人员id/白班前人员id/
|
||||
/// </summary>
|
||||
public string dayshift_worker_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 夜班人员id/夜班前人员id/
|
||||
/// </summary>
|
||||
public string nightshift_worker_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 白班后人员id/
|
||||
/// </summary>
|
||||
public string dayshiftafter_worker_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 夜班后人员id/
|
||||
/// </summary>
|
||||
public string nightshiftafter_worker_id { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user