using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.SaleOrder { /// /// 数据库表COM_BASE_SPEC所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-09-23 /// public class ComBaseSpecEntity { /// /// 产品规格代码 /// private string specCode = ""; /// /// 产品规格描述 /// private string specName = ""; /// /// 外径 /// private string dimater = ""; /// /// 壁厚 /// private string height = ""; /// /// 米单重(0.02466*壁厚*(外径-壁厚)*钢种系数) /// private string weight = ""; /// /// 类型(A钢管(必须要填外径壁厚)、B管坯(只允许填外径)、C其它(要走接箍或附件的,不能填外径壁厚)) /// private string mscStyle = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 备注 /// private string memo = ""; /// /// {老系统}产品规格代码 /// private string specCodeOld = ""; /// /// 产品规格代码 /// [Description("产品规格代码")] [Nullable(false)] [DataLength(7)] public string SpecCode { get { return specCode; } set { specCode = value; } } /// /// 产品规格描述 /// [Description("产品规格描述")] [Nullable(true)] [DataLength(100)] public string SpecName { get { return specName; } set { specName = value; } } /// /// 外径 /// [Description("外径")] [Nullable(true)] [DataLength(10)] public string Dimater { get { return dimater; } set { dimater = value; } } /// /// 壁厚 /// [Description("壁厚")] [Nullable(true)] [DataLength(10)] public string Height { get { return height; } set { height = value; } } /// /// 米单重(0.02466*壁厚*(外径-壁厚)*钢种系数) /// [Description("米单重(0.02466*壁厚*(外径-壁厚)*钢种系数)")] [Nullable(true)] [DataLength(20)] public string Weight { get { return weight; } set { weight = value; } } /// /// 类型(A钢管(必须要填外径壁厚)、B管坯(只允许填外径)、C其它(要走接箍或附件的,不能填外径壁厚)) /// [Description("类型(A钢管(必须要填外径壁厚)、B管坯(只允许填外径)、C其它(要走接箍或附件的,不能填外径壁厚))")] [Nullable(true)] [DataLength(1)] public string MscStyle { get { return mscStyle; } set { mscStyle = 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("有效标志(1:有效,0:无效)")] [Nullable(false)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(200)] public string Memo { get { return memo; } set { memo = value; } } /// /// {老系统}产品规格代码 /// [Description("{老系统}产品规格代码")] [Nullable(true)] [DataLength(20)] public string SpecCodeOld { get { return specCodeOld; } set { specCodeOld = value; } } } }