DictionaryResult.java 710 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.yihu.ehr.framework.model;
  2. import java.util.List;
  3. /**
  4. * 返回字典对象
  5. * Created by chenweida on 2016/1/13.
  6. */
  7. public class DictionaryResult extends Result {
  8. private String name;
  9. private List<DictItem> detailModelList;
  10. public DictionaryResult()
  11. {}
  12. public DictionaryResult(String name)
  13. {
  14. this.name=name;
  15. }
  16. public List<DictItem> getDetailModelList() {
  17. return detailModelList;
  18. }
  19. public void setDetailModelList(List<DictItem> detailModelList) {
  20. this.detailModelList = detailModelList;
  21. }
  22. public String getName() {
  23. return name;
  24. }
  25. public void setName(String name) {
  26. this.name = name;
  27. }
  28. }