using Core.Mes.Client.Comm.Attribute; using System; using System.ComponentModel; namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_BASE_SPLINE所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2016-04-13 /// public class ComBaseSplineEntity { /// /// 试样索引号 /// private string eic = ""; /// /// 取样码 /// private string phyCodeMin = ""; /// /// 取样码描述 /// private string phyNameMin = ""; /// /// 试样方向(横向/纵向) /// private string phyDir = ""; /// /// 长(毛样) /// private decimal? length = null; /// /// 宽(毛样) /// private decimal? width = null; /// /// 名义规格(文本字段,人工填写,不允许为空) /// private string sizeDesc = ""; /// /// 毛样类型( "环" 或" 片" sortCode 4081) /// private string sampleStyle = ""; /// /// 图片文件保存路径 /// private string filePosition = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 所属区域(1:天淮,0:天管) /// private string seamArea = ""; /// /// 备注 /// private string memo = ""; private string stdNameS = ""; private string stdCodeS = ""; private string itemCodeF = ""; private string itemNameF = ""; private string itemCodeS = ""; private string itemNameS = ""; private string splineStd = ""; private string splineNo = ""; private string sort = "0"; public string Sort { get { return sort; } set { sort = value; } } /// /// 试样索引号 /// [Description("试样索引号")] [Nullable(false)] [DataLength(8)] public string Eic { get { return eic; } set { eic = value; } } /// /// 取样码 /// [Description("试样组")] [Nullable(false)] [DataLength(5)] public string PhyCodeMin { get { return phyCodeMin; } set { phyCodeMin = value; } } /// /// 取样码描述 /// [Description("试样组")] [Nullable(false)] [DataLength(100)] public string PhyNameMin { get { return phyNameMin; } set { phyNameMin = value; } } /// /// 试样方向(横向/纵向) /// [Description("试样方向")] [Nullable(true)] [DataLength(8)] public string PhyDir { get { return phyDir; } set { phyDir = value; } } /// /// 长(毛样) /// [Description("长(毛样)")] [Nullable(false)] [DataLength(22)] public decimal? Length { get { return length; } set { length = value; } } /// /// 宽(毛样) /// [Description("宽(毛样)")] [Nullable(true)] [DataLength(22)] public decimal? Width { get { return width; } set { width = value; } } /// /// 名义规格(文本字段,人工填写,不允许为空) /// [Description("名义规格")] [Nullable(false)] [DataLength(100)] public string SizeDesc { get { return sizeDesc; } set { sizeDesc = value; } } /// /// 毛样类型( "环" 或" 片" sortCode 4081) /// [Description("毛样类型")] [Nullable(false)] [DataLength(20)] public string SampleStyle { get { return sampleStyle; } set { sampleStyle = value; } } /// /// 图片文件保存路径 /// [Description("图片文件保存路径")] [Nullable(true)] [DataLength(100)] public string FilePosition { get { return filePosition; } set { filePosition = 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)] [DataLength(20)] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志")] [Nullable(false)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(500)] public string Memo { get { return memo; } set { memo = value; } } /// /// 试验标准 /// [Description("试验标准")] [Nullable(false)] public string StdCodeS { get { return stdCodeS; } set { stdCodeS = value; } } /// /// 试验标准 /// [Description("试验标准")] [Nullable(false)] public string StdNameS { get { return stdNameS; } set { stdNameS = value; } } /// /// 试验编号 /// [Description("试验编号")] [Nullable(false)] public string SplineNo { get { return splineNo; } set { splineNo = value; } } /// /// 制样标准 /// [Description("制样标准")] [Nullable(false)] public string SplineStd { get { return splineStd; } set { splineStd = value; } } /// /// 试验方向 /// [Description("试验方向")] public string ItemCodeF { get { return itemCodeF; } set { itemCodeF = value; } } /// /// 试验方向 /// [Description("试验方向")] public string ItemNameF { get { return itemNameF; } set { itemNameF = value; } } /// /// 试验尺寸 /// [Description("试验尺寸")] public string ItemCodeS { get { return itemCodeS; } set { itemCodeS = value; } } /// /// 试验尺寸 /// [Description("试验尺寸")] public string ItemNameS { get { return itemNameS; } set { itemNameS = value; } } /// /// 所属区域 /// [Description("所属区域")] public string SeamArea { get { return seamArea; } set { seamArea = value; } } } }