From 3a762add44449332d6d379e361698850f6066e16 Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: 星期一, 19 五月 2025 15:20:12 +0800
Subject: [PATCH] 修改

---
 exam-system/src/main/resources/mapper/pay/CoalPayStudentMapper.xml |   21 +++++++++++++++++++--
 1 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/exam-system/src/main/resources/mapper/pay/CoalPayStudentMapper.xml b/exam-system/src/main/resources/mapper/pay/CoalPayStudentMapper.xml
index 4b45803..11ba69f 100644
--- a/exam-system/src/main/resources/mapper/pay/CoalPayStudentMapper.xml
+++ b/exam-system/src/main/resources/mapper/pay/CoalPayStudentMapper.xml
@@ -41,6 +41,7 @@
             <if test="orderNo != null and orderNo != '' ">order_no,</if>
             <if test="fileData!=null">file_data,</if>
             <if test="govPayStatus!=null">gov_pay_status,</if>
+            <if test="train!=null and train!=''">train,</if>
             <if test="createBy != null">create_by,</if>
             <if test="createTime != null">create_time,</if>
             <if test="updateBy != null">update_by,</if>
@@ -61,6 +62,7 @@
             <if test="orderNo != null and orderNo != '' ">#{orderNo},</if>
             <if test="fileData!=null">#{fileData},</if>
             <if test="govPayStatus!=null">#{govPayStatus},</if>
+            <if test="train!=null and train!=''">#{train},</if>
             <if test="createBy != null">#{createBy},</if>
             <if test="createTime != null">#{createTime},</if>
             <if test="updateBy != null">#{updateBy},</if>
@@ -106,9 +108,24 @@
     <update id="updateByCoalPayIdAndStatus">
         update coal_pay_student
         <trim prefix="SET" suffixOverrides=",">
-            <if test="payType != null">pay_type = #{payType},</if>
+            <if test="payCode != null">pay_code = #{payCode},</if>
+            <if test="orderId!=null">order_id=#{orderId},</if>
+            <if test="orderNo!=null">order_no = #{orderNo},</if>
+            <if test="fileData!=null">file_data=#{fileData},</if>
+            <if test="govPayStatus!=null">gov_pay_status=#{govPayStatus},</if>
         </trim>
-        where coal_pay_id = #{coalPayId} and pay_status = 0
+        where coal_pay_id = #{coalPayId} and pay_status = 0 and pay_type = 2
+    </update>
+    <update id="updateByIdAndPayType">
+        update coal_pay_student
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="payCode != null">pay_code = #{payCode},</if>
+            <if test="orderId!=null">order_id=#{orderId},</if>
+            <if test="orderNo!=null">order_no = #{orderNo},</if>
+            <if test="fileData!=null">file_data=#{fileData},</if>
+            <if test="govPayStatus!=null">gov_pay_status=#{govPayStatus},</if>
+        </trim>
+        where id = #{id} and pay_status = 0 and pay_type = 1
     </update>
 
     <select id="selectByCoalPayId" resultType="com.gkhy.exam.pay.entity.CoalPayStudent">

--
Gitblit v1.9.2