1234567891011121314151617181920212223242526272829303132 |
- package com.yihu.quota.model.rest;
- import java.util.List;
- /**
- * @author janseny
- * @date 2017/7/2
- */
- public class ResultModel {
- /**
- * 维度对应的字典项名称 如:维度为org时 值为 余干县人民医院 :维度为town时 值为 余干县
- */
- private List<String> cloumns;
- private Object value;
- public List<String> getCloumns() {
- return cloumns;
- }
- public void setCloumns(List<String> cloumns) {
- this.cloumns = cloumns;
- }
- public Object getValue() {
- return value;
- }
- public void setValue(Object value) {
- this.value = value;
- }
- }
|