| | |
| | | return R.ok(); |
| | | } |
| | | @ApiOperation(value = "单位管理删除", tags = {"用户管理-单位管理"}) |
| | | @PostMapping(value = "/unit/delete/{id}") |
| | | public R add(@PathVariable Integer id) { |
| | | otherClient.unitDelete(id); |
| | | @DeleteMapping(value = "/unit/delete") |
| | | public R add(@RequestParam String ids) { |
| | | String[] split = ids.split(","); |
| | | for (String s : split) { |
| | | otherClient.unitDelete(Integer.valueOf(s)); |
| | | } |
| | | return R.ok(); |
| | | |
| | | } |
| | |
| | | appUserService.updateById(appUser); |
| | | return R.ok(); |
| | | } |
| | | |
| | | |
| | | // @ApiOperation(value = "签到", tags = {"小程序-个人中心-签到"}) |
| | | // @PostMapping(value = "/user/sign") |
| | | // public R sign() { |
| | | // |
| | | // } |
| | | } |
| | | |