123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- package com.planarChart.vo;
- import java.util.Map;
- public class QueryPlanarVo{
- private String condition; // 查询条件
- private String xAxis; // 一维查询属性
- private String yAxis; // 二维查询属性
- private String type; // 查询类型
- private String classid; // classid
- private Map<String, String> color; // 饼图二维颜色
- private Map<String, String> xConstant; // 存放一维查询属性中文与代码
- private Map<String, String> yConstant; // 存放二维查询属性中文与代码
- public String getCondition() {
- return condition;
- }
- public void setCondition(String condition) {
- this.condition = condition;
- }
- public String getxAxis() {
- return xAxis;
- }
- public void setxAxis(String xAxis) {
- this.xAxis = xAxis;
- }
- public String getyAxis() {
- return yAxis;
- }
- public void setyAxis(String yAxis) {
- this.yAxis = yAxis;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getClassid() {
- return classid;
- }
- public void setClassid(String classid) {
- this.classid = classid;
- }
- public Map<String, String> getxConstant() {
- return xConstant;
- }
- public void setxConstant(Map<String, String> xConstant) {
- this.xConstant = xConstant;
- }
- public Map<String, String> getyConstant() {
- return yConstant;
- }
- public void setyConstant(Map<String, String> yConstant) {
- this.yConstant = yConstant;
- }
- public Map<String, String> getColor() {
- return color;
- }
- public void setColor(Map<String, String> color) {
- this.color = color;
- }
- }
|