using System;
using System.Linq;
using System.Text;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.ProductionMgr.Entities
{
///
///生产任务信息
///
public partial class PrdMoTask
{
///
/// 设备类型编码
///
[SugarColumn(IsIgnore = true)]
public string eqp_type_code { get; set; }
///
/// 模具编号
///
[SugarColumn(IsIgnore = true)]
public string mold_code { get; set; }
///
/// 模具名称
///
[SugarColumn(IsIgnore = true)]
public string mold_name { get; set; }
///
/// 模具型腔数
///
[SugarColumn(IsIgnore = true)]
public int? mold_cavity_qty { get; set; }
///
/// 任务计划数
///
[SugarColumn(IsIgnore = true)]
public int? icmo_qty { get; set; }
///
/// 已报工数量
///
[SugarColumn(IsIgnore = true)]
public int? reported_work_qty { get; set; }
///
/// 提报数
///
[SugarColumn(IsIgnore = true)]
public int? reported_qty { get; set; }
///
/// 生产数量
///
[SugarColumn(IsIgnore = true)]
public int? prd_qty { get; set; }
///
/// 设备编码
///
[SugarColumn(IsIgnore = true)]
public string eqp_code { get; set; }
///
/// 物料编码
[SugarColumn(IsIgnore = true)]
public string material_code { get; set; }
///
/// 物料名称
[SugarColumn(IsIgnore = true)]
public string material_name { get; set; }
///
/// 物料属性
///
[SugarColumn(IsIgnore = true)]
public string material_property { get; set; }
}
}