using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.PlnSaleOrd.工序排产.entity { /// /// 数据库表COM_BASE_MANDREL_SPEC所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DESKTOP-LI8OG3P 时间:2016-12-06 /// public class ComBaseMandrelSpecEntity { /// /// 芯棒规格关系编码 /// private string relationId = ""; /// /// 芯棒编码 /// private string mandrelId = ""; /// /// 产线编码 /// private string plineCode = ""; /// /// 产线描述 /// private string plineName = ""; /// /// 外径最小值(mm) /// private decimal? minD = null; /// /// 外径最大值(mm) /// private decimal? maxD = null; /// /// 壁厚最小值(mm) /// private decimal? minH = null; /// /// 壁厚最大值(mm) /// private decimal? maxH = null; /// /// 芯棒直径(mm) /// private decimal? diameterMandrel = null; /// /// 孔型代码(4007) /// private string passCode = ""; /// /// 孔型描述 /// private string passName = ""; /// /// 备注 /// private string memo = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 单倍坯最长 /// private string lenSingerBill = ""; [Description("单倍坯最长")] public string LenSingerBill { get { return lenSingerBill; } set { lenSingerBill = value; } } /// /// 芯棒规格关系编码 /// [Description("关联序号")] [Nullable(false)] [DataLength(20)] public string RelationId { get { return relationId; } set { relationId = value; } } /// /// 芯棒编码 /// [Description("芯棒编码")] [Nullable(true)] [DataLength(20)] public string MandrelId { get { return mandrelId; } set { mandrelId = value; } } /// /// 产线编码 /// [Description("产线编码")] [Nullable(false)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 产线描述 /// [Description("产线描述")] [Nullable(false)] [DataLength(100)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 外径最小值(mm) /// [Description("外径最小值(mm)")] [Nullable(false)] [DataLength(8)] public decimal? MinD { get { return minD; } set { minD = value; } } /// /// 外径最大值(mm) /// [Description("外径最大值(mm)")] [Nullable(false)] [DataLength(8)] public decimal? MaxD { get { return maxD; } set { maxD = value; } } /// /// 壁厚最小值(mm) /// [Description("壁厚最小值(mm)")] [Nullable(false)] [DataLength(8)] public decimal? MinH { get { return minH; } set { minH = value; } } /// /// 壁厚最大值(mm) /// [Description("壁厚最大值(mm)")] [Nullable(false)] [DataLength(8)] public decimal? MaxH { get { return maxH; } set { maxH = value; } } /// /// 芯棒直径(mm) /// [Description("芯棒直径(mm)")] [Nullable(true)] [DataLength(10)] public decimal? DiameterMandrel { get { return diameterMandrel; } set { diameterMandrel = value; } } /// /// 孔型代码(4007) /// [Description("孔型代码")] [Nullable(false)] [DataLength(20)] public string PassCode { get { return passCode; } set { passCode = value; } } /// /// 孔型描述 /// [Description("孔型描述")] [Nullable(false)] [DataLength(100)] public string PassName { get { return passName; } set { passName = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(200)] public string Memo { get { return memo; } set { memo = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } } }