123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- /**
- * 系统服务
- */
- 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;
- }
- int pumpbaseid;//水泵配置ID
- /**
- *水泵配置ID
- */
- public void setPumpbaseid(int pumpbaseid) {
- this.pumpbaseid=pumpbaseid;
- }
- /**
- *水泵配置ID
- */
- public int getPumpbaseid() {
- return this.pumpbaseid;
- }
- }
|