A_D50005.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 水泵水位流量配置添加修改
  9. */
  10. public class A_D50005 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. int pumphfbaseid;//水泵水位流量id
  13. /**
  14. *水泵水位流量id
  15. */
  16. public void setPumphfbaseid(int pumphfbaseid) {
  17. this.pumphfbaseid=pumphfbaseid;
  18. }
  19. /**
  20. *水泵水位流量id
  21. */
  22. public int getPumphfbaseid() {
  23. return this.pumphfbaseid;
  24. }
  25. int pumpbaseid;//水泵id
  26. /**
  27. *水泵id
  28. */
  29. public void setPumpbaseid(int pumpbaseid) {
  30. this.pumpbaseid=pumpbaseid;
  31. }
  32. /**
  33. *水泵id
  34. */
  35. public int getPumpbaseid() {
  36. return this.pumpbaseid;
  37. }
  38. double hight;//水位高度
  39. /**
  40. *水位高度
  41. */
  42. public void setHight(double hight) {
  43. this.hight=hight;
  44. }
  45. /**
  46. *水位高度
  47. */
  48. public double getHight() {
  49. return this.hight;
  50. }
  51. double flow;//流量
  52. /**
  53. *流量
  54. */
  55. public void setFlow(double flow) {
  56. this.flow=flow;
  57. }
  58. /**
  59. *流量
  60. */
  61. public double getFlow() {
  62. return this.flow;
  63. }
  64. }