EchartDataVo.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package com.gyee.runeconomy.dto;
  2. /**
  3. *
  4. */
  5. public class EchartDataVo {
  6. private String name;
  7. private String xAxis;
  8. private ItemStyle itemStyle;
  9. private String time1;
  10. private String time2;
  11. public String getName() {
  12. return name;
  13. }
  14. public void setName(String name) {
  15. this.name = name;
  16. }
  17. public String getxAxis() {
  18. return xAxis;
  19. }
  20. public void setxAxis(String xAxis) {
  21. this.xAxis = xAxis;
  22. }
  23. public String getTime1() {
  24. return time1;
  25. }
  26. public void setTime1(String time1) {
  27. this.time1 = time1;
  28. }
  29. public String getTime2() {
  30. return time2;
  31. }
  32. public void setTime2(String time2) {
  33. this.time2 = time2;
  34. }
  35. public ItemStyle getItemStyle() {
  36. return itemStyle;
  37. }
  38. public void setItemStyle(ItemStyle itemStyle) {
  39. this.itemStyle = itemStyle;
  40. }
  41. public class ItemStyle {
  42. private String color;
  43. public String getColor() {
  44. return color;
  45. }
  46. public void setColor(String color) {
  47. this.color = color;
  48. }
  49. }
  50. }