123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 风机添加修改
- */
- public class A_D20008 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- int fanid;//风机id
- /**
- *风机id
- */
- public void setFanid(int fanid) {
- this.fanid=fanid;
- }
- /**
- *风机id
- */
- public int getFanid() {
- return this.fanid;
- }
- int pid;//管道ID
- /**
- *管道ID
- */
- public void setPid(int pid) {
- this.pid=pid;
- }
- /**
- *管道ID
- */
- public int getPid() {
- return this.pid;
- }
- String fanname;//风机名称
- /**
- *风机名称
- */
- public void setFanname(String fanname) {
- this.fanname=fanname;
- }
- /**
- *风机名称
- */
- public String getFanname() {
- return this.fanname;
- }
- double site;//位置
- /**
- *位置
- */
- public void setSite(double site) {
- this.site=site;
- }
- /**
- *位置
- */
- public double getSite() {
- return this.site;
- }
- double pa;//增压kpa
- /**
- *增压kpa
- */
- public void setPa(double pa) {
- this.pa=pa;
- }
- /**
- *增压kpa
- */
- public double getPa() {
- return this.pa;
- }
- int onoff;//开关0-关1-开
- /**
- *开关0-关1-开
- */
- public void setOnoff(int onoff) {
- this.onoff=onoff;
- }
- /**
- *开关0-关1-开
- */
- public int getOnoff() {
- return this.onoff;
- }
- int aid;//事故id
- /**
- *事故id
- */
- public void setAid(int aid) {
- this.aid=aid;
- }
- /**
- *事故id
- */
- public int getAid() {
- return this.aid;
- }
- String fancode;//水泵编码
- /**
- *水泵编码
- */
- public void setFancode(String fancode) {
- this.fancode=fancode;
- }
- /**
- *水泵编码
- */
- public String getFancode() {
- return this.fancode;
- }
- }
|