| | |
| | | |
| | | @GetMapping("/NeedTask/getNeedTaskList") |
| | | public R getNeedTaskList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageNum") int pageSize, |
| | | @RequestParam(value = "unitId", required = false) String unitId); |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "unitId", required = false) String unitId, |
| | | @RequestParam(value = "kind", required = false) String kind, |
| | | @RequestParam(value = "status", required = false) String status); |
| | | |
| | | @GetMapping("/NeedTask/getNeedTaskDetails") |
| | | public R getNeedTaskDetails(@RequestParam("id") String id); |
| | |
| | | public R timedNewFightNeedProblemInventoryHandler(); |
| | | |
| | | |
| | | //定时任务 社区组织共建 定时更新项目进度 |
| | | @PostMapping("/NewFightCommunity/taskTimed/getListTime") |
| | | public R taskTimedGetListTime(); |
| | | |
| | | |
| | | /****************************************************************************************************************** |
| | | * |
| | | * 街道大屏 |
| | | * |
| | | *****************************************************************************************************************/ |
| | | |
| | | |
| | | @GetMapping("/StreetBigScreen/getCommunityId") |
| | | public R getCommunityId(@RequestParam("streetId") String streetId); |
| | | |
| | | |
| | | /** |
| | | * 获取核心指标数据 |
| | | * @param streetId |
| | | * @return |
| | | */ |
| | | @GetMapping("/StreetBigScreen/getCoreData") |
| | | public R getCoreData(@RequestParam(value = "streetId", required = false) String streetId, |
| | | @RequestParam(value = "communityId", required = false)String communityId, |
| | | @RequestParam(value = "type", required = false)String type, |
| | | @RequestParam(value = "starTime", required = false)String starTime, |
| | | @RequestParam(value = "endTime", required = false)String endTime); |
| | | |
| | | |
| | | /** |
| | | * 获取三务三资数据 |
| | | * @param streetId |
| | | * @param communityId |
| | | * @param type |
| | | * @param starTime |
| | | * @param endTime |
| | | * @return |
| | | */ |
| | | @GetMapping("/StreetBigScreen/getThreeNum") |
| | | public R getThreeNum(@RequestParam(value = "streetId", required = false) String streetId, |
| | | @RequestParam(value = "communityId", required = false)String communityId, |
| | | @RequestParam(value = "type", required = false)String type, |
| | | @RequestParam(value = "starTime", required = false)String starTime, |
| | | @RequestParam(value = "endTime", required = false)String endTime); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 双报到双服务 |
| | | * @param streetId |
| | | * @param communityId |
| | | * @param type |
| | | * @param starTime |
| | | * @param endTime |
| | | * @return |
| | | */ |
| | | @GetMapping("/StreetBigScreen/getDoubleRegistration") |
| | | public R getDoubleRegistration(@RequestParam(value = "streetId", required = false) String streetId, |
| | | @RequestParam(value = "communityId", required = false)String communityId, |
| | | @RequestParam(value = "type", required = false)String type, |
| | | @RequestParam(value = "starTime", required = false)String starTime, |
| | | @RequestParam(value = "endTime", required = false)String endTime); |
| | | |
| | | /** |
| | | * 随手拍 微心愿 |
| | | * @param streetId |
| | | * @param communityId |
| | | * @param type |
| | | * @param starTime |
| | | * @param endTime |
| | | * @return |
| | | */ |
| | | @GetMapping("/StreetBigScreen/getPhotoMicroWish") |
| | | public R getPhotoMicroWish(@RequestParam(value = "streetId", required = false) String streetId, |
| | | @RequestParam(value = "communityId", required = false)String communityId, |
| | | @RequestParam(value = "type", required = false)String type, |
| | | @RequestParam(value = "starTime", required = false)String starTime, |
| | | @RequestParam(value = "endTime", required = false)String endTime); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 社区活动、议事投票、问卷调查、社区动态发布趋势 |
| | | * @param streetId |
| | | * @param communityId |
| | | * @param type |
| | | * @param starTime |
| | | * @param endTime |
| | | * @return |
| | | */ |
| | | @GetMapping("/StreetBigScreen/getAllData") |
| | | public R getAllData(@RequestParam(value = "streetId", required = false) String streetId, |
| | | @RequestParam(value = "communityId", required = false)String communityId, |
| | | @RequestParam(value = "type", required = false)String type, |
| | | @RequestParam(value = "starTime", required = false)String starTime, |
| | | @RequestParam(value = "endTime", required = false)String endTime); |
| | | |
| | | |
| | | /** |
| | | * 新双争双评需求问题清单 签退时间更新 |
| | | * @return |
| | | */ |
| | | @GetMapping("/NeedClaim/upNewFightNeedProblemClaimEndTime") |
| | | public R upNewFightNeedProblemClaimEndTime(); |
| | | |
| | | } |