Compare commits

..

No commits in common. "3559b0200a2da6a91f773298ec8a32b228cd67b1826eab521b49b1853de09a0f" and "b53cb31d91d8e24629f8d78a1571059d9bac80fcb077b6d375f613c8a2e780a9" have entirely different histories.

View File

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