AdminLocationBo.java 390 B

12345678910111213141516171819202122232425262728
  1. package com.goafanti.admin.bo;
  2. public class AdminLocationBo {
  3. private Integer province;
  4. private Integer city;
  5. public Integer getProvince() {
  6. return province;
  7. }
  8. public void setProvince(Integer province) {
  9. this.province = province;
  10. }
  11. public Integer getCity() {
  12. return city;
  13. }
  14. public void setCity(Integer city) {
  15. this.city = city;
  16. }
  17. }