dfc66364e02dd11f8402118b08c48250a3e7369e.svn-base 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. package QCM.COMMUNAL.VO;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. public class QcmJudgePhysicalUtmD implements Serializable{
  5. /**
  6. * 来源(QCM_JUDGE_PHYSICAL_UTM_M)材质判定记录号
  7. */
  8. private String pic_id;
  9. public String getPic_id() {
  10. return this.pic_id;
  11. }
  12. public void setPic_id(String pic_id) {
  13. this.pic_id = pic_id;
  14. }
  15. /**
  16. * 试样号
  17. */
  18. private String smp_no;
  19. public String getSmp_no() {
  20. return this.smp_no;
  21. }
  22. public void setSmp_no(String smp_no) {
  23. this.smp_no = smp_no;
  24. }
  25. /**
  26. * 炉号
  27. */
  28. private String heat_no;
  29. public String getHeat_no() {
  30. return this.heat_no;
  31. }
  32. public void setHeat_no(String heat_no) {
  33. this.heat_no = heat_no;
  34. }
  35. /**
  36. * 轧批号
  37. */
  38. private String batch_no;
  39. public String getBatch_no() {
  40. return this.batch_no;
  41. }
  42. public void setBatch_no(String batch_no) {
  43. this.batch_no = batch_no;
  44. }
  45. /**
  46. * 检验号
  47. */
  48. private String inspection_lot;
  49. public String getInspection_lot() {
  50. return this.inspection_lot;
  51. }
  52. public void setInspection_lot(String inspection_lot) {
  53. this.inspection_lot = inspection_lot;
  54. }
  55. /**
  56. * DESIGN_KEY
  57. */
  58. private String design_key;
  59. public String getDesign_key() {
  60. return this.design_key;
  61. }
  62. public void setDesign_key(String design_key) {
  63. this.design_key = design_key;
  64. }
  65. /**
  66. * 产品规范码
  67. */
  68. private String psc;
  69. public String getPsc() {
  70. return this.psc;
  71. }
  72. public void setPsc(String psc) {
  73. this.psc = psc;
  74. }
  75. /**
  76. * 认证机构代码
  77. */
  78. private String cert_inst_code;
  79. public String getCert_inst_code() {
  80. return this.cert_inst_code;
  81. }
  82. public void setCert_inst_code(String cert_inst_code) {
  83. this.cert_inst_code = cert_inst_code;
  84. }
  85. /**
  86. * 认证机构名称
  87. */
  88. private String cert_inst_name;
  89. public String getCert_inst_name() {
  90. return this.cert_inst_name;
  91. }
  92. public void setCert_inst_name(String cert_inst_name) {
  93. this.cert_inst_name = cert_inst_name;
  94. }
  95. /**
  96. * 试样类型代码
  97. */
  98. private String smp_type_code;
  99. public String getSmp_type_code() {
  100. return this.smp_type_code;
  101. }
  102. public void setSmp_type_code(String smp_type_code) {
  103. this.smp_type_code = smp_type_code;
  104. }
  105. /**
  106. * 试样类型名称
  107. */
  108. private String smp_type_name;
  109. public String getSmp_type_name() {
  110. return this.smp_type_name;
  111. }
  112. public void setSmp_type_name(String smp_type_name) {
  113. this.smp_type_name = smp_type_name;
  114. }
  115. /**
  116. * 判定结果代码
  117. */
  118. private String judge_result_code;
  119. public String getJudge_result_code() {
  120. return this.judge_result_code;
  121. }
  122. public void setJudge_result_code(String judge_result_code) {
  123. this.judge_result_code = judge_result_code;
  124. }
  125. /**
  126. * 判定结果描述
  127. */
  128. private String judge_result_desc;
  129. public String getJudge_result_desc() {
  130. return this.judge_result_desc;
  131. }
  132. public void setJudge_result_desc(String judge_result_desc) {
  133. this.judge_result_desc = judge_result_desc;
  134. }
  135. /**
  136. * 材质结果集ID(QCM_JHY_SAMPLE_R_ORD)
  137. */
  138. private String phy_id;
  139. public String getPhy_id() {
  140. return this.phy_id;
  141. }
  142. public void setPhy_id(String phy_id) {
  143. this.phy_id = phy_id;
  144. }
  145. /**
  146. * 判定人
  147. */
  148. private String judge_name;
  149. public String getJudge_name() {
  150. return this.judge_name;
  151. }
  152. public void setJudge_name(String judge_name) {
  153. this.judge_name = judge_name;
  154. }
  155. /**
  156. * 判定时间
  157. */
  158. private Date judge_ttime;
  159. public Date getJudge_ttime() {
  160. return this.judge_ttime;
  161. }
  162. public void setJudge_ttime(Date judge_ttime) {
  163. this.judge_ttime = judge_ttime;
  164. }
  165. /**
  166. * 认证机构--判定结果
  167. */
  168. private String inst_judge;
  169. public String getInst_judge() {
  170. return inst_judge;
  171. }
  172. public void setInst_judge(String inst_judge) {
  173. this.inst_judge = inst_judge;
  174. }
  175. private String psc_desc;
  176. private String prod_code;
  177. private String prod_name;
  178. private String steel_code;
  179. private String steel_name;
  180. private String std_code;
  181. private String std_name;
  182. public String getPsc_desc() {
  183. return psc_desc;
  184. }
  185. public void setPsc_desc(String psc_desc) {
  186. this.psc_desc = psc_desc;
  187. }
  188. public String getProd_code() {
  189. return prod_code;
  190. }
  191. public void setProd_code(String prod_code) {
  192. this.prod_code = prod_code;
  193. }
  194. public String getProd_name() {
  195. return prod_name;
  196. }
  197. public void setProd_name(String prod_name) {
  198. this.prod_name = prod_name;
  199. }
  200. public String getSteel_code() {
  201. return steel_code;
  202. }
  203. public void setSteel_code(String steel_code) {
  204. this.steel_code = steel_code;
  205. }
  206. public String getSteel_name() {
  207. return steel_name;
  208. }
  209. public void setSteel_name(String steel_name) {
  210. this.steel_name = steel_name;
  211. }
  212. public String getStd_code() {
  213. return std_code;
  214. }
  215. public void setStd_code(String std_code) {
  216. this.std_code = std_code;
  217. }
  218. public String getStd_name() {
  219. return std_name;
  220. }
  221. public void setStd_name(String std_name) {
  222. this.std_name = std_name;
  223. }
  224. private String memo;
  225. public String getMemo() {
  226. return memo;
  227. }
  228. public void setMemo(String memo) {
  229. this.memo = memo;
  230. }
  231. }