d7b1eaa72c44e3dbb8b7ec27d03d434c1c0aa0c2.svn-base 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package com.planarChart.vo;
  2. import java.util.Map;
  3. public class QueryPlanarVo{
  4. private String condition; // 查询条件
  5. private String xAxis; // 一维查询属性
  6. private String yAxis; // 二维查询属性
  7. private String type; // 查询类型
  8. private String classid; // classid
  9. private Map<String, String> color; // 饼图二维颜色
  10. private Map<String, String> xConstant; // 存放一维查询属性中文与代码
  11. private Map<String, String> yConstant; // 存放二维查询属性中文与代码
  12. public String getCondition() {
  13. return condition;
  14. }
  15. public void setCondition(String condition) {
  16. this.condition = condition;
  17. }
  18. public String getxAxis() {
  19. return xAxis;
  20. }
  21. public void setxAxis(String xAxis) {
  22. this.xAxis = xAxis;
  23. }
  24. public String getyAxis() {
  25. return yAxis;
  26. }
  27. public void setyAxis(String yAxis) {
  28. this.yAxis = yAxis;
  29. }
  30. public String getType() {
  31. return type;
  32. }
  33. public void setType(String type) {
  34. this.type = type;
  35. }
  36. public String getClassid() {
  37. return classid;
  38. }
  39. public void setClassid(String classid) {
  40. this.classid = classid;
  41. }
  42. public Map<String, String> getxConstant() {
  43. return xConstant;
  44. }
  45. public void setxConstant(Map<String, String> xConstant) {
  46. this.xConstant = xConstant;
  47. }
  48. public Map<String, String> getyConstant() {
  49. return yConstant;
  50. }
  51. public void setyConstant(Map<String, String> yConstant) {
  52. this.yConstant = yConstant;
  53. }
  54. public Map<String, String> getColor() {
  55. return color;
  56. }
  57. public void setColor(Map<String, String> color) {
  58. this.color = color;
  59. }
  60. }