ResultModel.java 633 B

1234567891011121314151617181920212223242526272829303132
  1. package com.yihu.quota.model.rest;
  2. import java.util.List;
  3. /**
  4. * @author janseny
  5. * @date 2017/7/2
  6. */
  7. public class ResultModel {
  8. /**
  9. * 维度对应的字典项名称 如:维度为org时 值为 余干县人民医院 :维度为town时 值为 余干县
  10. */
  11. private List<String> cloumns;
  12. private Object value;
  13. public List<String> getCloumns() {
  14. return cloumns;
  15. }
  16. public void setCloumns(List<String> cloumns) {
  17. this.cloumns = cloumns;
  18. }
  19. public Object getValue() {
  20. return value;
  21. }
  22. public void setValue(Object value) {
  23. this.value = value;
  24. }
  25. }