Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/PackSechelToBeIssueListOutput.cs

119 lines
3.3 KiB
C#

namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
/// <summary>
/// 组装、包装生产任务待下发输出参数列表
/// </summary>
public class PackSechelToBeIssueListOutput
{
/// <summary>
/// 生产任务ID
/// </summary>
public string mo_task_id { get; set; }
/// <summary>
/// 生产任务编号
/// </summary>
public string mo_task_code { get; set; }
/// <summary>
/// 物料id
/// </summary>
public string material_id { get; set; }
/// <summary>
/// 物料编号
/// </summary>
public string material_code { get; set; }
/// <summary>
/// 产线id
/// </summary>
public string workline_id { get; set; }
/// <summary>
/// 物料名称
/// </summary>
public string material_name { get; set; }
/// <summary>
/// 产线编号
/// </summary>
public string workline_code { get; set; }
/// <summary>
/// 产线名称
/// </summary>
public string workline_name { get; set; }
/// <summary>
/// 任务单状态
/// </summary>
public string mo_task_status { get; set; }
/// <summary>
/// 生产任务数量
/// </summary>
public int? scheduled_qty { get; set; }
/// <summary>
/// 计划数量
/// </summary>
public int? plan_qty { get; set; }
/// <summary>
/// 已完成数量
/// </summary>
public int? complete_qty { get; set; }
/// <summary>
/// 工序任务量
/// </summary>
public int? process_task_qty { get; set; }
/// <summary>
/// bom_id
/// </summary>
public string bom_id { get; set; }
/// <summary>
/// bom版本
/// </summary>
public string bom_version { get; set; }
/// <summary>
/// 预计开始时间
/// </summary>
public string? estimated_start_date { get; set; }
/// <summary>
/// 预计结束时间
/// </summary>
public string? estimated_end_date { get; set; }
/// <summary>
/// 工序名称
/// </summary>
public string? process_name { get; set; }
public string create_time { get; set; }
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; }
/// <summary>
/// 物料规格
/// </summary>
public string? material_specification { get; set; }
/// <summary>
/// 物料型号
/// </summary>
public string? material_standard { get; set; }
}
}