| | |
| | | * @return |
| | | */ |
| | | @PostMapping("listadvertisement") |
| | | R listAdvertisement(); |
| | | R listAdvertisement(@RequestParam("type") Integer type); |
| | | |
| | | /** |
| | | * 新增广告 |
| | |
| | | @PostMapping("/comActAcidRecord/export") |
| | | R exportComActAcidRecord(@RequestBody ComActAcidRecordDTO comActAcidRecordDTO); |
| | | |
| | | @GetMapping("/comActAcidRecord/checkCommit") |
| | | R checkCommit(@RequestParam(value = "userId",required = false)Long userId); |
| | | |
| | | |
| | | /** |
| | | * 5项常规统计 |
| | |
| | | * 小程序获取可选择专家列表 |
| | | * */ |
| | | @GetMapping("/sanshuo/expert/appletsList") |
| | | R expertAppList(); |
| | | R expertAppList(@RequestParam (value = "type",required = false)Integer type,@RequestParam(value = "id",required = false)Long id); |
| | | |
| | | /** |
| | | * 获取专家详情 |
| | |
| | | * 专家风采列表 |
| | | * */ |
| | | @GetMapping("/sanshuo/expert/expertShowList") |
| | | R expertShowList(Integer level, Long id); |
| | | R expertShowList(@RequestParam(value = "level",required = false)Integer level,@RequestParam(value = "id",required = false)Long id); |
| | | |
| | | /** |
| | | * 修改街道信息 |
| | | * */ |
| | | @PostMapping("/updateStreet") |
| | | R updateStreet(@RequestBody ComStreetVO comStreetVO); |
| | | |
| | | /** |
| | | * 删除街道 |
| | | * */ |
| | | @GetMapping("/removeStreet") |
| | | R removeStreet(@RequestParam(value = "id",required = false)Long id); |
| | | |
| | | /*** |
| | | * 删除社区 |
| | | * */ |
| | | @GetMapping("/removeCommunity") |
| | | R removeCommunity(@RequestParam(value = "id",required = false)Long id); |
| | | |
| | | @PostMapping("/repassCommunity") |
| | | R repassCommunity(@RequestBody ComActVO comActVO); |
| | | |
| | | @PostMapping("/repassStreet") |
| | | R repassStreet(@RequestBody ComStreetVO comActVO); |
| | | |
| | | /** |
| | | * 是否有绑定手机号码的专家账号 |
| | | * */ |
| | | @GetMapping("/sanshuo/expert/checkExpert") |
| | | R isExpert(@RequestParam(value = "number",required = false) String number); |
| | | } |