/** * 取得城区下拉列表 * * @return * @throws Exception */ public String getZoneDDL() throws Exception { return StrutsUtil.renderJSON(systemService.getZoneDDL(cityId)); }
/** * 取得城市 list * * @return * @throws Exception */ public List<City> getCityList() throws Exception { return systemService.getCityListByProvince(Long.valueOf("1")); }
public String list() throws Exception { pageInfo = systemService.getZonePage(pageInfo, cityId); return SUCCESS; }
public String delete() throws Exception { systemService.deleteZone(zoneId); return list(); }
public String save() throws Exception { zone = systemService.saveZone(zone, cityId); return list(); }
protected void prepareModel() throws Exception { zone = systemService.prepareZone(zone, zoneId, cityId); }