From 64bfdd5d310d07c69deead7ebafc9b00fcb3258b Mon Sep 17 00:00:00 2001
From: wzp <2040239371@qq.com>
Date: 星期三, 14 五月 2025 14:00:25 +0800
Subject: [PATCH] fix:修复广交集团订单

---
 ruoyi-system/src/main/resources/mapper/system/SysClientAppMapper.xml |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/ruoyi-system/src/main/resources/mapper/system/SysClientAppMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysClientAppMapper.xml
index b9cc0f2..5837c9d 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysClientAppMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysClientAppMapper.xml
@@ -22,10 +22,12 @@
         <result property="minAppSecret"    column="min_app_secret"    />
         <result property="callbackUrl"    column="callback_url"    />
         <result property="payUrl"    column="pay_url"    />
+        <result property="orderClass"    column="order_class"    />
+        <result property="userId"    column="user_id"    /> 
     </resultMap>
 
     <sql id="selectSysClientAppVo">
-        select app_id, client_name, app_key, security_key, valid_start_time, valid_end_time, status, del_flag, create_by, create_time, update_by, update_time, remark, min_app_id, min_app_secret, callback_url, pay_url from sys_client_app
+        select app_id, client_name, app_key, security_key, valid_start_time, valid_end_time, status, del_flag, create_by, create_time, update_by, update_time, remark, min_app_id, min_app_secret, callback_url, pay_url, order_class, user_id from sys_client_app
     </sql>
 
     <select id="selectSysClientAppList" parameterType="SysClientApp" resultMap="SysClientAppResult">
@@ -68,6 +70,8 @@
             <if test="minAppSecret != null">min_app_secret,</if>
             <if test="callbackUrl != null">callback_url,</if>
             <if test="payUrl != null">pay_url,</if>
+            <if test="orderClass != null">order_class,</if>
+            <if test="userId != null">user_id,</if>
          </trim>
         <trim prefix="values (" suffix=")" suffixOverrides=",">
             <if test="clientName != null">#{clientName},</if>
@@ -86,6 +90,8 @@
             <if test="minAppSecret != null">#{minAppSecret},</if>
             <if test="callbackUrl != null">#{callbackUrl},</if>
             <if test="payUrl != null">#{payUrl},</if>
+            <if test="orderClass != null">#{orderClass},</if>
+            <if test="userId != null">#{userId},</if>
          </trim>
     </insert>
 
@@ -103,6 +109,8 @@
             <if test="minAppSecret != null">min_app_secret = #{minAppSecret},</if>
             <if test="callbackUrl != null">callback_url = #{callbackUrl},</if>
             <if test="payUrl != null">pay_url = #{payUrl},</if>
+            <if test="orderClass != null">order_class = #{orderClass},</if>
+            <if test="userId != null">user_id = #{userId},</if>
             <if test="updateBy != null">update_by = #{updateBy},</if>
             update_time = sysdate()
         </set>

--
Gitblit v1.9.1