huanghongfa
2021-09-16 f018fc15c06943e157839c44064649a4bac82d50
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
@@ -3652,6 +3652,7 @@
     * @author txb
     * @date 2021/9/10 16:03
     */
    @PutMapping("/elders/pensionAuthRecords/authType/{type}")
    R setPensionAuthType(@RequestParam("communityId") Long communityId, @RequestParam("type") Integer type);
    /**
@@ -5576,4 +5577,21 @@
     */
    @GetMapping("/reserve/list")
    R reserveListApplets(@RequestParam("communityId") Long communityId);
    /**
     * 查询社区高龄认证方式(1.视频认证 2.人脸核验)
     * @param eldersAuthTypeQueryDTO    请求参数
     * @return  社区高龄认证方式(1.视频认证 2.人脸核验)
     */
    @PostMapping("/elders/authtype")
    R communityEldersAuthType(@RequestBody EldersAuthTypeQueryDTO eldersAuthTypeQueryDTO);
    /**
     * 设置当前社区高龄认证方式:核验类型(1.视频认证 2.人脸核验)
     * @param    communityId   社区id
     * @param    type         检验类型
     * @return    R  设置结果
     */
    @PutMapping("/elders/authType/{type}")
    R setEldersAuthType(@RequestParam("communityId") Long communityId, @RequestParam("type") Integer type);
}