| 12345678910111213141516171819202122232425262728 |
- package com.goafanti.admin.bo;
- public class AdminLocationBo {
- private Integer province;
-
- private Integer city;
- public Integer getProvince() {
- return province;
- }
- public void setProvince(Integer province) {
- this.province = province;
- }
- public Integer getCity() {
- return city;
- }
- public void setCity(Integer city) {
- this.city = city;
- }
-
-
- }
|