A_D20002.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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_D20002 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. int pumpid;//水泵id
  13. /**
  14. *水泵id
  15. */
  16. public void setPumpid(int pumpid) {
  17. this.pumpid=pumpid;
  18. }
  19. /**
  20. *水泵id
  21. */
  22. public int getPumpid() {
  23. return this.pumpid;
  24. }
  25. int pid;//管道ID
  26. /**
  27. *管道ID
  28. */
  29. public void setPid(int pid) {
  30. this.pid=pid;
  31. }
  32. /**
  33. *管道ID
  34. */
  35. public int getPid() {
  36. return this.pid;
  37. }
  38. String pumpname;//水泵名称
  39. /**
  40. *水泵名称
  41. */
  42. public void setPumpname(String pumpname) {
  43. this.pumpname=pumpname;
  44. }
  45. /**
  46. *水泵名称
  47. */
  48. public String getPumpname() {
  49. return this.pumpname;
  50. }
  51. double site;//位置
  52. /**
  53. *位置
  54. */
  55. public void setSite(double site) {
  56. this.site=site;
  57. }
  58. /**
  59. *位置
  60. */
  61. public double getSite() {
  62. return this.site;
  63. }
  64. double openhig;//开启高度
  65. /**
  66. *开启高度
  67. */
  68. public void setOpenhig(double openhig) {
  69. this.openhig=openhig;
  70. }
  71. /**
  72. *开启高度
  73. */
  74. public double getOpenhig() {
  75. return this.openhig;
  76. }
  77. double closehig;//关闭高度
  78. /**
  79. *关闭高度
  80. */
  81. public void setClosehig(double closehig) {
  82. this.closehig=closehig;
  83. }
  84. /**
  85. *关闭高度
  86. */
  87. public double getClosehig() {
  88. return this.closehig;
  89. }
  90. int aid;//事故id
  91. /**
  92. *事故id
  93. */
  94. public void setAid(int aid) {
  95. this.aid=aid;
  96. }
  97. /**
  98. *事故id
  99. */
  100. public int getAid() {
  101. return this.aid;
  102. }
  103. int onoff;//开关0-关1-开
  104. /**
  105. *开关0-关1-开
  106. */
  107. public void setOnoff(int onoff) {
  108. this.onoff=onoff;
  109. }
  110. /**
  111. *开关0-关1-开
  112. */
  113. public int getOnoff() {
  114. return this.onoff;
  115. }
  116. }