From ddd049fd5e732828bc5b739d9cc270ac707d1dbc Mon Sep 17 00:00:00 2001 From: 陶杰 <1378534974@qq.com> Date: 星期二, 10 九月 2024 16:23:24 +0800 Subject: [PATCH] 1.优惠券增加数量控制为99999999 --- src/main/resources/mapper/point/CustomerPointMapper.xml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/main/resources/mapper/point/CustomerPointMapper.xml b/src/main/resources/mapper/point/CustomerPointMapper.xml index b89823a..91c18e8 100644 --- a/src/main/resources/mapper/point/CustomerPointMapper.xml +++ b/src/main/resources/mapper/point/CustomerPointMapper.xml @@ -26,7 +26,7 @@ <if test="dto.customerId!= null and dto.customerId != 0"> and t.customer_id = #{dto.customerId} </if> - <if test="dto.userId!= null and dto.userId != 0"> + <if test="dto.userId!= null and dto.userId != ''"> and t.user_id = #{dto.userId} </if> <if test="dto.recordDateStart!=null "> -- Gitblit v1.9.3