From fb1a86f0e0b09d7288ee4302c7fa0869c066e5fd Mon Sep 17 00:00:00 2001 From: cst61 Date: Sun, 17 May 2026 13:59:16 +0800 Subject: [PATCH] =?UTF-8?q?=20=20=E8=AE=A2=E5=8D=95=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=89=8B=E6=9C=BA=E5=8F=B7=E5=92=8C=E6=98=B5?= =?UTF-8?q?=E7=A7=B0=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/rj/controller/LbOrderRowController.java | 12 +++++++++++- src/main/java/com/rj/service/ILbOrderRowService.java | 1 + .../com/rj/service/impl/LbOrderRowServiceImpl.java | 6 ++++++ 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/rj/controller/LbOrderRowController.java b/src/main/java/com/rj/controller/LbOrderRowController.java index 7799b99..ded0743 100644 --- a/src/main/java/com/rj/controller/LbOrderRowController.java +++ b/src/main/java/com/rj/controller/LbOrderRowController.java @@ -65,13 +65,23 @@ public class LbOrderRowController { @RequestParam(required = false) String isResell, @Parameter(description = "数据类型") @RequestParam(required = false) String dataType, @RequestParam(required = false) String orderSn, + @Parameter(description = "电话") @RequestParam(required = false) String phone, @RequestParam(required = false) Long buyerId, @RequestParam(required = false) Long sellerId, @RequestParam(required = false) Integer status, @RequestParam(required = false) Long merchandiseId) { Map result = lbOrderRowService.pageQuery( - current, size, isResell, dataType, orderSn, buyerId, sellerId, status, merchandiseId); + current, + size, + isResell, + dataType, + orderSn, + phone, + buyerId, + sellerId, + status, + merchandiseId); Boolean success = (Boolean) result.get("success"); if (success != null && success) { return ResponseEntity.ok(result); diff --git a/src/main/java/com/rj/service/ILbOrderRowService.java b/src/main/java/com/rj/service/ILbOrderRowService.java index 81a89f7..72416e6 100644 --- a/src/main/java/com/rj/service/ILbOrderRowService.java +++ b/src/main/java/com/rj/service/ILbOrderRowService.java @@ -19,6 +19,7 @@ public interface ILbOrderRowService extends IService { String isResell, String dataType, String orderSn, + String phone, Long buyerId, Long sellerId, Integer status, diff --git a/src/main/java/com/rj/service/impl/LbOrderRowServiceImpl.java b/src/main/java/com/rj/service/impl/LbOrderRowServiceImpl.java index e61459b..5d0f6e5 100644 --- a/src/main/java/com/rj/service/impl/LbOrderRowServiceImpl.java +++ b/src/main/java/com/rj/service/impl/LbOrderRowServiceImpl.java @@ -163,6 +163,7 @@ public class LbOrderRowServiceImpl extends ServiceImpl