ChartConfig.java 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. package com.model.po;
  2. public class ChartConfig {
  3. private int chartId;
  4. private String chartName;
  5. private String tableName;
  6. private String chartType;
  7. private int DataId; //数据源id
  8. // private int dashboardsId; //看板id
  9. private String groupBy; //分组
  10. private String Subsections; //分段
  11. private String chartConfig;
  12. private String createBy;
  13. private String accessAuthority; //访问权限
  14. private String updateAuthority; //修改权限
  15. private String describes; //描述
  16. private String style; //样式
  17. private String filters; //筛选
  18. private String createDate; //数据类型
  19. private String updateDate; //数据类型
  20. public int getChartId() {
  21. return chartId;
  22. }
  23. public void setChartId(int chartId) {
  24. this.chartId = chartId;
  25. }
  26. public String getChartName() {
  27. return chartName;
  28. }
  29. public void setChartName(String chartName) {
  30. this.chartName = chartName;
  31. }
  32. public String getChartType() {
  33. return chartType;
  34. }
  35. public void setChartType(String chartType) {
  36. this.chartType = chartType;
  37. }
  38. public int getDataId() {
  39. return DataId;
  40. }
  41. public void setDataId(int dataId) {
  42. DataId = dataId;
  43. }
  44. public String getGroupBy() {
  45. return groupBy;
  46. }
  47. public void setGroupBy(String groupBy) {
  48. this.groupBy = groupBy;
  49. }
  50. public String getSubsections() {
  51. return Subsections;
  52. }
  53. public void setSubsections(String subsections) {
  54. Subsections = subsections;
  55. }
  56. public String getChartConfig() {
  57. return chartConfig;
  58. }
  59. public void setChartConfig(String chartConfig) {
  60. this.chartConfig = chartConfig;
  61. }
  62. public String getCreateBy() {
  63. return createBy;
  64. }
  65. public void setCreateBy(String createBy) {
  66. this.createBy = createBy;
  67. }
  68. public String getAccessAuthority() {
  69. return accessAuthority;
  70. }
  71. public void setAccessAuthority(String accessAuthority) {
  72. this.accessAuthority = accessAuthority;
  73. }
  74. public String getUpdateAuthority() {
  75. return updateAuthority;
  76. }
  77. public void setUpdateAuthority(String updateAuthority) {
  78. this.updateAuthority = updateAuthority;
  79. }
  80. public String getDescribes() {
  81. return describes;
  82. }
  83. public void setDescribes(String describes) {
  84. this.describes = describes;
  85. }
  86. public String getStyle() {
  87. return style;
  88. }
  89. public void setStyle(String style) {
  90. this.style = style;
  91. }
  92. public String getFilters() {
  93. return filters;
  94. }
  95. public void setFilters(String filters) {
  96. this.filters = filters;
  97. }
  98. public String getCreateDate() {
  99. return createDate;
  100. }
  101. public void setCreateDate(String createDate) {
  102. this.createDate = createDate;
  103. }
  104. public String getUpdateDate() {
  105. return updateDate;
  106. }
  107. public void setUpdateDate(String updateDate) {
  108. this.updateDate = updateDate;
  109. }
  110. public String getTableName() {
  111. return tableName;
  112. }
  113. public void setTableName(String tableName) {
  114. this.tableName = tableName;
  115. }
  116. @Override
  117. public String toString() {
  118. return "ChartConfig{" +
  119. "chartId=" + chartId +
  120. ", chartName='" + chartName + '\'' +
  121. ", tableName='" + tableName + '\'' +
  122. ", chartType='" + chartType + '\'' +
  123. ", DataId=" + DataId +
  124. ", groupBy='" + groupBy + '\'' +
  125. ", Subsections='" + Subsections + '\'' +
  126. ", chartConfig='" + chartConfig + '\'' +
  127. ", createBy='" + createBy + '\'' +
  128. ", accessAuthority='" + accessAuthority + '\'' +
  129. ", updateAuthority='" + updateAuthority + '\'' +
  130. ", describes='" + describes + '\'' +
  131. ", style=" + style +
  132. ", filters='" + filters + '\'' +
  133. ", createDate='" + createDate + '\'' +
  134. ", updateDate='" + updateDate + '\'' +
  135. '}';
  136. }
  137. }