MatStdDetail.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.ck
  4. {
  5. [Serializable]
  6. public class MatStdDetail
  7. {
  8. /** 标准基础信息索引号MIC+7位流水 */
  9. private string mic;
  10. public string Mic
  11. {
  12. get { return mic; }
  13. set { mic = value; }
  14. }
  15. /** 原材料项目编码 MAT=Materials */
  16. private string matCode;
  17. public string MatCode
  18. {
  19. get { return matCode; }
  20. set { matCode = value; }
  21. }
  22. /** 原材料项目名称 */
  23. private string matName;
  24. public string MatName
  25. {
  26. get { return matName; }
  27. set { matName = value; }
  28. }
  29. /** 条件 */
  30. private string addCondition;
  31. public string AddCondition
  32. {
  33. get { return addCondition; }
  34. set { addCondition = value; }
  35. }
  36. /** 是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算) */
  37. private string complexType;
  38. public string ComplexType
  39. {
  40. get { return complexType; }
  41. set { complexType = value; }
  42. }
  43. /** 复合检验项计算公式 */
  44. private string matFormula;
  45. public string MatFormula
  46. {
  47. get { return matFormula; }
  48. set { matFormula = value; }
  49. }
  50. /** 标准范围下限符号 */
  51. private string stdminSign;
  52. public string StdminSign
  53. {
  54. get { return stdminSign; }
  55. set { stdminSign = value; }
  56. }
  57. /** 标准范围下限 */
  58. private string stdmin;
  59. public string Stdmin
  60. {
  61. get { return stdmin; }
  62. set { stdmin = value; }
  63. }
  64. /** 标准范围上限符号 */
  65. private string stdmaxSign;
  66. public string StdmaxSign
  67. {
  68. get { return stdmaxSign; }
  69. set { stdmaxSign = value; }
  70. }
  71. /** 标准范围上限 */
  72. private string stdmax;
  73. public string Stdmax
  74. {
  75. get { return stdmax; }
  76. set { stdmax = value; }
  77. }
  78. /** 检验周期 */
  79. private string checkCycle;
  80. public string CheckCycle
  81. {
  82. get { return checkCycle; }
  83. set { checkCycle = value; }
  84. }
  85. /** 判定类型(验证方式) 代码 COM_BASE_INFO SORTCODE = ‘4090’ */
  86. private string judgeTypeCode;
  87. public string JudgeTypeCode
  88. {
  89. get { return judgeTypeCode; }
  90. set { judgeTypeCode = value; }
  91. }
  92. /** 判定类型 0 检验 1验证 2检验+验证默认0 验收方式 */
  93. private string judgeType;
  94. public string JudgeType
  95. {
  96. get { return judgeType; }
  97. set { judgeType = value; }
  98. }
  99. /** 试验要求条件 */
  100. private string checkCondition;
  101. public string CheckCondition
  102. {
  103. get { return checkCondition; }
  104. set { checkCondition = value; }
  105. }
  106. /** 数据状态(有效、无效) */
  107. private string validflag;
  108. public string Validflag
  109. {
  110. get { return validflag; }
  111. set { validflag = value; }
  112. }
  113. /** 备注 */
  114. private string remark;
  115. public string Remark
  116. {
  117. get { return remark; }
  118. set { remark = value; }
  119. }
  120. /** 创建人 */
  121. private string createName;
  122. public string CreateName
  123. {
  124. get { return createName; }
  125. set { createName = value; }
  126. }
  127. /** 创建时间 */
  128. private DateTime? createTime;
  129. public DateTime? CreateTime
  130. {
  131. get { return createTime; }
  132. set { createTime = value; }
  133. }
  134. /** 修改人 */
  135. private string updateName;
  136. public string UpdateName
  137. {
  138. get { return updateName; }
  139. set { updateName = value; }
  140. }
  141. /** 修改时间 */
  142. private DateTime? updateTime;
  143. public DateTime? UpdateTime
  144. {
  145. get { return updateTime; }
  146. set { updateTime = value; }
  147. }
  148. /** 删除人 */
  149. private string deleteName;
  150. public string DeleteName
  151. {
  152. get { return deleteName; }
  153. set { deleteName = value; }
  154. }
  155. /** 删除时间 */
  156. private DateTime? deleteTime;
  157. public DateTime? DeleteTime
  158. {
  159. get { return deleteTime; }
  160. set { deleteTime = value; }
  161. }
  162. /** 检验项目类型 */
  163. private string stdType;
  164. public string StdType
  165. {
  166. get { return stdType; }
  167. set { stdType = value; }
  168. }
  169. }
  170. }