using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Core.StlMes.Client.SaleOrder { class SlmCustSpecObject { /// /// 客户Alpha编号 /// private string custAlphaNo; /// /// 公差标准索引号 /// private string sic; /// /// 序号 /// private string indexSeq; /// /// 公差项代码(主项)(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; /// /// 有效标志(1:有效,0:无效) /// private string validflag; /// /// 创建人 /// private string createName; /// /// 创建时间 /// private string createTime; /// /// 修改人 /// private string updateName; /// /// 修改时间 /// private string updateTime; /// /// 删除人 /// private string deleteName; /// /// 删除时间 /// private string deleteTime; public SlmCustSpecObject() { custAlphaNo = ""; sic = ""; indexSeq = ""; biasCode = ""; biasName = ""; lv = ""; biasCodeZ = ""; biasNameZ = ""; zminSign = ""; zmin = ""; zmaxSign = ""; zmax = ""; biasCodeC = ""; biasNameC = ""; cminSign = ""; cmin = ""; cmaxSign = ""; cmax = ""; biasCodeS = ""; biasNameS = ""; sminSign = ""; smin = ""; smaxSign = ""; smax = ""; ischeck = ""; stdMinVal = ""; stdMaxVal = ""; stdMinIn = ""; stdMaxIn = ""; stdMinPercent = ""; stdMaxPercent = ""; stdMinFormula = ""; stdMaxFormula = ""; stdMinFormulaV = ""; stdMaxFormulaV = ""; stdmemo = ""; validflag = ""; createName = ""; createTime = ""; updateName = ""; updateTime = ""; deleteName = ""; deleteTime = ""; } /// /// 客户Alpha编号 /// public string CustAlphaNo { get { return custAlphaNo; } set { custAlphaNo = value; } } /// /// 公差标准索引号 /// public string Sic { get { return sic; } set { sic = value; } } /// /// 序号 /// public string IndexSeq { get { return indexSeq; } set { indexSeq = value; } } /// /// 公差项代码(主项)(4040) /// public string BiasCode { get { return biasCode; } set { biasCode = value; } } /// /// 公差项名称(主项) /// public string BiasName { get { return biasName; } set { biasName = value; } } /// /// 精度等级(4041) /// public string Lv { get { return lv; } set { lv = value; } } /// /// 公差约束项一代码(4003) /// public string BiasCodeZ { get { return biasCodeZ; } set { biasCodeZ = value; } } /// /// 公差约束项一名称 /// public string BiasNameZ { get { return biasNameZ; } set { biasNameZ = value; } } /// /// 公差约束项一下限符号 /// public string ZminSign { get { return zminSign; } set { zminSign = value; } } /// /// 公差约束项一下限值 /// public string Zmin { get { return zmin; } set { zmin = value; } } /// /// 公差约束项一上限符号 /// public string ZmaxSign { get { return zmaxSign; } set { zmaxSign = value; } } /// /// 公差约束项一上限值 /// public string Zmax { get { return zmax; } set { zmax = value; } } /// /// 公差约束项二代码(4003) /// public string BiasCodeC { get { return biasCodeC; } set { biasCodeC = value; } } /// /// 公差约束项二名称 /// public string BiasNameC { get { return biasNameC; } set { biasNameC = value; } } /// /// 公差约束项二下限符号 /// public string CminSign { get { return cminSign; } set { cminSign = value; } } /// /// 公差约束项二下限值 /// public string Cmin { get { return cmin; } set { cmin = value; } } /// /// 公差约束项二上限符号 /// public string CmaxSign { get { return cmaxSign; } set { cmaxSign = value; } } /// /// 公差约束项二上限值 /// public string Cmax { get { return cmax; } set { cmax = value; } } /// /// 公差约束项三代码(4003) /// public string BiasCodeS { get { return biasCodeS; } set { biasCodeS = value; } } /// /// 公差约束项三名称 /// public string BiasNameS { get { return biasNameS; } set { biasNameS = value; } } /// /// 公差约束项三下限符号 /// public string SminSign { get { return sminSign; } set { sminSign = value; } } /// /// 公差约束项三下限值 /// public string Smin { get { return smin; } set { smin = value; } } /// /// 公差约束项三上限符号 /// public string SmaxSign { get { return smaxSign; } set { smaxSign = value; } } /// /// 公差约束项三上限值 /// public string Smax { get { return smax; } set { smax = value; } } /// /// 是否必检项(1:是,0:否) /// public string Ischeck { get { return ischeck; } set { ischeck = value; } } /// /// 标准负值(mm) /// public string StdMinVal { get { return stdMinVal; } set { stdMinVal = value; } } /// /// 标准正值(mm) /// public string StdMaxVal { get { return stdMaxVal; } set { stdMaxVal = value; } } /// /// 标准负值(in) /// public string StdMinIn { get { return stdMinIn; } set { stdMinIn = value; } } /// /// 标准正值(in) /// public string StdMaxIn { get { return stdMaxIn; } set { stdMaxIn = value; } } /// /// 标准负值(%) /// public string StdMinPercent { get { return stdMinPercent; } set { stdMinPercent = value; } } /// /// 标准正值(%) /// public string StdMaxPercent { get { return stdMaxPercent; } set { stdMaxPercent = value; } } /// /// 标准公式负值(mm) /// public string StdMinFormula { get { return stdMinFormula; } set { stdMinFormula = value; } } /// /// 标准公式正值(mm) /// public string StdMaxFormula { get { return stdMaxFormula; } set { stdMaxFormula = value; } } /// /// 取小值 /// public string StdMinFormulaV { get { return stdMinFormulaV; } set { stdMinFormulaV = value; } } /// /// 取大值 /// public string StdMaxFormulaV { get { return stdMaxFormulaV; } set { stdMaxFormulaV = value; } } /// /// 标准备注 /// public string Stdmemo { get { return stdmemo; } set { stdmemo = value; } } /// /// 有效标志(1:有效,0:无效) /// public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 创建人 /// public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } } }