From 0c570abeb48ab0afe44a92be8247070de20d0aa2 Mon Sep 17 00:00:00 2001 From: Cui Zhi Feng <7426394+wuxixiaocui@user.noreply.gitee.com> Date: 星期三, 11 九月 2024 14:30:41 +0800 Subject: [PATCH] 质检 小程序端待审核提交显示提交的数据,如果后台拒绝了,数量发生改变 --- src/main/resources/mapper/point/CustomerPointMapper.xml | 16 +++++++++++----- 1 files changed, 11 insertions(+), 5 deletions(-) diff --git a/src/main/resources/mapper/point/CustomerPointMapper.xml b/src/main/resources/mapper/point/CustomerPointMapper.xml index 91c18e8..9514779 100644 --- a/src/main/resources/mapper/point/CustomerPointMapper.xml +++ b/src/main/resources/mapper/point/CustomerPointMapper.xml @@ -3,15 +3,21 @@ <mapper namespace="com.mzl.flower.mapper.point.CustomerPointMapper"> <select id="queryPage" resultType="com.mzl.flower.dto.response.point.CustomerPointDTO"> SELECT - p.*, c.`name` as customerName, + c.user_id as userId, + p.id as id, + c.id as customerId, + IFNULL(p.total_point, 0) as totalPoint, + IFNULL(p.used_point, 0) as usedPoint, + IFNULL(p.expired_point, 0) as expiredPoint, + IFNULL(p.deduction_point, 0) as deductionPoint, t.tel as customerTel FROM - t_customer_point p - LEFT JOIN t_customer_info c ON c.id = p.customer_id - LEFT JOIN t_user t on p.user_id = t.id + t_customer_info c + LEFT JOIN t_customer_point p ON c.id = p.customer_id + LEFT JOIN t_user t on c.user_id = t.id WHERE - p.deleted = 0 + c.deleted = 0 <if test="dto.customerName!= null and dto.customerName != ''"> AND c.`name` LIKE CONCAT('%',#{dto.customerName},'%') </if> -- Gitblit v1.9.3