123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- package com.miniframe.model.system;
- import com.miniframe.system.MiniserviceBaseModel;
- import java.io.Serializable;
- import javax.persistence.*;
- @Table(name = "d_checknode_val")
- public class DChecknodeVal extends MiniserviceBaseModel implements Serializable {
- @Id
- private Integer id;
- /**
- * 事故id
- */
- private Integer aid;
- /**
- * 任务ID
- */
- private Integer jid;
- /**
- * 监测点名称
- */
- private String chname;
- private String v1;
- private String v2;
- private String v3;
- private String v4;
- private String v5;
- private String v6;
- /**
- * 步数
- */
- private Integer step;
- /**
- * 监测点编号
- */
- private String chcode;
- private static final long serialVersionUID = 1L;
- /**
- * @return id
- */
- public Integer getId() {
- return id;
- }
- /**
- * @param id
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * 获取事故id
- *
- * @return aid - 事故id
- */
- public Integer getAid() {
- return aid;
- }
- /**
- * 设置事故id
- *
- * @param aid 事故id
- */
- public void setAid(Integer aid) {
- this.aid = aid;
- }
- /**
- * 获取任务ID
- *
- * @return jid - 任务ID
- */
- public Integer getJid() {
- return jid;
- }
- /**
- * 设置任务ID
- *
- * @param jid 任务ID
- */
- public void setJid(Integer jid) {
- this.jid = jid;
- }
- /**
- * 获取监测点名称
- *
- * @return chname - 监测点名称
- */
- public String getChname() {
- return chname;
- }
- /**
- * 设置监测点名称
- *
- * @param chname 监测点名称
- */
- public void setChname(String chname) {
- this.chname = chname == null ? null : chname.trim();
- }
- /**
- * @return v1
- */
- public String getV1() {
- return v1;
- }
- /**
- * @param v1
- */
- public void setV1(String v1) {
- this.v1 = v1 == null ? null : v1.trim();
- }
- /**
- * @return v2
- */
- public String getV2() {
- return v2;
- }
- /**
- * @param v2
- */
- public void setV2(String v2) {
- this.v2 = v2 == null ? null : v2.trim();
- }
- /**
- * @return v3
- */
- public String getV3() {
- return v3;
- }
- /**
- * @param v3
- */
- public void setV3(String v3) {
- this.v3 = v3 == null ? null : v3.trim();
- }
- /**
- * @return v4
- */
- public String getV4() {
- return v4;
- }
- /**
- * @param v4
- */
- public void setV4(String v4) {
- this.v4 = v4 == null ? null : v4.trim();
- }
- /**
- * @return v5
- */
- public String getV5() {
- return v5;
- }
- /**
- * @param v5
- */
- public void setV5(String v5) {
- this.v5 = v5 == null ? null : v5.trim();
- }
- /**
- * @return v6
- */
- public String getV6() {
- return v6;
- }
- /**
- * @param v6
- */
- public void setV6(String v6) {
- this.v6 = v6 == null ? null : v6.trim();
- }
- /**
- * 获取步数
- *
- * @return step - 步数
- */
- public Integer getStep() {
- return step;
- }
- /**
- * 设置步数
- *
- * @param step 步数
- */
- public void setStep(Integer step) {
- this.step = step;
- }
- /**
- * 获取监测点编号
- *
- * @return chcode - 监测点编号
- */
- public String getChcode() {
- return chcode;
- }
- /**
- * 设置监测点编号
- *
- * @param chcode 监测点编号
- */
- public void setChcode(String chcode) {
- this.chcode = chcode == null ? null : chcode.trim();
- }
- }
|