123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 水泵配置添加修改
- */
- public class A_D50002 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- int pumpbaseid;//水泵配置id
- /**
- *水泵配置id
- */
- public void setPumpbaseid(int pumpbaseid) {
- this.pumpbaseid=pumpbaseid;
- }
- /**
- *水泵配置id
- */
- public int getPumpbaseid() {
- return this.pumpbaseid;
- }
- 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 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;
- }
- }
|