Detail_elc.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package com.happy.Model;
  2. public class Detail_elc {
  3. public Integer id;
  4. public String build;
  5. public String dom;
  6. public String pointid;
  7. public String dataTime;
  8. public double bm;
  9. public double use_elc;
  10. public double usable_elc;
  11. public double recharge_elc;
  12. public Integer use_state;
  13. public Integer usable_state;
  14. public Integer re_state;
  15. public Integer getId() {
  16. return id;
  17. }
  18. public void setId(Integer id) {
  19. this.id = id;
  20. }
  21. public String getBuild() {
  22. return build;
  23. }
  24. public void setBuild(String build) {
  25. this.build = build;
  26. }
  27. public String getDom() {
  28. return dom;
  29. }
  30. public void setDom(String dom) {
  31. this.dom = dom;
  32. }
  33. public String getPointid() {
  34. return pointid;
  35. }
  36. public void setPointid(String pointid) {
  37. this.pointid = pointid;
  38. }
  39. public String getDataTime() {
  40. return dataTime;
  41. }
  42. public void setDataTime(String dataTime) {
  43. this.dataTime = dataTime;
  44. }
  45. public double getBm() {
  46. return bm;
  47. }
  48. public void setBm(double bm) {
  49. this.bm = bm;
  50. }
  51. public double getUse_elc() {
  52. return use_elc;
  53. }
  54. public void setUse_elc(double use_elc) {
  55. this.use_elc = use_elc;
  56. }
  57. public double getUsable_elc() {
  58. return usable_elc;
  59. }
  60. public void setUsable_elc(double usable_elc) {
  61. this.usable_elc = usable_elc;
  62. }
  63. public double getRecharge_elc() {
  64. return recharge_elc;
  65. }
  66. public void setRecharge_elc(double recharge_elc) {
  67. this.recharge_elc = recharge_elc;
  68. }
  69. public Integer getUse_state() {
  70. return use_state;
  71. }
  72. public void setUse_state(Integer use_state) {
  73. this.use_state = use_state;
  74. }
  75. public Integer getUsable_state() {
  76. return usable_state;
  77. }
  78. public void setUsable_state(Integer usable_state) {
  79. this.usable_state = usable_state;
  80. }
  81. public Integer getRe_state() {
  82. return re_state;
  83. }
  84. public void setRe_state(Integer re_state) {
  85. this.re_state = re_state;
  86. }
  87. }