A_D10029.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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_D10029 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. int id;//设置ID
  13. /**
  14. *设置ID
  15. */
  16. public void setId(int id) {
  17. this.id=id;
  18. }
  19. /**
  20. *设置ID
  21. */
  22. public int getId() {
  23. return this.id;
  24. }
  25. String height;//水位
  26. /**
  27. *水位
  28. */
  29. public void setHeight(String height) {
  30. this.height=height;
  31. }
  32. /**
  33. *水位
  34. */
  35. public String getHeight() {
  36. return this.height;
  37. }
  38. String temperature;//温度
  39. /**
  40. *温度
  41. */
  42. public void setTemperature(String temperature) {
  43. this.temperature=temperature;
  44. }
  45. /**
  46. *温度
  47. */
  48. public String getTemperature() {
  49. return this.temperature;
  50. }
  51. String co2;//二氧化碳浓度
  52. /**
  53. *二氧化碳浓度
  54. */
  55. public void setCo2(String co2) {
  56. this.co2=co2;
  57. }
  58. /**
  59. *二氧化碳浓度
  60. */
  61. public String getCo2() {
  62. return this.co2;
  63. }
  64. String ch4;//ch4浓度
  65. /**
  66. *ch4浓度
  67. */
  68. public void setCh4(String ch4) {
  69. this.ch4=ch4;
  70. }
  71. /**
  72. *ch4浓度
  73. */
  74. public String getCh4() {
  75. return this.ch4;
  76. }
  77. String so2;//so2浓度
  78. /**
  79. *so2浓度
  80. */
  81. public void setSo2(String so2) {
  82. this.so2=so2;
  83. }
  84. /**
  85. *so2浓度
  86. */
  87. public String getSo2() {
  88. return this.so2;
  89. }
  90. }