123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- package com.miniframe.model.system;
- import com.miniframe.system.MiniserviceBaseModel;
- import java.io.Serializable;
- import javax.persistence.*;
- @Table(name = "d_checknode")
- public class DChecknode extends MiniserviceBaseModel implements Serializable {
- /**
- * ID
- */
- @Id
- private Integer id;
- /**
- * 管道ID
- */
- private Integer pid;
- /**
- * 位置
- */
- private Float site;
- /**
- * 管道名称
- */
- private String pname;
- /**
- * 监测点名称
- */
- private String chname;
- /**
- * 监测点编号
- */
- private String chcode;
- /**
- * 管道编号
- */
- private String pcode;
- /**
- * 位置说明
- */
- private String siteremark;
- private static final long serialVersionUID = 1L;
- /**
- * 获取ID
- *
- * @return id - ID
- */
- public Integer getId() {
- return id;
- }
- /**
- * 设置ID
- *
- * @param id ID
- */
- public void setId(Integer id) {
- this.id = id;
- }
- /**
- * 获取管道ID
- *
- * @return pid - 管道ID
- */
- public Integer getPid() {
- return pid;
- }
- /**
- * 设置管道ID
- *
- * @param pid 管道ID
- */
- public void setPid(Integer pid) {
- this.pid = pid;
- }
- /**
- * 获取位置
- *
- * @return site - 位置
- */
- public Float getSite() {
- return site;
- }
- /**
- * 设置位置
- *
- * @param site 位置
- */
- public void setSite(Float site) {
- this.site = site;
- }
- /**
- * 获取管道名称
- *
- * @return pname - 管道名称
- */
- public String getPname() {
- return pname;
- }
- /**
- * 设置管道名称
- *
- * @param pname 管道名称
- */
- public void setPname(String pname) {
- this.pname = pname == null ? null : pname.trim();
- }
- /**
- * 获取监测点名称
- *
- * @return chname - 监测点名称
- */
- public String getChname() {
- return chname;
- }
- /**
- * 设置监测点名称
- *
- * @param chname 监测点名称
- */
- public void setChname(String chname) {
- this.chname = chname == null ? null : chname.trim();
- }
- /**
- * 获取监测点编号
- *
- * @return chcode - 监测点编号
- */
- public String getChcode() {
- return chcode;
- }
- /**
- * 设置监测点编号
- *
- * @param chcode 监测点编号
- */
- public void setChcode(String chcode) {
- this.chcode = chcode == null ? null : chcode.trim();
- }
- /**
- * 获取管道编号
- *
- * @return pcode - 管道编号
- */
- public String getPcode() {
- return pcode;
- }
- /**
- * 设置管道编号
- *
- * @param pcode 管道编号
- */
- public void setPcode(String pcode) {
- this.pcode = pcode == null ? null : pcode.trim();
- }
- /**
- * 获取位置说明
- *
- * @return siteremark - 位置说明
- */
- public String getSiteremark() {
- return siteremark;
- }
- /**
- * 设置位置说明
- *
- * @param siteremark 位置说明
- */
- public void setSiteremark(String siteremark) {
- this.siteremark = siteremark == null ? null : siteremark.trim();
- }
- }
|