51 lines
1.6 KiB
C#
51 lines
1.6 KiB
C#
namespace Tnb.ProductionMgr.Entities.Dto
|
|
{
|
|
public class PrdMoTaskIssueListOutput
|
|
{
|
|
public string id { get; set; }
|
|
public string mo_task_code { get; set; }
|
|
public string material_id { get; set; }
|
|
public string mold_id { get; set; }
|
|
public string eqp_id { get; set; }
|
|
public string mo_task_status { get; set; }
|
|
public decimal? plan_qty { get; set; }
|
|
/// <summary>
|
|
/// 已报工数量
|
|
/// </summary>
|
|
public decimal? reported_work_qty { get; set; } = 0;
|
|
public decimal? scrap_qty { get; set; }
|
|
public decimal? scheduled_qty { get; set; }
|
|
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; }
|
|
/// <summary>
|
|
/// 物料规格
|
|
/// </summary>
|
|
public string? f_flowtaskid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料型号
|
|
/// </summary>
|
|
public string? f_flowid { get; set; }
|
|
}
|
|
} |