| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 | 
							- package com.miniframe.model.system;
 
- import com.miniframe.system.MiniserviceBaseModel;
 
- import java.io.Serializable;
 
- import javax.persistence.*;
 
- @Table(name = "d_ventfan_base")
 
- public class DVentfanBase extends MiniserviceBaseModel implements Serializable {
 
-     @Id
 
-     private Integer id;
 
-     /**
 
-      * 管道ID
 
-      */
 
-     private Integer pid;
 
-     /**
 
-      * 管道名称
 
-      */
 
-     private String pname;
 
-     /**
 
-      * 管道编号
 
-      */
 
-     private String pcode;
 
-     /**
 
-      * 位置
 
-      */
 
-     private Float site;
 
-     /**
 
-      * 增压kpa
 
-      */
 
-     private Float pa;
 
-     /**
 
-      * 开关(0-关、1-开)
 
-      */
 
-     private Integer onoff;
 
-     /**
 
-      * 风机名
 
-      */
 
-     private String name;
 
-     /**
 
-      * 风机编码
 
-      */
 
-     private String code;
 
-     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 pid - 管道ID
 
-      */
 
-     public Integer getPid() {
 
-         return pid;
 
-     }
 
-     /**
 
-      * 设置管道ID
 
-      *
 
-      * @param pid 管道ID
 
-      */
 
-     public void setPid(Integer pid) {
 
-         this.pid = pid;
 
-     }
 
-     /**
 
-      * 获取管道名称
 
-      *
 
-      * @return pname - 管道名称
 
-      */
 
-     public String getPname() {
 
-         return pname;
 
-     }
 
-     /**
 
-      * 设置管道名称
 
-      *
 
-      * @param pname 管道名称
 
-      */
 
-     public void setPname(String pname) {
 
-         this.pname = pname == null ? null : pname.trim();
 
-     }
 
-     /**
 
-      * 获取管道编号
 
-      *
 
-      * @return pcode - 管道编号
 
-      */
 
-     public String getPcode() {
 
-         return pcode;
 
-     }
 
-     /**
 
-      * 设置管道编号
 
-      *
 
-      * @param pcode 管道编号
 
-      */
 
-     public void setPcode(String pcode) {
 
-         this.pcode = pcode == null ? null : pcode.trim();
 
-     }
 
-     /**
 
-      * 获取位置
 
-      *
 
-      * @return site - 位置
 
-      */
 
-     public Float getSite() {
 
-         return site;
 
-     }
 
-     /**
 
-      * 设置位置
 
-      *
 
-      * @param site 位置
 
-      */
 
-     public void setSite(Float site) {
 
-         this.site = site;
 
-     }
 
-     /**
 
-      * 获取增压kpa
 
-      *
 
-      * @return pa - 增压kpa
 
-      */
 
-     public Float getPa() {
 
-         return pa;
 
-     }
 
-     /**
 
-      * 设置增压kpa
 
-      *
 
-      * @param pa 增压kpa
 
-      */
 
-     public void setPa(Float pa) {
 
-         this.pa = pa;
 
-     }
 
-     /**
 
-      * 获取开关(0-关、1-开)
 
-      *
 
-      * @return onoff - 开关(0-关、1-开)
 
-      */
 
-     public Integer getOnoff() {
 
-         return onoff;
 
-     }
 
-     /**
 
-      * 设置开关(0-关、1-开)
 
-      *
 
-      * @param onoff 开关(0-关、1-开)
 
-      */
 
-     public void setOnoff(Integer onoff) {
 
-         this.onoff = onoff;
 
-     }
 
-     /**
 
-      * 获取风机名
 
-      *
 
-      * @return name - 风机名
 
-      */
 
-     public String getName() {
 
-         return name;
 
-     }
 
-     /**
 
-      * 设置风机名
 
-      *
 
-      * @param name 风机名
 
-      */
 
-     public void setName(String name) {
 
-         this.name = name == null ? null : name.trim();
 
-     }
 
-     /**
 
-      * 获取风机编码
 
-      *
 
-      * @return code - 风机编码
 
-      */
 
-     public String getCode() {
 
-         return code;
 
-     }
 
-     /**
 
-      * 设置风机编码
 
-      *
 
-      * @param code 风机编码
 
-      */
 
-     public void setCode(String code) {
 
-         this.code = code == null ? null : code.trim();
 
-     }
 
- }
 
 
  |