DChecknodeVal.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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. private static final long serialVersionUID = 1L;
  32. /**
  33. * @return id
  34. */
  35. public Integer getId() {
  36. return id;
  37. }
  38. /**
  39. * @param id
  40. */
  41. public void setId(Integer id) {
  42. this.id = id;
  43. }
  44. /**
  45. * 获取事故id
  46. *
  47. * @return aid - 事故id
  48. */
  49. public Integer getAid() {
  50. return aid;
  51. }
  52. /**
  53. * 设置事故id
  54. *
  55. * @param aid 事故id
  56. */
  57. public void setAid(Integer aid) {
  58. this.aid = aid;
  59. }
  60. /**
  61. * 获取任务ID
  62. *
  63. * @return jid - 任务ID
  64. */
  65. public Integer getJid() {
  66. return jid;
  67. }
  68. /**
  69. * 设置任务ID
  70. *
  71. * @param jid 任务ID
  72. */
  73. public void setJid(Integer jid) {
  74. this.jid = jid;
  75. }
  76. /**
  77. * 获取监测点名称
  78. *
  79. * @return chname - 监测点名称
  80. */
  81. public String getChname() {
  82. return chname;
  83. }
  84. /**
  85. * 设置监测点名称
  86. *
  87. * @param chname 监测点名称
  88. */
  89. public void setChname(String chname) {
  90. this.chname = chname == null ? null : chname.trim();
  91. }
  92. /**
  93. * @return v1
  94. */
  95. public String getV1() {
  96. return v1;
  97. }
  98. /**
  99. * @param v1
  100. */
  101. public void setV1(String v1) {
  102. this.v1 = v1 == null ? null : v1.trim();
  103. }
  104. /**
  105. * @return v2
  106. */
  107. public String getV2() {
  108. return v2;
  109. }
  110. /**
  111. * @param v2
  112. */
  113. public void setV2(String v2) {
  114. this.v2 = v2 == null ? null : v2.trim();
  115. }
  116. /**
  117. * @return v3
  118. */
  119. public String getV3() {
  120. return v3;
  121. }
  122. /**
  123. * @param v3
  124. */
  125. public void setV3(String v3) {
  126. this.v3 = v3 == null ? null : v3.trim();
  127. }
  128. /**
  129. * @return v4
  130. */
  131. public String getV4() {
  132. return v4;
  133. }
  134. /**
  135. * @param v4
  136. */
  137. public void setV4(String v4) {
  138. this.v4 = v4 == null ? null : v4.trim();
  139. }
  140. /**
  141. * @return v5
  142. */
  143. public String getV5() {
  144. return v5;
  145. }
  146. /**
  147. * @param v5
  148. */
  149. public void setV5(String v5) {
  150. this.v5 = v5 == null ? null : v5.trim();
  151. }
  152. /**
  153. * @return v6
  154. */
  155. public String getV6() {
  156. return v6;
  157. }
  158. /**
  159. * @param v6
  160. */
  161. public void setV6(String v6) {
  162. this.v6 = v6 == null ? null : v6.trim();
  163. }
  164. /**
  165. * 获取步数
  166. *
  167. * @return step - 步数
  168. */
  169. public Integer getStep() {
  170. return step;
  171. }
  172. /**
  173. * 设置步数
  174. *
  175. * @param step 步数
  176. */
  177. public void setStep(Integer step) {
  178. this.step = step;
  179. }
  180. }