SecondBufferP.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package com.happy.Model;
  2. public class SecondBufferP {
  3. public Integer id;
  4. public String dateT;
  5. public String dateTime;
  6. public String place;
  7. public String red_count;
  8. public String yellow_count;
  9. public String green_count;
  10. public String url;
  11. public Integer getId() {
  12. return id;
  13. }
  14. public void setId(Integer id) {
  15. this.id = id;
  16. }
  17. public String getDateT() {
  18. return dateT;
  19. }
  20. public void setDateT(String dateT) {
  21. this.dateT = dateT;
  22. }
  23. public String getDateTime() {
  24. return dateTime;
  25. }
  26. public void setDateTime(String dateTime) {
  27. this.dateTime = dateTime;
  28. }
  29. public String getPlace() {
  30. return place;
  31. }
  32. public void setPlace(String place) {
  33. this.place = place;
  34. }
  35. public String getRed_count() {
  36. return red_count;
  37. }
  38. public void setRed_count(String red_count) {
  39. this.red_count = red_count;
  40. }
  41. public String getYellow_count() {
  42. return yellow_count;
  43. }
  44. public void setYellow_count(String yellow_count) {
  45. this.yellow_count = yellow_count;
  46. }
  47. public String getGreen_count() {
  48. return green_count;
  49. }
  50. public void setGreen_count(String green_count) {
  51. this.green_count = green_count;
  52. }
  53. public String getUrl() {
  54. return url;
  55. }
  56. public void setUrl(String url) {
  57. this.url = url;
  58. }
  59. }