using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Core.StlMes.Client.SaleOrder { class SlmCustPhyObject { /// /// 限制规格下限符号 /// private string sizeMinSign2; /// /// 限制规格下限 /// private string sizeMin2; /// /// 限制规格上限符号 /// private string sizeMaxSign2; /// /// 限制规格上限 /// private string sizeMax2; /// /// 接箍规格代码(接箍专用,与外径壁厚只允许存在其一) /// 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; /// /// 条件项(1:符合标准时,0:不符合标准时) /// private string addcondition; /// /// 附加标准项代码 /// private string addstdconCode; /// /// 附加标准下限符号 /// private string addstdMinSign; /// /// 附加标准下限值 /// private string addstdMin; /// /// 附加标准上限符号 /// private string addstdMaxSign; /// /// 附加标准上限值 /// private string addstdMax; /// /// 百分比 /// private string addpercent; /// /// 客户Alpha编号 /// private string custAlphaNo; /// /// 材质标准索引号 /// private string pic; /// /// 序号 /// private string indexSeq; /// /// 材质检验项代码(大类) /// private string phyCodeMax; /// /// 材质检验项名称(大类) /// private string phyNameMax; /// /// 取样码 /// private string phyCodeMin; /// /// 取样码描述 /// private string phyNameMin; /// /// 材质检验项代码 /// private string phyCode; /// /// 材质检验项名称 /// private string phyName; /// /// 试验方向代码 /// private string itemCodeF; /// /// 试验方向描述 /// private string itemNameF; /// /// 试验温度代码 /// private string itemCodeW; /// /// 试验温度描述 /// private string itemNameW; /// /// 试样尺寸代码 /// private string itemCodeS; /// /// 试样尺寸描述 /// private string itemNameS; /// /// 分组索引号(同一分组的为多选一项) /// private string groupSeq; /// /// 是否检验(1:是,0:否 ) /// private string ischeck; /// /// 是否报出(1:是,0:否 ) /// private string isquote; /// /// 报出的结果条数 /// private string resultCount; /// /// 是否判定(1:是,0:否 ) /// private string isjudge; /// /// 是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算) /// private string phyType; /// /// 复合标准公式 /// private string phyFormula; /// /// 标准范围下限符号 /// private string stdminSign; /// /// 标准范围下限 /// private string stdmin; /// /// 标准范围上限符号 /// private string stdmaxSign; /// /// 标准范围上限 /// private string stdmax; /// /// 判定依据(A:最小值,B:最大值,C:平均值,D:逐项值判) /// private string judgeBasis; /// /// 交货状态 /// private string deliverystate; /// /// 扣型代码(集合) /// private string modelCode; /// /// 扣型描述(集合) /// private string modelDesc; /// /// 标准备注 /// private string stdmemo; /// /// 限制规格代码 /// private string sizeCode; /// /// 限制规格描述(外径、壁厚、径壁比) /// private string sizeName; /// /// 限制规格下限符号 /// private string sizeMinSign; /// /// 限制规格下限 /// private string sizeMin; /// /// 限制规格上限符号 /// private string sizeMaxSign; /// /// 限制规格上限 /// private string sizeMax; /// /// 限制规格代码 /// private string sizeCode2; /// /// 限制规格描述(外径、壁厚、径壁比) /// private string sizeName2; private string guid = ""; private string stdminSign2 = ""; public string StdminSign2 { get { return stdminSign2; } set { stdminSign2 = value; } } private string stdmin2 = ""; public string Stdmin2 { get { return stdmin2; } set { stdmin2 = value; } } private string stdmaxSign2 = ""; public string StdmaxSign2 { get { return stdmaxSign2; } set { stdmaxSign2 = value; } } private string stdmax2 = ""; public string Stdmax2 { get { return stdmax2; } set { stdmax2 = value; } } private string stdChoose = ""; public string StdChoose { get { return stdChoose; } set { stdChoose = value; } } public SlmCustPhyObject() { sizeMinSign2 = ""; sizeMin2 = ""; sizeMaxSign2 = ""; sizeMax2 = ""; specJg = ""; specJgDesc = ""; validflag = ""; createName = ""; createTime = ""; updateName = ""; updateTime = ""; deleteName = ""; deleteTime = ""; addcondition = ""; addstdconCode = ""; addstdMinSign = ""; addstdMin = ""; addstdMaxSign = ""; addstdMax = ""; addpercent = ""; custAlphaNo = ""; pic = ""; indexSeq = ""; phyCodeMax = ""; phyNameMax = ""; phyCodeMin = ""; phyNameMin = ""; phyCode = ""; phyName = ""; itemCodeF = ""; itemNameF = ""; itemCodeW = ""; itemNameW = ""; itemCodeS = ""; itemNameS = ""; groupSeq = ""; ischeck = ""; isquote = ""; resultCount = ""; isjudge = ""; phyType = ""; phyFormula = ""; stdminSign = ""; stdmin = ""; stdmaxSign = ""; stdmax = ""; judgeBasis = ""; deliverystate = ""; modelCode = ""; modelDesc = ""; stdmemo = ""; sizeCode = ""; sizeName = ""; sizeMinSign = ""; sizeMin = ""; sizeMaxSign = ""; sizeMax = ""; sizeCode2 = ""; sizeName2 = ""; } /// /// 限制规格下限符号 /// 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 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; } } /// /// 条件项(1:符合标准时,0:不符合标准时) /// public string Addcondition { get { return addcondition; } set { addcondition = value; } } /// /// 附加标准项代码 /// public string AddstdconCode { get { return addstdconCode; } set { addstdconCode = value; } } /// /// 附加标准下限符号 /// public string AddstdMinSign { get { return addstdMinSign; } set { addstdMinSign = value; } } /// /// 附加标准下限值 /// public string AddstdMin { get { return addstdMin; } set { addstdMin = value; } } /// /// 附加标准上限符号 /// public string AddstdMaxSign { get { return addstdMaxSign; } set { addstdMaxSign = value; } } /// /// 附加标准上限值 /// public string AddstdMax { get { return addstdMax; } set { addstdMax = value; } } /// /// 百分比 /// public string Addpercent { get { return addpercent; } set { addpercent = value; } } /// /// 客户Alpha编号 /// public string CustAlphaNo { get { return custAlphaNo; } set { custAlphaNo = value; } } /// /// 材质标准索引号 /// public string Pic { get { return pic; } set { pic = value; } } /// /// 序号 /// public string IndexSeq { get { return indexSeq; } set { indexSeq = value; } } /// /// 材质检验项代码(大类) /// public string PhyCodeMax { get { return phyCodeMax; } set { phyCodeMax = value; } } /// /// 材质检验项名称(大类) /// public string PhyNameMax { get { return phyNameMax; } set { phyNameMax = value; } } /// /// 取样码 /// public string PhyCodeMin { get { return phyCodeMin; } set { phyCodeMin = value; } } /// /// 取样码描述 /// public string PhyNameMin { get { return phyNameMin; } set { phyNameMin = value; } } /// /// 材质检验项代码 /// public string PhyCode { get { return phyCode; } set { phyCode = value; } } /// /// 材质检验项名称 /// public string PhyName { get { return phyName; } set { phyName = value; } } /// /// 试验方向代码 /// public string ItemCodeF { get { return itemCodeF; } set { itemCodeF = value; } } /// /// 试验方向描述 /// public string ItemNameF { get { return itemNameF; } set { itemNameF = value; } } /// /// 试验温度代码 /// public string ItemCodeW { get { return itemCodeW; } set { itemCodeW = value; } } /// /// 试验温度描述 /// public string ItemNameW { get { return itemNameW; } set { itemNameW = value; } } /// /// 试样尺寸代码 /// public string ItemCodeS { get { return itemCodeS; } set { itemCodeS = value; } } /// /// 试样尺寸描述 /// public string ItemNameS { get { return itemNameS; } set { itemNameS = value; } } /// /// 分组索引号(同一分组的为多选一项) /// public string GroupSeq { get { return groupSeq; } set { groupSeq = value; } } /// /// 是否检验(1:是,0:否 ) /// public string Ischeck { get { return ischeck; } set { ischeck = value; } } /// /// 是否报出(1:是,0:否 ) /// public string Isquote { get { return isquote; } set { isquote = value; } } /// /// 报出的结果条数 /// public string ResultCount { get { return resultCount; } set { resultCount = value; } } /// /// 是否判定(1:是,0:否 ) /// public string Isjudge { get { return isjudge; } set { isjudge = value; } } /// /// 是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算) /// public string PhyType { get { return phyType; } set { phyType = value; } } /// /// 复合标准公式 /// public string PhyFormula { get { return phyFormula; } set { phyFormula = 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; } } /// /// 判定依据(A:最小值,B:最大值,C:平均值,D:逐项值判) /// public string JudgeBasis { get { return judgeBasis; } set { judgeBasis = value; } } /// /// 交货状态 /// public string Deliverystate { get { return deliverystate; } set { deliverystate = 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 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 SizeCode2 { get { return sizeCode2; } set { sizeCode2 = value; } } /// /// 限制规格描述(外径、壁厚、径壁比) /// public string SizeName2 { get { return sizeName2; } set { sizeName2 = value; } } public string Guid { get { return guid; } set { guid = value; } } } }