CheckconsignDetail.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.pur.vo
  4. {
  5. [Serializable]
  6. public class CheckconsignDetail
  7. {
  8. /** 检验编号 */
  9. private string checkNo;
  10. public string CheckNo
  11. {
  12. get { return checkNo; }
  13. set { checkNo = value; }
  14. }
  15. /** 批次号(带删除) */
  16. private string batchNo;
  17. public string BatchNo
  18. {
  19. get { return batchNo; }
  20. set { batchNo = value; }
  21. }
  22. /** 原材料项目编码 MAT=Materials 如果是废钢则写DELIVERY_SUB_LINE_SQE */
  23. private string matCode;
  24. public string MatCode
  25. {
  26. get { return matCode; }
  27. set { matCode = value; }
  28. }
  29. /** 原材料项目编码 MAT=Materials 如果是废钢则写车号 */
  30. private string matName;
  31. public string MatName
  32. {
  33. get { return matName; }
  34. set { matName = value; }
  35. }
  36. /** 检验项目类型 单一的还是复合的 0单一 */
  37. private string matType;
  38. public string MatType
  39. {
  40. get { return matType; }
  41. set { matType = value; }
  42. }
  43. /** 值单位 */
  44. private string matUnit;
  45. public string MatUnit
  46. {
  47. get { return matUnit; }
  48. set { matUnit = value; }
  49. }
  50. /** 等级维护在质量基础信息表,标准等级(合格,一级,二级,三级.....特级)没有等级的则是合格,判定的时候从最高级别开始判定 */
  51. private string judgeLevel;
  52. public string JudgeLevel
  53. {
  54. get { return judgeLevel; }
  55. set { judgeLevel = value; }
  56. }
  57. /** 试验类别(所属实验室项目) */
  58. private string deptId;
  59. public string DeptId
  60. {
  61. get { return deptId; }
  62. set { deptId = value; }
  63. }
  64. /** 实验结果 */
  65. private string matValue;
  66. public string MatValue
  67. {
  68. get { return matValue; }
  69. set { matValue = value; }
  70. }
  71. /** 0未确认,1已录入质保书结果,2已上传结果 */
  72. private string flag;
  73. public string Flag
  74. {
  75. get { return flag; }
  76. set { flag = value; }
  77. }
  78. /** 备注 */
  79. private string remark;
  80. public string Remark
  81. {
  82. get { return remark; }
  83. set { remark = value; }
  84. }
  85. /** 值类型 0数值 1文本... */
  86. private string valueType;
  87. public string ValueType
  88. {
  89. get { return valueType; }
  90. set { valueType = value; }
  91. }
  92. /** 质保书结果 */
  93. private string zbsValue;
  94. public string ZbsValue
  95. {
  96. get { return zbsValue; }
  97. set { zbsValue = value; }
  98. }
  99. /** 等级代码(默认为合格不允许为空) */
  100. private string judgeLevelCode;
  101. public string JudgeLevelCode
  102. {
  103. get { return judgeLevelCode; }
  104. set { judgeLevelCode = value; }
  105. }
  106. /** 扣杂扣水重量(废钢用) */
  107. private string deductWeight;
  108. public string DeductWeight
  109. {
  110. get { return deductWeight; }
  111. set { deductWeight = value; }
  112. }
  113. /** 条件 */
  114. private string addCondition;
  115. public string AddCondition
  116. {
  117. get { return addCondition; }
  118. set { addCondition = value; }
  119. }
  120. /** 是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算) */
  121. private string complexType;
  122. public string ComplexType
  123. {
  124. get { return complexType; }
  125. set { complexType = value; }
  126. }
  127. /** 复合检验项计算公式 */
  128. private string matFormula;
  129. public string MatFormula
  130. {
  131. get { return matFormula; }
  132. set { matFormula = value; }
  133. }
  134. /** 标准范围下限符号 */
  135. private string stdminSign;
  136. public string StdminSign
  137. {
  138. get { return stdminSign; }
  139. set { stdminSign = value; }
  140. }
  141. /** 标准范围下限 */
  142. private string stdmin;
  143. public string Stdmin
  144. {
  145. get { return stdmin; }
  146. set { stdmin = value; }
  147. }
  148. /** 标准范围上限符号 */
  149. private string stdmaxSign;
  150. public string StdmaxSign
  151. {
  152. get { return stdmaxSign; }
  153. set { stdmaxSign = value; }
  154. }
  155. /** 标准范围上限 */
  156. private string stdmax;
  157. public string Stdmax
  158. {
  159. get { return stdmax; }
  160. set { stdmax = value; }
  161. }
  162. /** 检验周期 */
  163. private string checkCycle;
  164. public string CheckCycle
  165. {
  166. get { return checkCycle; }
  167. set { checkCycle = value; }
  168. }
  169. /** 判定类型(验证方式) 代码 COM_BASE_INFO SORTCODE = ‘4090’ */
  170. private string judgeTypeCode;
  171. public string JudgeTypeCode
  172. {
  173. get { return judgeTypeCode; }
  174. set { judgeTypeCode = value; }
  175. }
  176. /** 判定类型 0 检验 1验证 2检验+验证默认0 */
  177. private string judgeType;
  178. public string JudgeType
  179. {
  180. get { return judgeType; }
  181. set { judgeType = value; }
  182. }
  183. /** 试验要求条件 */
  184. private string checkCondition;
  185. public string CheckCondition
  186. {
  187. get { return checkCondition; }
  188. set { checkCondition = value; }
  189. }
  190. /** 0产品标准 1内控标准 */
  191. private string stdType;
  192. public string StdType
  193. {
  194. get { return stdType; }
  195. set { stdType = value; }
  196. }
  197. }
  198. }