/** * 系统服务 */ package com.miniframe.generate.comm.system; import com.miniframe.core.BaseMapModel; import java.io.Serializable; /** * 风机配置添加修改 */ public class A_D50008 extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; int fanbaseid;//风机配置id /** *风机配置id */ public void setFanbaseid(int fanbaseid) { this.fanbaseid=fanbaseid; } /** *风机配置id */ public int getFanbaseid() { return this.fanbaseid; } 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; } String fancode;//水泵编码 /** *水泵编码 */ public void setFancode(String fancode) { this.fancode=fancode; } /** *水泵编码 */ public String getFancode() { return this.fancode; } }