namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class PrdReportOutput
{
///
/// 任务计划数
///
public int? icmo_qty { get; set; }
///
/// 已报工数量
///
public int? reported_work_qty { get; set; }
///
/// 提报数
///
public int? reported_qty { get; set; }
///
/// 生产数量
///
public int? prd_qty { get; set; }
public int? scrap_qty { get; set; }
///
/// 模具编码
///
public string mold_code { get; set; }
///
/// 设备编码
///
public string eqp_code { get; set; }
///
/// 物料编码
///
public string material_code { get; set; }
///
/// 物料名称
///
public string material_name { get; set; }
///
/// 物料属性
///
public string material_property { get; set; }
}
}