12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- package com.yihu.ehr.agModel.geogrephy;
- import java.util.List;
- /**
- * Created by AndyCai on 2016/2/16.
- */
- public class AllGeographyDictModel {
- private int id; //序号
- private String abbreviation; //简称
- private int level; //级别
- private String name; //名字
- private int pid; //上级序号
- private String postCode; //邮政编码
- private List<GeographyDictModel> geographyDictModelList;
- public AllGeographyDictModel(){
- }
- public int getId() {
- return id;
- }
- public void setId(int id) {
- this.id = id;
- }
- public String getAbbreviation() {
- return abbreviation;
- }
- public void setAbbreviation(String abbreviation) {
- this.abbreviation = abbreviation;
- }
- public int getLevel() {
- return level;
- }
- public void setLevel(int level) {
- this.level = level;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public int getPid() {
- return pid;
- }
- public void setPid(int pid) {
- this.pid = pid;
- }
- public String getPostCode() {
- return postCode;
- }
- public void setPostCode(String postCode) {
- this.postCode = postCode;
- }
- public List<GeographyDictModel> getGeographyDictModelList() {
- return geographyDictModelList;
- }
- public void setGeographyDictModelList(List<GeographyDictModel> geographyDictModelList) {
- this.geographyDictModelList = geographyDictModelList;
- }
- }
|