From 6676f28a5a6ca65015a2b2c26e804fa998d625c8 Mon Sep 17 00:00:00 2001 From: 44323 <443237572@qq.com> Date: 星期二, 26 九月 2023 21:37:07 +0800 Subject: [PATCH] 后台代码 --- cloud-server-course/src/main/resources/mapper/CoursePackagePaymentConfigMapper.xml | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 49 insertions(+), 0 deletions(-) diff --git a/cloud-server-course/src/main/resources/mapper/CoursePackagePaymentConfigMapper.xml b/cloud-server-course/src/main/resources/mapper/CoursePackagePaymentConfigMapper.xml index 42c3b49..9ea4874 100644 --- a/cloud-server-course/src/main/resources/mapper/CoursePackagePaymentConfigMapper.xml +++ b/cloud-server-course/src/main/resources/mapper/CoursePackagePaymentConfigMapper.xml @@ -53,5 +53,54 @@ </if> </where> </select> + <select id="listAllRegister" resultType="com.dsh.course.model.RegisterOrderVO"> + select t1.id,t1.studentId,t1.payUserType,t1.payStatus,t1.payType,t1.originalPrice,t1.userCouponId,t1.payUserId,t1.giftClassHours,t1.appUserId,t1.cashPayment as money,t1.playPaiCoin, + t1.insertTime, + CONCAT(t2.province,t2.city) as provinceAndCity,t2.coursePackageTypeId,t2.storeId,t2.name as coursePackageName + from t_course_package_payment t1 + left join t_course_package t2 on t1.coursePackageId = t2.id + <where> + <if test="query.amount!=null and query.amount!= ''"> + and t1.cashPayment <= #{query.amount} + </if> + <if test="query.province!=null and query.province!= ''"> + and t2.provinceCode = #{query.province} + </if> + <if test="query.city!=null and query.city!= ''"> + and t2.cityCode = #{query.city} + </if> + <if test="query.storeId!=null and query.storeId!= ''"> + and t2.storeId = #{query.storeId} + </if> + <if test="sTime !=null and sTime!= '' and eTime !=null and eTime!= ''"> + and t1.insertTime between #{sTime} and #{eTime} + </if> + + <if test="query.userIds != null and query.userIds.size()>0"> + AND t1.appUserId IN + <foreach collection="query.userIds" separator="," item="id" open="(" close=")"> + #{id} + </foreach> + </if> + + <if test="query.studentIds != null and query.studentIds.size()>0"> + AND t1.studentId IN + <foreach collection="query.studentIds" separator="," item="id" open="(" close=")"> + #{id} + </foreach> + </if> + <if test="query.coursePackageName!=null and query.coursePackageName!= ''"> + AND t2.name LIKE concat('%',#{query.coursePackageName},'%') + </if> + <if test="query.salesName!=null and query.salesName!= ''"> + AND t1.salesName LIKE concat('%',#{query.salesName},'%') + </if> + + <if test="query.orderSource!=null and query.orderSource!= ''"> + and t1.payUserType = #{query.orderSource} + </if> + and t1.payStatus = 2 + </where> + </select> </mapper> \ No newline at end of file -- Gitblit v1.7.1