/** * 系统服务 */ package com.miniframe.generate.comm.system; import com.miniframe.core.BaseMapModel; import java.io.Serializable; /** * 水泵添加修改 */ public class A_D20002 extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; int pumpid;//水泵id /** *水泵id */ public void setPumpid(int pumpid) { this.pumpid=pumpid; } /** *水泵id */ public int getPumpid() { return this.pumpid; } int pid;//管道ID /** *管道ID */ public void setPid(int pid) { this.pid=pid; } /** *管道ID */ public int getPid() { return this.pid; } String pumpname;//水泵名称 /** *水泵名称 */ public void setPumpname(String pumpname) { this.pumpname=pumpname; } /** *水泵名称 */ public String getPumpname() { return this.pumpname; } double site;//位置 /** *位置 */ public void setSite(double site) { this.site=site; } /** *位置 */ public double getSite() { return this.site; } double openhig;//开启高度 /** *开启高度 */ public void setOpenhig(double openhig) { this.openhig=openhig; } /** *开启高度 */ public double getOpenhig() { return this.openhig; } double closehig;//关闭高度 /** *关闭高度 */ public void setClosehig(double closehig) { this.closehig=closehig; } /** *关闭高度 */ public double getClosehig() { return this.closehig; } int aid;//事故id /** *事故id */ public void setAid(int aid) { this.aid=aid; } /** *事故id */ public int getAid() { return this.aid; } int onoff;//开关0-关1-开 /** *开关0-关1-开 */ public void setOnoff(int onoff) { this.onoff=onoff; } /** *开关0-关1-开 */ public int getOnoff() { return this.onoff; } String pumpcode;//水泵编码 /** *水泵编码 */ public void setPumpcode(String pumpcode) { this.pumpcode=pumpcode; } /** *水泵编码 */ public String getPumpcode() { return this.pumpcode; } }