using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace com.steering.pss.sale.order.model { /// /// 数据库表SLM_ORDER_STABLE_MPS所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DESKTOP-DG6B81Q 时间:2016-03-10 /// public class SlmOrderStableMpsEntity { /// /// MPSIDYYYYMMDD+3位流水号 /// private string mpsId = ""; /// /// MSC /// private string msc = ""; /// /// 最终用户编码 /// private string finaUser = ""; /// /// 最终用户 /// private string finaUserDesc = ""; /// /// MPS编号 /// private string mpsNo = ""; /// /// 外径小(mm) /// private string dimaterMin = ""; /// /// 外径大(mm) /// private string dimaterMax = ""; /// /// 壁厚小(mm) /// private string heightMin = ""; /// /// 壁厚大(mm) /// private string heightMax = ""; /// /// 扣型集合 /// private string modelCode = ""; /// /// 扣型集合 /// private string modelDesc = ""; /// /// MPS文件名(统一放在MPS/ORD_LN_PK) /// private string mpsFilename = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; private string validflag = ""; /// /// 有效标志 /// [Description("有效标志")] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// MPSIDYYYYMMDD+3位流水号 /// [Description("MPSID")] [Nullable(true)] [DataLength(20)] public string MpsId { get { return mpsId; } set { mpsId = value; } } /// /// MSC /// [Description("MSC")] [Nullable(true)] [DataLength(40)] public string Msc { get { return msc; } set { msc = value; } } /// /// 最终用户编码 /// [Description("最终用户编码")] [Nullable(true)] [DataLength(20)] public string FinaUser { get { return finaUser; } set { finaUser = value; } } /// /// 最终用户 /// [Description("最终用户")] [Nullable(true)] [DataLength(100)] public string FinaUserDesc { get { return finaUserDesc; } set { finaUserDesc = value; } } /// /// MPS编号 /// [Description("MPS编号")] [Nullable(true)] [DataLength(100)] public string MpsNo { get { return mpsNo; } set { mpsNo = value; } } /// /// 外径小(mm) /// [Description("下限")] [Nullable(true)] [DataLength(6)] public string DimaterMin { get { return dimaterMin; } set { dimaterMin = value; } } /// /// 外径大(mm) /// [Description("上限")] [Nullable(true)] [DataLength(6)] public string DimaterMax { get { return dimaterMax; } set { dimaterMax = value; } } /// /// 壁厚小(mm) /// [Description("下限")] [Nullable(true)] [DataLength(6)] public string HeightMin { get { return heightMin; } set { heightMin = value; } } /// /// 壁厚大(mm) /// [Description("上限")] [Nullable(true)] [DataLength(6)] public string HeightMax { get { return heightMax; } set { heightMax = value; } } /// /// 扣型集合 /// [Description("扣型集合")] [Nullable(true)] [DataLength(2000)] public string ModelCode { get { return modelCode; } set { modelCode = value; } } /// /// 扣型集合 /// [Description("扣型集合")] [Nullable(true)] [DataLength(2000)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// MPS文件名(统一放在MPS/ORD_LN_PK) /// [Description("MPS文件名")] [Nullable(true)] [DataLength(200)] public string MpsFilename { get { return mpsFilename; } set { mpsFilename = 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; } } } }