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 { /// /// 数据库表SLM_ORD_DESIGN_STD_WIC所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-09-17 /// public class SlmOrdDesignStdWicEntity { /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 水压索引码 /// private string wic = ""; /// /// 协议或Alpha代码(用途码) /// private string useCode = ""; /// /// 协议或Alpha描述(用途描述) /// private string useDesc = ""; /// /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准) /// private string speclFl = ""; /// /// 序号 /// private decimal? indexSeq = null; /// /// 试验压力(psi)(英制) /// private string pressureY = ""; /// /// 试验压力(MPa)(公制) /// private string pressure = ""; /// /// 试验压力(公式) /// private string formula = ""; /// /// 保压时间(S) /// private string saveTime = ""; /// /// 取大值 /// private string getMaxvalue = ""; /// /// 取小值 /// private string getMinvalue = ""; /// /// 标准试验压力系数 /// private decimal? ratioStd = null; /// /// 替代试验压力系数 /// private decimal? ratioReplace = null; /// /// 最大试验压力 /// private string maxPress = ""; /// /// DESGIN_KEY /// [Description("DESGIN_KEY")] [Nullable(false)] [DataLength(40)] public string DesginKey { get { return desginKey; } set { desginKey = value; } } /// /// 水压索引码 /// [Description("水压索引码")] [Nullable(false)] [DataLength(20)] public string Wic { get { return wic; } set { wic = value; } } /// /// 协议或Alpha代码(用途码) /// [Description("用途码")] [Nullable(true)] [DataLength(20)] public string UseCode { get { return useCode; } set { useCode = value; } } /// /// 协议或Alpha描述(用途描述) /// [Description("用途描述")] [Nullable(true)] [DataLength(100)] public string UseDesc { get { return useDesc; } set { useDesc = value; } } /// /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准) /// [Description("是否特殊要求")] [Nullable(false)] [DataLength(1)] public string SpeclFl { get { return speclFl; } set { speclFl = value; } } /// /// 序号 /// [Description("序号")] [Nullable(false)] [DataLength(22)] public decimal? IndexSeq { get { return indexSeq; } set { indexSeq = value; } } /// /// 试验压力(psi)(英制) /// [Description("试验压力(psi)(英制)")] [Nullable(true)] [DataLength(10)] public string PressureY { get { return pressureY; } set { pressureY = value; } } /// /// 试验压力(MPa)(公制) /// [Description("试验压力(MPa)(公制)")] [Nullable(true)] [DataLength(10)] public string Pressure { get { return pressure; } set { pressure = value; } } /// /// 试验压力(公式) /// [Description("试验压力(公式)")] [Nullable(true)] [DataLength(100)] public string Formula { get { return formula; } set { formula = value; } } /// /// 保压时间(S) /// [Description("保压时间(S)")] [Nullable(true)] [DataLength(10)] public string SaveTime { get { return saveTime; } set { saveTime = value; } } /// /// 取大值 /// [Description("取大值")] [Nullable(true)] [DataLength(1)] public string GetMaxvalue { get { return getMaxvalue; } set { getMaxvalue = value; } } /// /// 取小值 /// [Description("取小值")] [Nullable(true)] [DataLength(1)] public string GetMinvalue { get { return getMinvalue; } set { getMinvalue = value; } } /// /// 标准试验压力系数 /// [Description("标准试验压力系数")] [Nullable(true)] [DataLength(22)] public decimal? RatioStd { get { return ratioStd; } set { ratioStd = value; } } /// /// 替代试验压力系数 /// [Description("替代试验压力系数")] [Nullable(true)] [DataLength(22)] public decimal? RatioReplace { get { return ratioReplace; } set { ratioReplace = value; } } /// /// 最大试验压力 /// [Description("最大试验压力")] [Nullable(true)] [DataLength(10)] public string MaxPress { get { return maxPress; } set { maxPress = value; } } } }