12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 水泵水位流量添加修改
- */
- public class A_D20005 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- int pumphfid;//水泵水位流量id
- /**
- *水泵水位流量id
- */
- public void setPumphfid(int pumphfid) {
- this.pumphfid=pumphfid;
- }
- /**
- *水泵水位流量id
- */
- public int getPumphfid() {
- return this.pumphfid;
- }
- int pumpid;//水泵id
- /**
- *水泵id
- */
- public void setPumpid(int pumpid) {
- this.pumpid=pumpid;
- }
- /**
- *水泵id
- */
- public int getPumpid() {
- return this.pumpid;
- }
- double hight;//水位高度
- /**
- *水位高度
- */
- public void setHight(double hight) {
- this.hight=hight;
- }
- /**
- *水位高度
- */
- public double getHight() {
- return this.hight;
- }
- double flow;//流量
- /**
- *流量
- */
- public void setFlow(double flow) {
- this.flow=flow;
- }
- /**
- *流量
- */
- public double getFlow() {
- return this.flow;
- }
- }
|