From 03682382b79d64cccdbceb395bb93628bd9f1c31 Mon Sep 17 00:00:00 2001
From: heheng <heheng@123456>
Date: 星期三, 22 一月 2025 14:25:07 +0800
Subject: [PATCH] 特种作业非煤缴费版本导入优化

---
 exam-system/src/main/resources/mapper/pay/NonCoalPayStudentMapper.xml |   15 ++++++++++++++-
 1 files changed, 14 insertions(+), 1 deletions(-)

diff --git a/exam-system/src/main/resources/mapper/pay/NonCoalPayStudentMapper.xml b/exam-system/src/main/resources/mapper/pay/NonCoalPayStudentMapper.xml
index d54cf36..4ef1099 100644
--- a/exam-system/src/main/resources/mapper/pay/NonCoalPayStudentMapper.xml
+++ b/exam-system/src/main/resources/mapper/pay/NonCoalPayStudentMapper.xml
@@ -19,6 +19,10 @@
         <result property="createTime" column="create_time"/>
         <result property="delFlag" column="del_flag"/>
         <result property="payType" column="pay_type"/>
+        <result property="orderNo" column="order_no"/>
+        <result property="orderId" column="order_id"/>
+        <result property="fileData" column="file_data"/>
+        <result property="govPayStatus" column="gov_pay_status"/>
     </resultMap>
 
     <sql id="selectNonCoalPayStudentVo">
@@ -35,7 +39,11 @@
                create_by,
                create_time,
                del_flag,
-               pay_type
+               pay_type,
+               order_no,
+               order_id,
+               file_data,
+               gov_pay_status
         from non_coal_pay_student
     </sql>
 
@@ -71,6 +79,7 @@
             <if test="sex != null">sex,</if>
             <if test="payCode != null">pay_code,</if>
             <if test="payType != null">pay_type,</if>
+            <if test="orderNo != null and orderNo != '' ">order_no,</if>
             <if test="payStatus != null">pay_status,</if>
             <if test="updateBy != null">update_by,</if>
             <if test="updateTime != null">update_time,</if>
@@ -87,6 +96,7 @@
             <if test="sex != null">#{sex},</if>
             <if test="payCode != null">#{payCode},</if>
             <if test="payType != null">#{payType},</if>
+            <if test="orderNo != null and orderNo != '' ">#{orderNo},</if>
             <if test="payStatus != null">#{payStatus},</if>
             <if test="updateBy != null">#{updateBy},</if>
             <if test="updateTime != null">#{updateTime},</if>
@@ -111,6 +121,9 @@
             <if test="idCard != null and idCard != ''">id_card = #{idCard},</if>
             <if test="phone != null and phone != ''">phone = #{phone},</if>
             <if test="sex != null">sex = #{sex},</if>
+            <if test="orderId != null and orderId != ''">order_id = #{orderId},</if>
+            <if test="fileData != null and fileData != ''">file_data = #{fileData},</if>
+            <if test="govPayStatus != null">gov_pay_status = #{govPayStatus},</if>
             <if test="payType != null">pay_type = #{payType},</if>
             <if test="payCode != null">pay_code = #{payCode},</if>
             <if test="payStatus != null">pay_status = #{payStatus},</if>

--
Gitblit v1.9.2