From d41358fce9a436d81b9341d06fc1d8f3ddff92ff Mon Sep 17 00:00:00 2001 From: liujie <liujie> Date: 星期一, 25 九月 2023 16:17:55 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- cloud-server-course/src/main/resources/mapper/CoursePackagePaymentConfigMapper.xml | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 43 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 1cbc1b2..d9da3d6 100644 --- a/cloud-server-course/src/main/resources/mapper/CoursePackagePaymentConfigMapper.xml +++ b/cloud-server-course/src/main/resources/mapper/CoursePackagePaymentConfigMapper.xml @@ -11,4 +11,47 @@ <result column="cashPayment" property="cashPayment" /> <result column="playPaiCoin" property="playPaiCoin" /> </resultMap> + <update id="changeState"> + update t_course_package_payment2 set + payStatus = 2,payUserName = #{payUserName},payType = 7,payUserId=#{payUserId} + <where> + <if test="ids != null and ids.size()>0"> + AND t_course_package_payment2.id IN + <foreach collection="ids" separator="," item="id" open="(" close=")"> + #{id} + </foreach> + </if> + </where> + </update> + + <select id="listAll" resultType="com.dsh.course.model.CoursePackagePaymentVO"> + select t1.id,t1.studentId,t1.payUserType,t1.payStatus,t1.payType,t1.originalPrice,t1.userCouponId,t1.payUserId,t1.giftClassHours,t1.studentId,t1.appUserId,t1.cashPayment,t1.playPaiCoin, + t1.payUserName as buyTypeName, + CONCAT(t2.province,t2.city) as provinceAndCity,t2.coursePackageTypeId,t2.storeId,t2.name as coursePackage, + t3.name as coursePackageType + from t_course_package_payment2 t1 + left join t_course_package t2 on t1.coursePackageId = t2.id + left join t_course_package_type t3 on t2.coursePackageTypeId = t3.id + <where> + <if test="query.province!=null and query.province!= ''"> + and t2.province = #{query.province} + </if> + <if test="query.city!=null and query.city!= ''"> + and t2.city = #{query.city} + </if> + <if test="query.coursePackageTypeId!=null and query.coursePackageTypeId!= ''"> + and t3.id = #{query.coursePackageTypeId} + </if> + <if test="query.coursePackageTypeName!=null and query.coursePackageTypeName!= ''"> + and t2.name like concat('%',#{query.coursePackageTypeName},'%') + </if> + <if test="query.payStatus!=null and query.payStatus!= ''"> + and t1.payStatus = #{query.payStatus} + </if> + <if test="query.payStatus!=null and query.payStatus!= ''"> + and t1.payStatus = #{query.payStatus} + </if> + </where> + </select> + </mapper> \ No newline at end of file -- Gitblit v1.7.1