123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.yihu.ehr.framework.model;
- import java.util.List;
- /**
- * 返回字典对象
- * Created by chenweida on 2016/1/13.
- */
- public class DictionaryResult extends Result {
- private String name;
- private List<DictItem> detailModelList;
- public DictionaryResult()
- {}
- public DictionaryResult(String name)
- {
- this.name=name;
- }
- public List<DictItem> getDetailModelList() {
- return detailModelList;
- }
- public void setDetailModelList(List<DictItem> detailModelList) {
- this.detailModelList = detailModelList;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- }
|