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; } } }