From 7a21fb01d0db6b5c1df421b9d858ccec644652c6 Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Mon, 30 Jun 2025 11:10:43 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=AD=9B=E9=80=89=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ycwl/basic/model/pc/price/req/PriceConfigListReq.java | 1 + src/main/resources/mapper/PriceConfigMapper.xml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/src/main/java/com/ycwl/basic/model/pc/price/req/PriceConfigListReq.java b/src/main/java/com/ycwl/basic/model/pc/price/req/PriceConfigListReq.java index 2108aa5..60e24e7 100644 --- a/src/main/java/com/ycwl/basic/model/pc/price/req/PriceConfigListReq.java +++ b/src/main/java/com/ycwl/basic/model/pc/price/req/PriceConfigListReq.java @@ -7,4 +7,5 @@ public class PriceConfigListReq { private Long scenicId; private Integer type; private Long goodsId; + private Integer status; } \ No newline at end of file diff --git a/src/main/resources/mapper/PriceConfigMapper.xml b/src/main/resources/mapper/PriceConfigMapper.xml index 06c0eab..712c9ee 100644 --- a/src/main/resources/mapper/PriceConfigMapper.xml +++ b/src/main/resources/mapper/PriceConfigMapper.xml @@ -52,6 +52,9 @@ and p.goods_ids like concat('%', #{req.goodsId}, '%') + + and p.status = #{req.status} +