namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class PADPackageTaskPageOutput
{
public string id { get; set; }
///
/// 工单号号
///
public string? mo_code { get; set; }
///
/// 生产任务编号
///
public string? mo_task_code { get; set; }
///
/// 工单Id
///
public string? mo_id { get; set; }
///
/// 物料Id
///
public string material_id { get; set; }
public string material_code { get; set; }
public string material_name { get; set; }
///
/// 产线id
///
public string? workline_id { get; set; }
public string? workline_name { get; set; }
///
/// 生产bom id
///
public string? bom_id { get; set; }
///
/// 任务单状态
///
public string? mo_task_status { get; set; }
///
/// 已完工数量
///
public int? complete_qty { get; set; }
///
/// 报废数量
///
public int? scrap_qty { get; set; }
///
/// 已排产数量
///
public int? scheduled_qty { get; set; }
///
/// 排产类型:1、注塑、挤出2、组装、包装
///
public int? schedule_type { get; set; }
public int? reported_work_qty { get; set; }
///
/// 计划开始时间
///
public string? estimated_start_date { get; set; }
///
/// 计划结束时间
///
public string? estimated_end_date { get; set; }
///
/// 父任务Id
///
public string? parent_id { get; set; }
///
/// 工序id
///
public string process_id { get; set; }
public string process_name { get; set; }
public string mbom_process_id { get; set; }
public string equip_id { get; set; }
public string equip_code { get; set; }
public string equip_name { get; set; }
public string mold_id { get; set; }
public string mold_code { get; set; }
public string mold_name { get; set; }
public DateTime? create_time { get; set; }
///
/// 成型周期
///
public decimal? moulding_cycle { get; set; }
///
/// 模穴数
///
public int? mold_cavity { get; set; }
///
/// 标准工时
///
public string? standard_time { get; set; }
///
/// 实际开工日期
///
public string? act_start_date { get; set; }
///
/// 预计结束时间
///
public string? plan_end_date { get; set; }
///
/// 实际完工日期
///
public string? act_end_date { get; set; }
///
/// 最小包装
///
public decimal? minpacking { get; set; }
///
/// 主单位数量
///
public string? main_num { get; set; }
///
/// 副单位数量(kg)
///
public string? deputy_num { get; set; }
///
/// 第三方平台设备编号
///
public string? third_equip_code { get; set; }
///
/// 称重点位名称
///
public string? weight_name { get; set; }
///
/// 物料分类ID
///
public string category_id { get; set; } = string.Empty;
///
/// 入库仓库id
///
public string warehouse_id { get; set; }
public string warehouse_code { get; set; }
public string warehouse_name { get; set; }
///
/// 入库库位id
///
public string? as_location_id { get; set; }
///
/// 入库库位编号
///
public string? as_location_code { get; set; }
///
/// 规格型号
///
public string material_standard { get; set; }
///
/// 箱号
///
public string container_no { get; set; }
///
/// di编码
///
public string di { get; set; }
///
/// 上料库位id
///
public string? upmat_location_id { get; set; }
public string? upmat_location_code { get; set; }
///
/// 下料库位id
///
public string? downmat_location_id { get; set; }
public string? downmat_location_code { get; set; }
///
/// 入库仓库id
///
public string? instock_warehouse_id { get; set; }
}
}