package com.platform.entities; public class RegionalismEntity { private String code; private String cityName; private String districtName; /** * @return the code */ public String getCode() { return code; } /** * @param code the code to set */ public void setCode(String code) { this.code = code; } /** * @return the cityName */ public String getCityName() { return cityName; } /** * @param cityName the cityName to set */ public void setCityName(String cityName) { this.cityName = cityName; } /** * @return the districtName */ public String getDistrictName() { return districtName; } /** * @param districtName the districtName to set */ public void setDistrictName(String districtName) { this.districtName = districtName; } }