|
@@ -380,6 +380,9 @@ public class AppBigDataController extends VisuBaseService {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 根据重点工程id获取进度列表
|
|
|
|
+ */
|
|
@ApiOperation(value = "根据重点工程id获取进度列表", notes = "根据重点工程id获取进度列表")
|
|
@ApiOperation(value = "根据重点工程id获取进度列表", notes = "根据重点工程id获取进度列表")
|
|
@GetMapping("/appGetScheduleByTime")
|
|
@GetMapping("/appGetScheduleByTime")
|
|
public AjaxResult appGetScheduleByTime(KeyProjectsScheduleBO bo) throws Exception {
|
|
public AjaxResult appGetScheduleByTime(KeyProjectsScheduleBO bo) throws Exception {
|
|
@@ -393,7 +396,6 @@ public class AppBigDataController extends VisuBaseService {
|
|
|
|
|
|
/**
|
|
/**
|
|
* 获取重点区域
|
|
* 获取重点区域
|
|
- *
|
|
|
|
* @return
|
|
* @return
|
|
* @Version 1.0
|
|
* @Version 1.0
|
|
* @author wang_xy
|
|
* @author wang_xy
|
|
@@ -471,12 +473,22 @@ public class AppBigDataController extends VisuBaseService {
|
|
return AjaxResult.success(rets);
|
|
return AjaxResult.success(rets);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * app事件统计
|
|
|
|
+ * @param deptId
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
@ApiOperation(value = "app事件统计", notes = "app事件统计")
|
|
@ApiOperation(value = "app事件统计", notes = "app事件统计")
|
|
@GetMapping("appEventStatistics")
|
|
@GetMapping("appEventStatistics")
|
|
public AjaxResult appEventStatistics(Long deptId) {
|
|
public AjaxResult appEventStatistics(Long deptId) {
|
|
return remoteEventBaseService.appEventStatistics(deptId);
|
|
return remoteEventBaseService.appEventStatistics(deptId);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 四长统计
|
|
|
|
+ * @param deptId
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
@ApiOperation(value = "四长统计", notes = "四长统计")
|
|
@ApiOperation(value = "四长统计", notes = "四长统计")
|
|
@GetMapping("fourLengthOverview")
|
|
@GetMapping("fourLengthOverview")
|
|
public AjaxResult fourLengthOverview(Long deptId) {
|
|
public AjaxResult fourLengthOverview(Long deptId) {
|
|
@@ -485,7 +497,6 @@ public class AppBigDataController extends VisuBaseService {
|
|
|
|
|
|
/**
|
|
/**
|
|
* 四长概况点击事件
|
|
* 四长概况点击事件
|
|
- *
|
|
|
|
* @param CommandCenterBO
|
|
* @param CommandCenterBO
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
@@ -503,6 +514,11 @@ public class AppBigDataController extends VisuBaseService {
|
|
return AjaxResult.success(data);
|
|
return AjaxResult.success(data);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 手机端四长接口
|
|
|
|
+ * @param CommandCenterBO
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
@ApiOperation(value = "手机端四长接口", notes = "手机端四长接口")
|
|
@ApiOperation(value = "手机端四长接口", notes = "手机端四长接口")
|
|
@GetMapping("fourLengthOver")
|
|
@GetMapping("fourLengthOver")
|
|
public AjaxResult fourLengthOver(CommandCenterBO CommandCenterBO) {
|
|
public AjaxResult fourLengthOver(CommandCenterBO CommandCenterBO) {
|
|
@@ -510,18 +526,35 @@ public class AppBigDataController extends VisuBaseService {
|
|
return AjaxResult.success(remoteDataBaseService.fourLengthOver(CommandCenterBO.getDeptId(), CommandCenterBO.getTimeTag(), CommandCenterBO.getKeyWord()).get("data"));
|
|
return AjaxResult.success(remoteDataBaseService.fourLengthOver(CommandCenterBO.getDeptId(), CommandCenterBO.getTimeTag(), CommandCenterBO.getKeyWord()).get("data"));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 通讯录组织机构
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
@ApiOperation(value = "通讯录组织机构", notes = "通讯录组织机构")
|
|
@ApiOperation(value = "通讯录组织机构", notes = "通讯录组织机构")
|
|
@GetMapping("/getDeptList")
|
|
@GetMapping("/getDeptList")
|
|
public AjaxResult getDeptList() {
|
|
public AjaxResult getDeptList() {
|
|
return remoteSystemBaseService.getDeptList("");
|
|
return remoteSystemBaseService.getDeptList("");
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 根据部门id获取通讯录列表
|
|
|
|
+ * @param deptId
|
|
|
|
+ * @param pageNum
|
|
|
|
+ * @param pageSize
|
|
|
|
+ * @param selectParam
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
@ApiOperation(value = "根据部门id获取通讯录列表", notes = "根据部门id获取通讯录列表")
|
|
@ApiOperation(value = "根据部门id获取通讯录列表", notes = "根据部门id获取通讯录列表")
|
|
@GetMapping("/getCommunicationByDeptId")
|
|
@GetMapping("/getCommunicationByDeptId")
|
|
public AjaxResult getCommunicationByDeptId(String deptId, int pageNum, int pageSize, String selectParam) {
|
|
public AjaxResult getCommunicationByDeptId(String deptId, int pageNum, int pageSize, String selectParam) {
|
|
return remoteDataBaseService.getCommunicationByDeptId(deptId, selectParam, pageNum, pageSize);
|
|
return remoteDataBaseService.getCommunicationByDeptId(deptId, selectParam, pageNum, pageSize);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 大事迹按部门搜索
|
|
|
|
+ * @param deptId
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
@ApiOperation(value = "大事迹按部门搜索", notes = "大事迹按部门搜索")
|
|
@ApiOperation(value = "大事迹按部门搜索", notes = "大事迹按部门搜索")
|
|
@GetMapping("/greatdeedsApp")
|
|
@GetMapping("/greatdeedsApp")
|
|
public AjaxResult greatdeedsApp(Long deptId) {
|
|
public AjaxResult greatdeedsApp(Long deptId) {
|
|
@@ -529,6 +562,11 @@ public class AppBigDataController extends VisuBaseService {
|
|
return ajaxResult;
|
|
return ajaxResult;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 防火队发送短信
|
|
|
|
+ * @param visuFireSendingSMSVo
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
@ApiOperation(value = "防火队发送短信", notes = "防火队发送短信")
|
|
@ApiOperation(value = "防火队发送短信", notes = "防火队发送短信")
|
|
@PostMapping("firesendingSMSApp")
|
|
@PostMapping("firesendingSMSApp")
|
|
public AjaxResult firesendingSMSApp(@RequestBody VisuFireSendingSMSVo visuFireSendingSMSVo) {
|
|
public AjaxResult firesendingSMSApp(@RequestBody VisuFireSendingSMSVo visuFireSendingSMSVo) {
|
|
@@ -536,6 +574,11 @@ public class AppBigDataController extends VisuBaseService {
|
|
return ajaxResult;
|
|
return ajaxResult;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 防火队列表
|
|
|
|
+ * @param dataBO
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
@ApiOperation(value = "防火队列表", notes = "防火队列表")
|
|
@ApiOperation(value = "防火队列表", notes = "防火队列表")
|
|
@PostMapping("forestViewPointApp")
|
|
@PostMapping("forestViewPointApp")
|
|
public R forestViewPointApp(@RequestBody CenterdataTForestFireteam dataBO) {
|
|
public R forestViewPointApp(@RequestBody CenterdataTForestFireteam dataBO) {
|