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.Lims.Data.PipeAndOutdec { /// /// 数据库表BASE_CHEM_STDSTEEL_BOUNDARY所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DM22222 时间:2018-03-13 /// public class BaseChemStdsteelBoundaryEntity { /// /// ID /// private string id = ""; /// /// 元素名称 /// private string element = ""; /// /// 品名代码 /// private string produccode = ""; /// /// 品名描述 /// private string producname = ""; /// /// 元素修约值含量 /// private string revisedValue = ""; /// /// 元素修约值界限 /// private string boundaryValue = ""; /// /// 备注 /// private string remark = ""; /// /// 维护人 /// private string userName = ""; /// /// 维护时间 /// private string userTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// ID /// [Description("ID")] [Nullable(false)] [DataLength(50)] public string Id { get { return id; } set { id = value; } } /// /// 元素名称 /// [Description("元素")] [Nullable(true)] [DataLength(10)] public string Element { get { return element; } set { element = value; } } /// /// 品名代码 /// [Description("品名代码")] [Nullable(true)] [DataLength(20)] public string Produccode { get { return produccode; } set { produccode = value; } } /// /// 品名描述 /// [Description("品名")] [Nullable(true)] [DataLength(20)] public string Producname { get { return producname; } set { producname = value; } } /// /// 元素修约值含量 /// [Description("含量")] [Nullable(true)] [DataLength(10)] public string RevisedValue { get { return revisedValue; } set { revisedValue = value; } } /// /// 元素修约值界限 /// [Description("界限值")] [Nullable(true)] [DataLength(10)] public string BoundaryValue { get { return boundaryValue; } set { boundaryValue = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(200)] public string Remark { get { return remark; } set { remark = value; } } /// /// 维护人 /// [Description("维护人")] [Nullable(true)] [DataLength(10)] public string UserName { get { return userName; } set { userName = value; } } /// /// 维护时间 /// [Description("维护时间")] [Nullable(true)] public string UserTime { get { return userTime; } set { userTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(10)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } } }