背景
如何按照时间进行倒序排列,利用mapper对象进行排序见代码
@PostMapping("/list")
@ResponseBody
public AjaxResult mainList(PdpInterCallLogDTO pdpInterCallLogDTO) {
QueryWrapper queryWrapper = packageWapper(pdpInterCallLogDTO);
queryWrapper.orderByDesc("CREATE_TIME");
if (ObjectUtil.isNull(pdpInterCallLogDTO.getPageNo())) {
return AjaxResult.success(pdpInterCallLogService.list(queryWrapper));
}
return AjaxResult.success(pdpInterCallLogService.page(new Page<>(pdpInterCallLogDTO.getPageNo(), pdpInterCallLogDTO.getPageSize()), queryWrapper));
}
在Mapper添加queryWrapper.orderByDesc("CREATE_TIME");即可解决排序问题。