Compare commits

..

2 Commits

Author SHA256 Message Date
PC
3559b0200a Merge remote-tracking branch 'origin/main' 2026-02-09 16:29:27 +08:00
PC
e8df334c4d 分页查询 2026-02-09 16:29:21 +08:00

View File

@ -75,7 +75,7 @@ public class EbikeBikeQrController {
public JsonResult<?> page(PageParam pageParam, String bikeQrCode) {
QueryWrapper queryWrapper = QueryWrapper.create()
.where(EBIKE_BIKE_QR.BIKE_QR_CODE.like(bikeQrCode, StringUtil.hasText(bikeQrCode)))
.orderBy(EBIKE_BIKE_QR.CREATED_AT,Boolean.TRUE)
.orderBy(EBIKE_BIKE_QR.BIKE_QR_CODE,Boolean.TRUE)
.orderBy(EBIKE_BIKE_QR.CREATED_AT,Boolean.FALSE);
Page<EbikeBikeQr> page = ebikeBikeQrService.page(pageParam.getPage(), queryWrapper);
return JsonResult.success(page);