/** * 查询业务区参数 * * @param cycle * @throws Exception * @author:chenzg * @date:2010-5-17 */ public void queryAreas(IRequestCycle cycle) throws Exception { PageData pd = this.getPageData(); IData params = pd.getData(); IDataset areas = paramsBean.queryAreas(pd, params, null); if (areas != null && areas.size() == 1) { this.setInfo(areas.getData(0)); } else { common.error("获取业务区参数信息失败!"); } }