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所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DESKTOP-LI8OG3P 时间:2016-12-06 /// public class ComBaseMandrelEntity { /// /// 芯棒编码 /// private string mandrelId = ""; /// /// 芯棒直径(mm) /// private decimal? diameterMandrel = null; /// /// 长度 /// private decimal? lenMandrel = null; /// /// 芯棒扣型 /// private string screwModel = ""; /// /// 锥度 /// private string taperMandrel = ""; /// /// 实心空心 /// private string massyOrHollow = ""; /// /// 备注 /// private string memo = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// ///适用条数 /// private string appNumber = ""; /// /// 芯棒编码 /// [Description("芯棒编码")] [Nullable(false)] [DataLength(20)] public string MandrelId { get { return mandrelId; } set { mandrelId = value; } } /// /// 芯棒直径(mm) /// [Description("芯棒直径")] [Nullable(false)] [DataLength(10)] public decimal? DiameterMandrel { get { return diameterMandrel; } set { diameterMandrel = value; } } /// /// 长度 /// [Description("长度")] [Nullable(false)] [DataLength(10)] public decimal? LenMandrel { get { return lenMandrel; } set { lenMandrel = value; } } /// /// 芯棒扣型 /// [Description("芯棒扣型")] [Nullable(false)] [DataLength(100)] public string ScrewModel { get { return screwModel; } set { screwModel = value; } } /// /// 锥度 /// [Description("锥度")] [Nullable(false)] [DataLength(20)] public string TaperMandrel { get { return taperMandrel; } set { taperMandrel = value; } } /// /// 实心空心 /// [Description("实心空心")] [Nullable(false)] [DataLength(10)] public string MassyOrHollow { get { return massyOrHollow; } set { massyOrHollow = 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; } } /// ///适用条数 /// [Description("适用条数")] [Nullable(true)] public string AppNumber { get { return appNumber; } set { appNumber = value; } } } }