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_SIC所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-09-17 /// public class SlmOrdDesignStdSicEntity { /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 公差标准索引号 /// private string sic = ""; /// /// 协议或Alpha代码(用途码) /// private string useCode = ""; /// /// 协议或Alpha描述(用途描述) /// private string useDesc = ""; /// /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准) /// private string speclFl = ""; /// /// 序号 /// private decimal? indexSeq = null; /// /// 公差项代码(主项)(4040) /// private string biasCode = ""; /// /// 公差项名称(主项) /// private string biasName = ""; /// /// 精度等级(4041) /// private string lv = ""; /// /// 公差约束项一代码(4003) /// private string biasCodeZ = ""; /// /// 公差约束项一名称 /// private string biasNameZ = ""; /// /// 公差约束项一下限符号 /// private string zminSign = ""; /// /// 公差约束项一下限值 /// private string zmin = ""; /// /// 公差约束项一上限符号 /// private string zmaxSign = ""; /// /// 公差约束项一上限值 /// private string zmax = ""; /// /// 公差约束项二代码(4003) /// private string biasCodeC = ""; /// /// 公差约束项二名称 /// private string biasNameC = ""; /// /// 公差约束项二下限符号 /// private string cminSign = ""; /// /// 公差约束项二下限值 /// private string cmin = ""; /// /// 公差约束项二上限符号 /// private string cmaxSign = ""; /// /// 公差约束项二上限值 /// private string cmax = ""; /// /// 公差约束项三代码(4003) /// private string biasCodeS = ""; /// /// 公差约束项三名称 /// private string biasNameS = ""; /// /// 公差约束项三下限符号 /// private string sminSign = ""; /// /// 公差约束项三下限值 /// private string smin = ""; /// /// 公差约束项三上限符号 /// private string smaxSign = ""; /// /// 公差约束项三上限值 /// private string smax = ""; /// /// 是否必检项(1:是,0:否) /// private string ischeck = ""; /// /// 标准负值(mm) /// private string stdMinVal = ""; /// /// 标准正值(mm) /// private string stdMaxVal = ""; /// /// 标准负值(in) /// private string stdMinIn = ""; /// /// 标准正值(in) /// private string stdMaxIn = ""; /// /// 标准负值(%) /// private string stdMinPercent = ""; /// /// 标准正值(%) /// private string stdMaxPercent = ""; /// /// 标准公式负值(mm) /// private string stdMinFormula = ""; /// /// 标准公式正值(mm) /// private string stdMaxFormula = ""; /// /// 取小值 /// private string stdMinFormulaV = ""; /// /// 取大值 /// private string stdMaxFormulaV = ""; /// /// 标准备注 /// private string stdmemo = ""; /// /// 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 Sic { get { return sic; } set { sic = 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; } } /// /// 公差项代码(主项)(4040) /// [Description("公差项代码(主项)")] [Nullable(false)] [DataLength(20)] public string BiasCode { get { return biasCode; } set { biasCode = value; } } /// /// 公差项名称(主项) /// [Description("公差项")] [Nullable(true)] [DataLength(100)] public string BiasName { get { return biasName; } set { biasName = value; } } /// /// 精度等级(4041) /// [Description("精度等级")] [Nullable(true)] [DataLength(20)] public string Lv { get { return lv; } set { lv = value; } } /// /// 公差约束项一代码(4003) /// [Description("公差约束项一")] [Nullable(true)] [DataLength(20)] public string BiasCodeZ { get { return biasCodeZ; } set { biasCodeZ = value; } } /// /// 公差约束项一名称 /// [Description("公差约束项")] [Nullable(true)] [DataLength(100)] public string BiasNameZ { get { return biasNameZ; } set { biasNameZ = value; } } /// /// 公差约束项一下限符号 /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string ZminSign { get { return zminSign; } set { zminSign = value; } } /// /// 公差约束项一下限值 /// [Description("下限值")] [Nullable(true)] [DataLength(10)] public string Zmin { get { return zmin; } set { zmin = value; } } /// /// 公差约束项一上限符号 /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string ZmaxSign { get { return zmaxSign; } set { zmaxSign = value; } } /// /// 公差约束项一上限值 /// [Description("上限值")] [Nullable(true)] [DataLength(10)] public string Zmax { get { return zmax; } set { zmax = value; } } /// /// 公差约束项二代码(4003) /// [Description("公差约束项二代码")] [Nullable(true)] [DataLength(20)] public string BiasCodeC { get { return biasCodeC; } set { biasCodeC = value; } } /// /// 公差约束项二名称 /// [Description("公差约束项")] [Nullable(true)] [DataLength(100)] public string BiasNameC { get { return biasNameC; } set { biasNameC = value; } } /// /// 公差约束项二下限符号 /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string CminSign { get { return cminSign; } set { cminSign = value; } } /// /// 公差约束项二下限值 /// [Description("下限值")] [Nullable(true)] [DataLength(10)] public string Cmin { get { return cmin; } set { cmin = value; } } /// /// 公差约束项二上限符号 /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string CmaxSign { get { return cmaxSign; } set { cmaxSign = value; } } /// /// 公差约束项二上限值 /// [Description("上限值")] [Nullable(true)] [DataLength(10)] public string Cmax { get { return cmax; } set { cmax = value; } } /// /// 公差约束项三代码(4003) /// [Description("公差约束项三代码")] [Nullable(true)] [DataLength(20)] public string BiasCodeS { get { return biasCodeS; } set { biasCodeS = value; } } /// /// 公差约束项三名称 /// [Description("公差约束项")] [Nullable(true)] [DataLength(100)] public string BiasNameS { get { return biasNameS; } set { biasNameS = value; } } /// /// 公差约束项三下限符号 /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string SminSign { get { return sminSign; } set { sminSign = value; } } /// /// 公差约束项三下限值 /// [Description("下限值")] [Nullable(true)] [DataLength(10)] public string Smin { get { return smin; } set { smin = value; } } /// /// 公差约束项三上限符号 /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string SmaxSign { get { return smaxSign; } set { smaxSign = value; } } /// /// 公差约束项三上限值 /// [Description("上限值")] [Nullable(true)] [DataLength(10)] public string Smax { get { return smax; } set { smax = value; } } /// /// 是否必检项(1:是,0:否) /// [Description("是否必检项")] [Nullable(true)] [DataLength(1)] public string Ischeck { get { return ischeck; } set { ischeck = value; } } /// /// 标准负值(mm) /// [Description("下偏差值(mm)")] [Nullable(true)] [DataLength(10)] public string StdMinVal { get { return stdMinVal; } set { stdMinVal = value; } } /// /// 标准正值(mm) /// [Description("上偏差值(mm)")] [Nullable(true)] [DataLength(10)] public string StdMaxVal { get { return stdMaxVal; } set { stdMaxVal = value; } } /// /// 标准负值(in) /// [Description("标准负值(in)")] [Nullable(true)] [DataLength(10)] public string StdMinIn { get { return stdMinIn; } set { stdMinIn = value; } } /// /// 标准正值(in) /// [Description("标准正值(in) ")] [Nullable(true)] [DataLength(10)] public string StdMaxIn { get { return stdMaxIn; } set { stdMaxIn = value; } } /// /// 标准负值(%) /// [Description("下偏差值(%)")] [Nullable(true)] [DataLength(10)] public string StdMinPercent { get { return stdMinPercent; } set { stdMinPercent = value; } } /// /// 标准正值(%) /// [Description("上偏差值(%) ")] [Nullable(true)] [DataLength(10)] public string StdMaxPercent { get { return stdMaxPercent; } set { stdMaxPercent = value; } } /// /// 标准公式负值(mm) /// [Description("公式下偏差值(mm) ")] [Nullable(true)] [DataLength(100)] public string StdMinFormula { get { return stdMinFormula; } set { stdMinFormula = value; } } /// /// 标准公式正值(mm) /// [Description("公式上偏差值(mm)")] [Nullable(true)] [DataLength(100)] public string StdMaxFormula { get { return stdMaxFormula; } set { stdMaxFormula = value; } } /// /// 取小值 /// [Description("取小值")] [Nullable(true)] [DataLength(1)] public string StdMinFormulaV { get { return stdMinFormulaV; } set { stdMinFormulaV = value; } } /// /// 取大值 /// [Description("取大值")] [Nullable(true)] [DataLength(1)] public string StdMaxFormulaV { get { return stdMaxFormulaV; } set { stdMaxFormulaV = value; } } /// /// 标准备注 /// [Description("标准备注")] [Nullable(true)] [DataLength(200)] public string Stdmemo { get { return stdmemo; } set { stdmemo = value; } } } }