using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Core.StlMes.Client.SaleOrder { class SlmCustChemObject { /// /// 客户Alpha编号 /// private string custAlphaNo; /// /// 成分标准索引号 /// private string cic; /// /// 序号 /// private string indexSeq; /// /// 化学元素代码 /// private string chemCode; /// /// 化学元素描述 /// private string chemName; /// /// 化学元素类型(A:单一元素,B:复合元素) /// private string chemType; /// /// 复合元素计算公式 /// private string chemFormula; /// /// 是否必检项()1:是,0:否) /// private string ischeck; /// /// 是否判定(1:是,0:否) /// private string isjudge; /// /// 是否报出(1:是,0:否) /// private string isquote; /// /// 是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算) /// private string complexType; /// /// 标准范围下限符号 /// private string stdminSign; /// /// 标准范围下限 /// private string stdmin; /// /// 标准范围上限符号 /// private string stdmaxSign; /// /// 标准范围上限 /// private string stdmax; /// /// 标准目标值 /// private string stdtarget; /// /// 扣型代码(集合) /// private string modelCode; /// /// 扣型描述(集合) /// private string modelDesc; /// /// 标准备注 /// private string stdmemo; /// /// 限制元素代码 /// private string eleCode; /// /// 限制元素描述 /// private string eleName; /// /// 限制元素下限符号 /// private string eleMinSign; /// /// 限制元素下限 /// private string eleMin; /// /// 限制元素上限符号 /// private string eleMaxSign; /// /// 限制元素上限 /// private string eleMax; /// /// 限制规格代码(外径、壁厚、径壁比等) /// private string sizeCode2; /// /// 限制规格描述 /// private string sizeName2; /// /// 限制规格下限符号 /// private string sizeMinSign2; /// /// 限制规格下限 /// private string sizeMin2; /// /// 限制规格上限符号 /// private string sizeMaxSign2; /// /// 限制规格上限 /// private string sizeMax2; /// /// 限制规格代码(外径、壁厚、径壁比等) /// private string sizeCode; /// /// 限制规格描述 /// private string sizeName; /// /// 限制规格下限符号 /// private string sizeMinSign; /// /// 限制规格下限 /// private string sizeMin; /// /// 限制规格上限符号 /// private string sizeMaxSign; /// /// 限制规格上限 /// private string sizeMax; /// /// 接箍规格代码(接箍专用,与外径壁厚只允许存在其一) /// private string specJg; /// /// 接箍规格描述 /// private string specJgDesc; /// /// 有效标志(1:有效,0:无效) /// private string validflag; /// /// 创建人 /// private string createName; /// /// 创建时间 /// private string createTime; /// /// 修改人 /// private string updateName; /// /// 修改时间 /// private string updateTime; /// /// 删除人 /// private string deleteName; /// /// 删除时间 /// private string deleteTime; /// /// 替代元素代码 /// private string repCode; /// /// 替代元素描述 /// private string repName; /// /// 替代元素下限符号 /// private string repMinSign; /// /// 替代元素下限 /// private string repMin; /// /// 替代元素上限符号 /// private string repMaxSign; /// /// 替代元素上限 /// private string repMax; /// /// 替代元素值 /// private string repVal; public SlmCustChemObject() { custAlphaNo = ""; cic = ""; indexSeq = ""; chemCode = ""; chemName = ""; chemType = ""; chemFormula = ""; ischeck = ""; isjudge = ""; isquote = ""; complexType = ""; stdminSign = ""; stdmin = ""; stdmaxSign = ""; stdmax = ""; stdtarget = ""; modelCode = ""; modelDesc = ""; stdmemo = ""; eleCode = ""; eleName = ""; eleMinSign = ""; eleMin = ""; eleMaxSign = ""; eleMax = ""; sizeCode2 = ""; sizeName2 = ""; sizeMinSign2 = ""; sizeMin2 = ""; sizeMaxSign2 = ""; sizeMax2 = ""; sizeCode = ""; sizeName = ""; sizeMinSign = ""; sizeMin = ""; sizeMaxSign = ""; sizeMax = ""; specJg = ""; specJgDesc = ""; validflag = ""; createName = ""; createTime = ""; updateName = ""; updateTime = ""; deleteName = ""; deleteTime = ""; repCode = ""; repName = ""; repMinSign = ""; repMin = ""; repMaxSign = ""; repMax = ""; repVal = ""; } /// /// 客户Alpha编号 /// public string CustAlphaNo { get { return custAlphaNo; } set { custAlphaNo = value; } } /// /// 成分标准索引号 /// public string Cic { get { return cic; } set { cic = value; } } /// /// 序号 /// public string IndexSeq { get { return indexSeq; } set { indexSeq = value; } } /// /// 化学元素代码 /// public string ChemCode { get { return chemCode; } set { chemCode = value; } } /// /// 化学元素描述 /// public string ChemName { get { return chemName; } set { chemName = value; } } /// /// 化学元素类型(A:单一元素,B:复合元素) /// public string ChemType { get { return chemType; } set { chemType = value; } } /// /// 复合元素计算公式 /// public string ChemFormula { get { return chemFormula; } set { chemFormula = value; } } /// /// 是否必检项()1:是,0:否) /// public string Ischeck { get { return ischeck; } set { ischeck = value; } } /// /// 是否判定(1:是,0:否) /// public string Isjudge { get { return isjudge; } set { isjudge = value; } } /// /// 是否报出(1:是,0:否) /// public string Isquote { get { return isquote; } set { isquote = value; } } /// /// 是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算) /// public string ComplexType { get { return complexType; } set { complexType = value; } } /// /// 标准范围下限符号 /// public string StdminSign { get { return stdminSign; } set { stdminSign = value; } } /// /// 标准范围下限 /// public string Stdmin { get { return stdmin; } set { stdmin = value; } } /// /// 标准范围上限符号 /// public string StdmaxSign { get { return stdmaxSign; } set { stdmaxSign = value; } } /// /// 标准范围上限 /// public string Stdmax { get { return stdmax; } set { stdmax = value; } } /// /// 标准目标值 /// public string Stdtarget { get { return stdtarget; } set { stdtarget = value; } } /// /// 扣型代码(集合) /// public string ModelCode { get { return modelCode; } set { modelCode = value; } } /// /// 扣型描述(集合) /// public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 标准备注 /// public string Stdmemo { get { return stdmemo; } set { stdmemo = value; } } /// /// 限制元素代码 /// public string EleCode { get { return eleCode; } set { eleCode = value; } } /// /// 限制元素描述 /// public string EleName { get { return eleName; } set { eleName = value; } } /// /// 限制元素下限符号 /// public string EleMinSign { get { return eleMinSign; } set { eleMinSign = value; } } /// /// 限制元素下限 /// public string EleMin { get { return eleMin; } set { eleMin = value; } } /// /// 限制元素上限符号 /// public string EleMaxSign { get { return eleMaxSign; } set { eleMaxSign = value; } } /// /// 限制元素上限 /// public string EleMax { get { return eleMax; } set { eleMax = value; } } /// /// 限制规格代码(外径、壁厚、径壁比等) /// public string SizeCode2 { get { return sizeCode2; } set { sizeCode2 = value; } } /// /// 限制规格描述 /// public string SizeName2 { get { return sizeName2; } set { sizeName2 = value; } } /// /// 限制规格下限符号 /// public string SizeMinSign2 { get { return sizeMinSign2; } set { sizeMinSign2 = value; } } /// /// 限制规格下限 /// public string SizeMin2 { get { return sizeMin2; } set { sizeMin2 = value; } } /// /// 限制规格上限符号 /// public string SizeMaxSign2 { get { return sizeMaxSign2; } set { sizeMaxSign2 = value; } } /// /// 限制规格上限 /// public string SizeMax2 { get { return sizeMax2; } set { sizeMax2 = value; } } /// /// 限制规格代码(外径、壁厚、径壁比等) /// public string SizeCode { get { return sizeCode; } set { sizeCode = value; } } /// /// 限制规格描述 /// public string SizeName { get { return sizeName; } set { sizeName = value; } } /// /// 限制规格下限符号 /// public string SizeMinSign { get { return sizeMinSign; } set { sizeMinSign = value; } } /// /// 限制规格下限 /// public string SizeMin { get { return sizeMin; } set { sizeMin = value; } } /// /// 限制规格上限符号 /// public string SizeMaxSign { get { return sizeMaxSign; } set { sizeMaxSign = value; } } /// /// 限制规格上限 /// public string SizeMax { get { return sizeMax; } set { sizeMax = value; } } /// /// 接箍规格代码(接箍专用,与外径壁厚只允许存在其一) /// public string SpecJg { get { return specJg; } set { specJg = value; } } /// /// 接箍规格描述 /// public string SpecJgDesc { get { return specJgDesc; } set { specJgDesc = 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; } } /// /// 替代元素代码 /// public string RepCode { get { return repCode; } set { repCode = value; } } /// /// 替代元素描述 /// public string RepName { get { return repName; } set { repName = value; } } /// /// 替代元素下限符号 /// public string RepMinSign { get { return repMinSign; } set { repMinSign = value; } } /// /// 替代元素下限 /// public string RepMin { get { return repMin; } set { repMin = value; } } /// /// 替代元素上限符号 /// public string RepMaxSign { get { return repMaxSign; } set { repMaxSign = value; } } /// /// 替代元素上限 /// public string RepMax { get { return repMax; } set { repMax = value; } } /// /// 替代元素值 /// public string RepVal { get { return repVal; } set { repVal = value; } } } }