SystemDictEntryModel.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package com.yihu.ehr.agModel.dict;
  2. import com.yihu.ehr.agModel.app.AppModel;
  3. import java.util.List;
  4. /**
  5. * Created by wq on 2016/2/19.
  6. */
  7. public class SystemDictEntryModel {
  8. private long dictId;
  9. private String code;
  10. private String value;
  11. private Integer sort;
  12. private String catalog;
  13. private String phoneticCode;
  14. private List<AppModel> children;
  15. public long getDictId() {
  16. return dictId;
  17. }
  18. public void setDictId(long dictId) {
  19. this.dictId = dictId;
  20. }
  21. public String getCode() {
  22. return code;
  23. }
  24. public void setCode(String code) {
  25. this.code = code;
  26. }
  27. public String getValue() {
  28. return value;
  29. }
  30. public void setValue(String value) {
  31. this.value = value;
  32. }
  33. public Integer getSort() {
  34. return sort;
  35. }
  36. public void setSort(Integer sort) {
  37. this.sort = sort;
  38. }
  39. public String getCatalog() {
  40. return catalog;
  41. }
  42. public void setCatalog(String catalog) {
  43. this.catalog = catalog;
  44. }
  45. public String getPhoneticCode() {
  46. return phoneticCode;
  47. }
  48. public void setPhoneticCode(String phoneticCode) {
  49. this.phoneticCode = phoneticCode;
  50. }
  51. public List<AppModel> getChildren() {
  52. return children;
  53. }
  54. public void setChildren(List<AppModel> children) {
  55. this.children = children;
  56. }
  57. }