A_D20005.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_D20005 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. int pumphfid;//水泵水位流量id
  13. /**
  14. *水泵水位流量id
  15. */
  16. public void setPumphfid(int pumphfid) {
  17. this.pumphfid=pumphfid;
  18. }
  19. /**
  20. *水泵水位流量id
  21. */
  22. public int getPumphfid() {
  23. return this.pumphfid;
  24. }
  25. int pumpid;//水泵id
  26. /**
  27. *水泵id
  28. */
  29. public void setPumpid(int pumpid) {
  30. this.pumpid=pumpid;
  31. }
  32. /**
  33. *水泵id
  34. */
  35. public int getPumpid() {
  36. return this.pumpid;
  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. }