|
@@ -7,6 +7,7 @@ import com.ruoyi.common.core.web.domain.AjaxResult;
|
|
import com.ruoyi.common.core.web.page.TableDataInfo;
|
|
import com.ruoyi.common.core.web.page.TableDataInfo;
|
|
import com.ruoyi.system.api.domain.SysMenuEventType;
|
|
import com.ruoyi.system.api.domain.SysMenuEventType;
|
|
import com.sooka.sponest.mobile.aop.NoRepeatSubmit;
|
|
import com.sooka.sponest.mobile.aop.NoRepeatSubmit;
|
|
|
|
+import com.sooka.sponest.mobile.appbigdata.domain.bo.ImportBo;
|
|
import com.sooka.sponest.mobile.appbigdata.domain.bo.KeyProjectsScheduleBO;
|
|
import com.sooka.sponest.mobile.appbigdata.domain.bo.KeyProjectsScheduleBO;
|
|
import com.sooka.sponest.mobile.appbigdata.domain.bo.VisuForestResourceBO;
|
|
import com.sooka.sponest.mobile.appbigdata.domain.bo.VisuForestResourceBO;
|
|
import com.sooka.sponest.mobile.appbigdata.domain.vo.VisuFireSendingSMSVo;
|
|
import com.sooka.sponest.mobile.appbigdata.domain.vo.VisuFireSendingSMSVo;
|
|
@@ -419,6 +420,33 @@ public class AppBigDataController extends VisuBaseService {
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
+ * 获取重点区域
|
|
|
|
+ * 带筛选,带分页
|
|
|
|
+ * @return
|
|
|
|
+ * @Version 1.0
|
|
|
|
+ * @author wang_xy
|
|
|
|
+ * @since 2023/4/24 15:09
|
|
|
|
+ */
|
|
|
|
+ @ApiOperation(value = "获取重点区域(分页,筛选)", notes = "获取重点区域(分页,筛选)")
|
|
|
|
+ @GetMapping("getImportAreaListByParams")
|
|
|
|
+ public AjaxResult getImportAreaListByParams(ImportBo bo) {
|
|
|
|
+ return remoteDataBaseService.getImportAreaListByParams(bo.getAreaName(), bo.getProjectType(), bo.getProjectLevel(), bo.getPageNum(), bo.getPageSize());
|
|
|
|
+// for (int i = 0; i < ajax.size(); i++) {
|
|
|
|
+// Map map = ajax.get(i);
|
|
|
|
+// List<Map> areaList = (List) map.get("areaList");
|
|
|
|
+// for (int j = 0; j < areaList.size(); j++) {
|
|
|
|
+// Map area = areaList.get(j);
|
|
|
|
+// String photoId = area.containsKey(PHOTO_ID) && null != area.get(PHOTO_ID) ? area.get(PHOTO_ID).toString().replaceAll("172.18.1.32:8081", "218.27.3.115:9301") : "";
|
|
|
|
+// photoId = photoId.replaceAll("10.6.52.32:8081", "218.27.3.115:9301");
|
|
|
|
+// area.put(PHOTO_ID, photoId);
|
|
|
|
+// areaList.set(j, area);
|
|
|
|
+// }
|
|
|
|
+// ajax.set(i, map);
|
|
|
|
+// }
|
|
|
|
+// AjaxResult.success(ajax);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
* 实时关注
|
|
* 实时关注
|
|
*
|
|
*
|
|
* @return
|
|
* @return
|