|
@@ -103,7 +103,7 @@ public class BackParkingPayController {
|
|
|
@ApiOperation(value = "列表")
|
|
|
@RequestMapping(value = "pageList", method = RequestMethod.POST)
|
|
|
public MessageResult<Map> pageList(
|
|
|
- String carNum, String payTimeRange,
|
|
|
+ String carNum, String payTimeRange, Integer payStatus,
|
|
|
@RequestParam(value = "pageIndex", defaultValue = "1") int pageIndex,
|
|
|
@RequestParam(value = "pageSize", defaultValue = "20") int pageSize,
|
|
|
@RequestAttribute String subject) {
|
|
@@ -119,6 +119,8 @@ public class BackParkingPayController {
|
|
|
List<Sort> sortList = new ArrayList<>();
|
|
|
sortList.add(new Sort("a.create_time", "desc"));
|
|
|
|
|
|
+ searchParams.put("payStatus", payStatus);
|
|
|
+
|
|
|
if (StringUtils.isNotEmpty(carNum)) {
|
|
|
searchParams.put("carNum", "%" + carNum + "%");
|
|
|
}
|