| | |
| | | //排序方式 |
| | | String orderBy = orderByResult + " " + orderBySeq; |
| | | |
| | | PageHelper.startPage(baseConditionVO.getPageNo(), baseConditionVO.getPageSize(), orderBy); |
| | | if (baseConditionVO != null) { |
| | | PageHelper.startPage(baseConditionVO.getPageNo(), baseConditionVO.getPageSize(), orderBy); |
| | | } |
| | | List<Client> clientList = clientService.list(wrapper); |
| | | |
| | | List<ClientDto> clientDtoList = new ArrayList<>(); |
| | |
| | | StoreOperationRecordsUtils.storeOperationLoginData(client.getId(), client.getClientName(), "用户登录", content); |
| | | return ResponseUtil.success(authInfo); |
| | | } |
| | | |
| | | @AnonymousAccess |
| | | @GetMapping("/getTokenByKey") |
| | | public ResponseVO<Object> getLonginKey(@RequestParam(required = false, value = "keyValue") String keyValue) { |
| | | |
| | | return ResponseUtil.success(clientService.creatKeyByLogin(keyValue)); |
| | | } |
| | | } |