| | |
| | | */ |
| | | @PostMapping("updateuserispartymember") |
| | | R updateUserIsPartymember(@RequestParam("idCard")String idCard); |
| | | |
| | | /** |
| | | * 获取角色的权限配置列表 |
| | | * @param roleId 角色id |
| | | * @return 菜单列表 |
| | | */ |
| | | @PostMapping("/role/listmenubackstagebyrole") |
| | | R listMenuBackstageByRole(@RequestParam("roleId") Long roleId); |
| | | |
| | | /** |
| | | * 获取各种协议 |
| | | * @param type 1居民端app协议 2网格员端app协议 3商家端app协议 4隐私政策 |
| | | * @return 协议内容 |
| | | */ |
| | | @PostMapping("agreement") |
| | | R agreement(@RequestParam("type")Integer type); |
| | | |
| | | /** |
| | | * 维护用户最后登录时间 |
| | | * @param userId 用户主键 |
| | | * @return 维护结果 |
| | | */ |
| | | @PostMapping("putuserlastlogintime") |
| | | R putUserLastLoginTime(@RequestParam("userId")Long userId); |
| | | } |