DChecknodeVal.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. package com.miniframe.model.system;
  2. import com.miniframe.system.MiniserviceBaseModel;
  3. import java.io.Serializable;
  4. import javax.persistence.*;
  5. @Table(name = "d_checknode_val")
  6. public class DChecknodeVal extends MiniserviceBaseModel implements Serializable {
  7. @Id
  8. private Integer id;
  9. /**
  10. * 事故id
  11. */
  12. private Integer aid;
  13. /**
  14. * 任务ID
  15. */
  16. private Integer jid;
  17. /**
  18. * 监测点名称
  19. */
  20. private String chname;
  21. private String v1;
  22. private String v2;
  23. private String v3;
  24. private String v4;
  25. private String v5;
  26. private String v6;
  27. /**
  28. * 步数
  29. */
  30. private Integer step;
  31. /**
  32. * 监测点编号
  33. */
  34. private String chcode;
  35. private static final long serialVersionUID = 1L;
  36. /**
  37. * @return id
  38. */
  39. public Integer getId() {
  40. return id;
  41. }
  42. /**
  43. * @param id
  44. */
  45. public void setId(Integer id) {
  46. this.id = id;
  47. }
  48. /**
  49. * 获取事故id
  50. *
  51. * @return aid - 事故id
  52. */
  53. public Integer getAid() {
  54. return aid;
  55. }
  56. /**
  57. * 设置事故id
  58. *
  59. * @param aid 事故id
  60. */
  61. public void setAid(Integer aid) {
  62. this.aid = aid;
  63. }
  64. /**
  65. * 获取任务ID
  66. *
  67. * @return jid - 任务ID
  68. */
  69. public Integer getJid() {
  70. return jid;
  71. }
  72. /**
  73. * 设置任务ID
  74. *
  75. * @param jid 任务ID
  76. */
  77. public void setJid(Integer jid) {
  78. this.jid = jid;
  79. }
  80. /**
  81. * 获取监测点名称
  82. *
  83. * @return chname - 监测点名称
  84. */
  85. public String getChname() {
  86. return chname;
  87. }
  88. /**
  89. * 设置监测点名称
  90. *
  91. * @param chname 监测点名称
  92. */
  93. public void setChname(String chname) {
  94. this.chname = chname == null ? null : chname.trim();
  95. }
  96. /**
  97. * @return v1
  98. */
  99. public String getV1() {
  100. return v1;
  101. }
  102. /**
  103. * @param v1
  104. */
  105. public void setV1(String v1) {
  106. this.v1 = v1 == null ? null : v1.trim();
  107. }
  108. /**
  109. * @return v2
  110. */
  111. public String getV2() {
  112. return v2;
  113. }
  114. /**
  115. * @param v2
  116. */
  117. public void setV2(String v2) {
  118. this.v2 = v2 == null ? null : v2.trim();
  119. }
  120. /**
  121. * @return v3
  122. */
  123. public String getV3() {
  124. return v3;
  125. }
  126. /**
  127. * @param v3
  128. */
  129. public void setV3(String v3) {
  130. this.v3 = v3 == null ? null : v3.trim();
  131. }
  132. /**
  133. * @return v4
  134. */
  135. public String getV4() {
  136. return v4;
  137. }
  138. /**
  139. * @param v4
  140. */
  141. public void setV4(String v4) {
  142. this.v4 = v4 == null ? null : v4.trim();
  143. }
  144. /**
  145. * @return v5
  146. */
  147. public String getV5() {
  148. return v5;
  149. }
  150. /**
  151. * @param v5
  152. */
  153. public void setV5(String v5) {
  154. this.v5 = v5 == null ? null : v5.trim();
  155. }
  156. /**
  157. * @return v6
  158. */
  159. public String getV6() {
  160. return v6;
  161. }
  162. /**
  163. * @param v6
  164. */
  165. public void setV6(String v6) {
  166. this.v6 = v6 == null ? null : v6.trim();
  167. }
  168. /**
  169. * 获取步数
  170. *
  171. * @return step - 步数
  172. */
  173. public Integer getStep() {
  174. return step;
  175. }
  176. /**
  177. * 设置步数
  178. *
  179. * @param step 步数
  180. */
  181. public void setStep(Integer step) {
  182. this.step = step;
  183. }
  184. /**
  185. * 获取监测点编号
  186. *
  187. * @return chcode - 监测点编号
  188. */
  189. public String getChcode() {
  190. return chcode;
  191. }
  192. /**
  193. * 设置监测点编号
  194. *
  195. * @param chcode 监测点编号
  196. */
  197. public void setChcode(String chcode) {
  198. this.chcode = chcode == null ? null : chcode.trim();
  199. }
  200. }