AllGeographyDictModel.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package com.yihu.ehr.agModel.geogrephy;
  2. import java.util.List;
  3. /**
  4. * Created by AndyCai on 2016/2/16.
  5. */
  6. public class AllGeographyDictModel {
  7. private int id; //序号
  8. private String abbreviation; //简称
  9. private int level; //级别
  10. private String name; //名字
  11. private int pid; //上级序号
  12. private String postCode; //邮政编码
  13. private List<GeographyDictModel> geographyDictModelList;
  14. public AllGeographyDictModel(){
  15. }
  16. public int getId() {
  17. return id;
  18. }
  19. public void setId(int id) {
  20. this.id = id;
  21. }
  22. public String getAbbreviation() {
  23. return abbreviation;
  24. }
  25. public void setAbbreviation(String abbreviation) {
  26. this.abbreviation = abbreviation;
  27. }
  28. public int getLevel() {
  29. return level;
  30. }
  31. public void setLevel(int level) {
  32. this.level = level;
  33. }
  34. public String getName() {
  35. return name;
  36. }
  37. public void setName(String name) {
  38. this.name = name;
  39. }
  40. public int getPid() {
  41. return pid;
  42. }
  43. public void setPid(int pid) {
  44. this.pid = pid;
  45. }
  46. public String getPostCode() {
  47. return postCode;
  48. }
  49. public void setPostCode(String postCode) {
  50. this.postCode = postCode;
  51. }
  52. public List<GeographyDictModel> getGeographyDictModelList() {
  53. return geographyDictModelList;
  54. }
  55. public void setGeographyDictModelList(List<GeographyDictModel> geographyDictModelList) {
  56. this.geographyDictModelList = geographyDictModelList;
  57. }
  58. }