From b6557d2be3ae385d15af640aa184ca7f8711f42a Mon Sep 17 00:00:00 2001
From: heheng <heheng@123456>
Date: 星期三, 19 二月 2025 16:56:16 +0800
Subject: [PATCH] 测试

---
 exam-system/src/main/resources/mapper/pay/CoalPayStudentMapper.xml |   38 ++++++++++++++++++++++++++++++--------
 1 files changed, 30 insertions(+), 8 deletions(-)

diff --git a/exam-system/src/main/resources/mapper/pay/CoalPayStudentMapper.xml b/exam-system/src/main/resources/mapper/pay/CoalPayStudentMapper.xml
index fddcd40..4b45803 100644
--- a/exam-system/src/main/resources/mapper/pay/CoalPayStudentMapper.xml
+++ b/exam-system/src/main/resources/mapper/pay/CoalPayStudentMapper.xml
@@ -1,10 +1,29 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE mapper
-PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
-"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 <mapper namespace="com.gkhy.exam.pay.mapper.CoalPayStudentMapper">
     <sql id="selectCoalPayStudentVo">
-        select id, coal_pay_id, name, id_card, phone, sex, pay_code, pay_status,pay_type,order_id,file_data,gov_pay_status, update_by, update_time, create_by, create_time, del_flag from coal_pay_student
+        select id,
+               coal_pay_id,
+               name,
+               id_card,
+               phone,
+               sex,
+               pay_code,
+               pay_status,
+               pay_type,
+               order_id,
+               file_data,
+               gov_pay_status,
+               update_by,
+               update_time,
+               create_by,
+               create_time,
+               del_flag,
+               order_no,
+               pay_time
+        from coal_pay_student
     </sql>
     <insert id="insertCoalPayStudent">
         insert into coal_pay_student
@@ -19,6 +38,7 @@
             <if test="payStatus != null">pay_status,</if>
             <if test="payType != null">pay_type,</if>
             <if test="orderId!=null">order_id,</if>
+            <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="createBy != null">create_by,</if>
@@ -38,6 +58,7 @@
             <if test="payStatus != null">#{payStatus},</if>
             <if test="payType != null">#{payType},</if>
             <if test="orderId!=null">#{orderId},</if>
+            <if test="orderNo != null and orderNo != '' ">#{orderNo},</if>
             <if test="fileData!=null">#{fileData},</if>
             <if test="govPayStatus!=null">#{govPayStatus},</if>
             <if test="createBy != null">#{createBy},</if>
@@ -64,6 +85,7 @@
             <if test="sex != null">sex = #{sex},</if>
             <if test="payType != null">pay_type = #{payType},</if>
             <if test="payCode != null">pay_code = #{payCode},</if>
+            <if test="payTime != null">pay_time = #{payTime},</if>
             <if test="payStatus != null">pay_status = #{payStatus},</if>
             <if test="orderId!=null">order_id=#{orderId},</if>
             <if test="fileData!=null">file_data=#{fileData},</if>
@@ -91,8 +113,8 @@
 
     <select id="selectByCoalPayId" resultType="com.gkhy.exam.pay.entity.CoalPayStudent">
         <include refid="selectCoalPayStudentVo"></include>
-          where  coal_pay_id = #{coalPayId}
-                and del_flag =0
+        where coal_pay_id = #{coalPayId}
+        and del_flag =0
     </select>
 
     <select id="selectByCoalPayIdAndPayStatus" resultType="com.gkhy.exam.pay.entity.CoalPayStudent">
@@ -101,9 +123,9 @@
             <if test="status == 0">
                 and pay_type = 2
             </if>
-                and coal_pay_id = #{id}
-                and pay_status = #{status}
-                and del_flag =0
+            and coal_pay_id = #{id}
+            and pay_status = #{status}
+            and del_flag =0
         </where>
     </select>
 

--
Gitblit v1.9.2