| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484 |
- namespace Core.StlMes.Client.Qcm.model
- {
- /// <summary>
- /// 化学元素标准表 实体類
- /// </summary>
- class StdChemObject
- {
- //成分标准索引号
- private string cic;
- public string Cic
- {
- get { return cic; }
- set { cic = value; }
- }
- //序号
- private string indexSeq;
- public string IndexSeq
- {
- get { return indexSeq; }
- set { indexSeq = value; }
- }
- //化学元素代码
- private string chemCode;
- public string ChemCode
- {
- get { return chemCode; }
- set { chemCode = value; }
- }
- //化学元素描述
- private string chemName;
- public string ChemName
- {
- get { return chemName; }
- set { chemName = value; }
- }
- //化学元素类型(A:单一元素,B:复合元素)
- private string chemType;
- public string ChemType
- {
- get { return chemType; }
- set { chemType = value; }
- }
- //复合元素计算公式
- private string chemFormula;
- public string ChemFormula
- {
- get { return chemFormula; }
- set { chemFormula = value; }
- }
- //是否必检项()1:是,0:否)
- private string isCheck;
- public string IsCheck
- {
- get { return isCheck; }
- set { isCheck = value; }
- }
- //是否判定
- private string isjudge;
- public string Isjudge
- {
- get { return isjudge; }
- set { isjudge = value; }
- }
- //是否报出
- private string isQuote;
- public string IsQuote
- {
- get { return isQuote; }
- set { isQuote = value; }
- }
- //是否复合标准项
- private string complexType;
- public string ComplexType
- {
- get { return complexType; }
- set { complexType = value; }
- }
- //标准范围下限符号
- private string stdMinSign;
- public string StdMinSign
- {
- get { return stdMinSign; }
- set { stdMinSign = value; }
- }
- //标准范围下限
- private string stdMin;
- public string StdMin
- {
- get { return stdMin; }
- set { stdMin = value; }
- }
- //标准范围上限符号
- private string stdMaxSign;
- public string StdMaxSign
- {
- get { return stdMaxSign; }
- set { stdMaxSign = value; }
- }
- //标准范围上限
- private string stdMax;
- public string StdMax
- {
- get { return stdMax; }
- set { stdMax = value; }
- }
- //标准目标值
- private string stdTarget;
- public string StdTarget
- {
- get { return stdTarget; }
- set { stdTarget = value; }
- }
- //扣型代码(集合)
- private string modelCode;
- public string ModelCode
- {
- get { return modelCode; }
- set { modelCode = value; }
- }
- //扣型描述(集合)
- private string modelDesc;
- public string ModelDesc
- {
- get { return modelDesc; }
- set { modelDesc = value; }
- }
- //标准备注
- private string stdMemo;
- public string StdMemo
- {
- get { return stdMemo; }
- set { stdMemo = value; }
- }
- //限制元素代码
- private string eleCode;
- public string EleCode
- {
- get { return eleCode; }
- set { eleCode = value; }
- }
- //限制元素描述
- private string eleName;
- public string EleName
- {
- get { return eleName; }
- set { eleName = value; }
- }
- //限制元素下限符号
- private string eleMinSign;
- public string EleMinSign
- {
- get { return eleMinSign; }
- set { eleMinSign = value; }
- }
- //限制元素下限
- private string eleMin;
- public string EleMin
- {
- get { return eleMin; }
- set { eleMin = value; }
- }
- //限制元素上限符号
- private string eleMaxSign;
- public string EleMaxSign
- {
- get { return eleMaxSign; }
- set { eleMaxSign = value; }
- }
- //限制元素上限
- private string eleMax;
- public string EleMax
- {
- get { return eleMax; }
- set { eleMax = value; }
- }
- //限制规格代码(外径、壁厚、径壁比等)
- private string sizeCode2;
- public string SizeCode2
- {
- get { return sizeCode2; }
- set { sizeCode2 = value; }
- }
- //限制规格描述
- private string sizeName2;
- public string SizeName2
- {
- get { return sizeName2; }
- set { sizeName2 = value; }
- }
- //限制规格下限符号
- private string sizeMinSign2;
- public string SizeMinSign2
- {
- get { return sizeMinSign2; }
- set { sizeMinSign2 = value; }
- }
- //限制规格下限
- private string sizeMin2;
- public string SizeMin2
- {
- get { return sizeMin2; }
- set { sizeMin2 = value; }
- }
- //限制规格上限符号
- private string sizeMaxSign2;
- public string SizeMaxSign2
- {
- get { return sizeMaxSign2; }
- set { sizeMaxSign2 = value; }
- }
- //限制规格上限
- private string sizeMax2;
- public string SizeMax2
- {
- get { return sizeMax2; }
- set { sizeMax2 = value; }
- }
- //限制规格代码(外径、壁厚、径壁比等)
- private string sizeCode;
- public string SizeCode
- {
- get { return sizeCode; }
- set { sizeCode = value; }
- }
- //限制规格描述
- private string sizeName;
- public string SizeName
- {
- get { return sizeName; }
- set { sizeName = value; }
- }
- //限制规格下限符号
- private string sizeMinSign;
- public string SizeMinSign
- {
- get { return sizeMinSign; }
- set { sizeMinSign = value; }
- }
- //限制规格下限
- private string sizeMin;
- public string SizeMin
- {
- get { return sizeMin; }
- set { sizeMin = value; }
- }
- //限制规格上限符号
- private string sizeMaxSign;
- public string SizeMaxSign
- {
- get { return sizeMaxSign; }
- set { sizeMaxSign = value; }
- }
- //限制规格上限
- private string sizeMax;
- public string SizeMax
- {
- get { return sizeMax; }
- set { sizeMax = value; }
- }
- //接箍规格代码(接箍专用,与外径壁厚只允许存在其一)
- private string specJg;
- public string SpecJg
- {
- get { return specJg; }
- set { specJg = value; }
- }
- //接箍规格描述
- private string specJgDesc;
- public string SpecJgDesc
- {
- get { return specJgDesc; }
- set { specJgDesc = value; }
- }
- //创建人
- private string createName;
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- //创建时间
- private string createTime;
- public string CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- //修改人
- private string updateName;
- public string UpdateName
- {
- get { return updateName; }
- set { updateName = value; }
- }
- //修改时间
- private string updateTime;
- public string UpdateTime
- {
- get { return updateTime; }
- set { updateTime = value; }
- }
- //删除人
- private string deleteName;
- public string DeleteName
- {
- get { return deleteName; }
- set { deleteName = value; }
- }
- //删除时间
- private string deleteTime;
- public string DeleteTime
- {
- get { return deleteTime; }
- set { deleteTime = value; }
- }
- //有效标志(1:有效,0:无效)
- private string validflag;
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- /// <summary>
- /// 替代元素代码
- /// <summary>
- private string repCode;
- public string RepCode
- {
- get { return repCode; }
- set { repCode = value; }
- }
- /// <summary>
- /// 替代元素描述
- /// <summary>
- private string repName;
- public string RepName
- {
- get { return repName; }
- set { repName = value; }
- }
- /// <summary>
- /// 替代元素下限符号
- /// <summary>
- private string repMinSign;
- public string RepMinSign
- {
- get { return repMinSign; }
- set { repMinSign = value; }
- }
- /// <summary>
- /// 替代元素下限
- /// <summary>
- private string repMin;
- public string RepMin
- {
- get { return repMin; }
- set { repMin = value; }
- }
- /// <summary>
- /// 替代元素上限符号
- /// <summary>
- private string repMaxSign;
- public string RepMaxSign
- {
- get { return repMaxSign; }
- set { repMaxSign = value; }
- }
- /// <summary>
- /// 替代元素上限
- /// <summary>
- private string repMax;
- public string RepMax
- {
- get { return repMax; }
- set { repMax = value; }
- }
- /// <summary>
- /// 替代元素值
- /// <summary>
- private string repVal;
- public string RepVal
- {
- get { return repVal; }
- set { repVal = value; }
- }
- }
- }
|