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 color; // 饼图二维颜色 private Map xConstant; // 存放一维查询属性中文与代码 private Map 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 getxConstant() { return xConstant; } public void setxConstant(Map xConstant) { this.xConstant = xConstant; } public Map getyConstant() { return yConstant; } public void setyConstant(Map yConstant) { this.yConstant = yConstant; } public Map getColor() { return color; } public void setColor(Map color) { this.color = color; } }