| | |
| | | .or(w2 -> w2.like(Client::getLinkMan, keyword)); |
| | | } |
| | | //排序字段 |
| | | String orderByResult = OrderByEnums.CLIENT_CREATE_TIME.getCode(); |
| | | String orderByResult = "id"; |
| | | //正序、倒叙 |
| | | String orderBySeq = OrderByEnums.ASC.getCode(); |
| | | if (order != null) { |
| | |
| | | //排序方式 |
| | | 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<>(); |