| | |
| | | R pagePopulation(ComMngPopulationDTO comMngPopulationVO); |
| | | |
| | | /** |
| | | * 根据身份证查询实有人口信息 |
| | | */ |
| | | @GetMapping("/common/data/population/selectByIdCard") |
| | | R selectByIdCard(@RequestParam("idCard") String idCard); |
| | | |
| | | /** |
| | | * 根据id实有人口详细信息 |
| | | * |
| | | * @param populationId |
| | |
| | | */ |
| | | @PostMapping("/elders/authRecords/statistic/export") |
| | | R exportElderAuthRecordsStatistic(@RequestBody PageElderAuthStatisticDTO pageElderAuthRecordsDTO); |
| | | |
| | | /** |
| | | * 导出高龄认证记录 exportElderAuthRecords 导出高龄认证记录 |
| | | * @param pageElderAuthRecordsDTO 查询参数 |
| | | * @return R 查询结果 |
| | | * @date 2021/9/02 11:03 |
| | | */ |
| | | @PostMapping("/elders/authRecords/export") |
| | | R exportElderAuthRecords(@RequestBody PageElderAuthRecordsDTO pageElderAuthRecordsDTO); |
| | | |
| | | /** |
| | | * 分页查询养老金人员认证记录 pagePensionAuthRecords 分页查询养老金人员认证记录 |
| | |
| | | */ |
| | | @GetMapping("/activity/my-evaluate") |
| | | R listMyActivityEvaluate(@RequestParam("userId") Long userId, @RequestParam("activityId") Long activityId); |
| | | |
| | | /** |
| | | * 分页查询居家隔离统计 |
| | | * @param detailedAdminDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/reserve/admin/register/homeQuarantine/page") |
| | | R pageRegisterHomeQuarantine(PageReserveRegisterDetailedAdminDTO detailedAdminDTO); |
| | | |
| | | /** |
| | | * 分页查询物业宣传 |
| | | * @param pageComPropertyPublicityDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/property/publicity/page") |
| | | R pageComPropertyPublicity(@RequestBody PageComPropertyPublicityDTO pageComPropertyPublicityDTO); |
| | | |
| | | /** |
| | | * 新增物业宣传 |
| | | * @param comPropertyPublicityDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/property/publicity/add") |
| | | R addComPropertyPublicity(@RequestBody ComPropertyPublicityDTO comPropertyPublicityDTO); |
| | | |
| | | /** |
| | | * 修改物业宣传 |
| | | * @param comPropertyPublicityDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/property/publicity/update") |
| | | R updateComPropertyPublicity(@RequestBody ComPropertyPublicityDTO comPropertyPublicityDTO); |
| | | |
| | | /** |
| | | * 查看物业宣传信息 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("/property/publicity/get") |
| | | R getComPropertyPublicity(@RequestParam("id") Long id); |
| | | |
| | | /** |
| | | * 删除物业宣传 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @DeleteMapping("/property/publicity/delete") |
| | | R deleteComPropertyPublicity(@RequestParam("id") Long id); |
| | | |
| | | /** |
| | | * 物业公司列表 |
| | | * |
| | | * @param villageId |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | @GetMapping("/property/publicity/list/property") |
| | | R listProperty(@RequestParam(value = "villageId", required = false) Long villageId, @RequestParam("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 小区列表 |
| | | * @param propertyId |
| | | * @param communityId |
| | | * @return |
| | | */ |
| | | @GetMapping("/property/publicity/list/village") |
| | | R listVillage(@RequestParam(value = "propertyId",required = false) Long propertyId, @RequestParam("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 分页查询物业宣传-小程序 |
| | | * @param pageComPropertyPublicityDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/property/publicity/page/applet") |
| | | R pageComPropertyPublicityApplet(@RequestBody PageComPropertyPublicityDTO pageComPropertyPublicityDTO); |
| | | |
| | | /** |
| | | * 增加物业宣传浏览量 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("/property/publicity/incr-view") |
| | | R incrPropertyPublicityView(@RequestParam("id") Long id); |
| | | } |