| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- package com.model.po;
- public class ChartConfig {
- private int chartId;
- private String chartName;
- private String tableName;
- private String chartType;
- private int DataId; //数据源id
- // private int dashboardsId; //看板id
- private String groupBy; //分组
- private String Subsections; //分段
- private String chartConfig;
- private String createBy;
- private String accessAuthority; //访问权限
- private String updateAuthority; //修改权限
- private String describes; //描述
- private String style; //样式
- private String filters; //筛选
- private String createDate; //数据类型
- private String updateDate; //数据类型
- public int getChartId() {
- return chartId;
- }
- public void setChartId(int chartId) {
- this.chartId = chartId;
- }
- public String getChartName() {
- return chartName;
- }
- public void setChartName(String chartName) {
- this.chartName = chartName;
- }
- public String getChartType() {
- return chartType;
- }
- public void setChartType(String chartType) {
- this.chartType = chartType;
- }
- public int getDataId() {
- return DataId;
- }
- public void setDataId(int dataId) {
- DataId = dataId;
- }
- public String getGroupBy() {
- return groupBy;
- }
- public void setGroupBy(String groupBy) {
- this.groupBy = groupBy;
- }
- public String getSubsections() {
- return Subsections;
- }
- public void setSubsections(String subsections) {
- Subsections = subsections;
- }
- public String getChartConfig() {
- return chartConfig;
- }
- public void setChartConfig(String chartConfig) {
- this.chartConfig = chartConfig;
- }
- public String getCreateBy() {
- return createBy;
- }
- public void setCreateBy(String createBy) {
- this.createBy = createBy;
- }
- public String getAccessAuthority() {
- return accessAuthority;
- }
- public void setAccessAuthority(String accessAuthority) {
- this.accessAuthority = accessAuthority;
- }
- public String getUpdateAuthority() {
- return updateAuthority;
- }
- public void setUpdateAuthority(String updateAuthority) {
- this.updateAuthority = updateAuthority;
- }
- public String getDescribes() {
- return describes;
- }
- public void setDescribes(String describes) {
- this.describes = describes;
- }
- public String getStyle() {
- return style;
- }
- public void setStyle(String style) {
- this.style = style;
- }
- public String getFilters() {
- return filters;
- }
- public void setFilters(String filters) {
- this.filters = filters;
- }
- public String getCreateDate() {
- return createDate;
- }
- public void setCreateDate(String createDate) {
- this.createDate = createDate;
- }
- public String getUpdateDate() {
- return updateDate;
- }
- public void setUpdateDate(String updateDate) {
- this.updateDate = updateDate;
- }
- public String getTableName() {
- return tableName;
- }
- public void setTableName(String tableName) {
- this.tableName = tableName;
- }
- @Override
- public String toString() {
- return "ChartConfig{" +
- "chartId=" + chartId +
- ", chartName='" + chartName + '\'' +
- ", tableName='" + tableName + '\'' +
- ", chartType='" + chartType + '\'' +
- ", DataId=" + DataId +
- ", groupBy='" + groupBy + '\'' +
- ", Subsections='" + Subsections + '\'' +
- ", chartConfig='" + chartConfig + '\'' +
- ", createBy='" + createBy + '\'' +
- ", accessAuthority='" + accessAuthority + '\'' +
- ", updateAuthority='" + updateAuthority + '\'' +
- ", describes='" + describes + '\'' +
- ", style=" + style +
- ", filters='" + filters + '\'' +
- ", createDate='" + createDate + '\'' +
- ", updateDate='" + updateDate + '\'' +
- '}';
- }
- }
|