| | |
| | | public R addNotice(@RequestBody SysUserNoticeVO sysUserNoticeVO){ |
| | | return userService.addNotice(sysUserNoticeVO); |
| | | } |
| | | |
| | | /** |
| | | * 修改用户的党员状态 |
| | | * @param idCard 身份证号 |
| | | * @return 修改结果 |
| | | */ |
| | | @PostMapping("updateuserispartymember") |
| | | public R updateUserIsPartymember(@RequestParam("idCard")String idCard){ |
| | | return userService.updateUserIsPartymember(idCard); |
| | | } |
| | | |
| | | /** |
| | | * 获取各种协议 |
| | | * @param type 1居民端app协议 2网格员端app协议 3商家端app协议 4隐私政策 |
| | | * @return 协议内容 |
| | | */ |
| | | @PostMapping("agreement") |
| | | public R agreement(@RequestParam("type")Integer type){ |
| | | return userService.agreement(type); |
| | | } |
| | | |
| | | } |