wzp
2025-05-12 e21119007e7d9899376c0dce4ed406a4c2901310
ruoyi-system/src/main/resources/mapper/system/SysClientAppMapper.xml
@@ -19,10 +19,15 @@
        <result property="updateTime"    column="update_time"    />
        <result property="remark"    column="remark"    />
        <result property="minAppId"    column="min_app_id"    />
        <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 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">
@@ -62,6 +67,11 @@
            <if test="updateTime != null">update_time,</if>
            <if test="remark != null">remark,</if>
            <if test="minAppId != null">min_app_id,</if>
            <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>
@@ -77,6 +87,11 @@
            <if test="updateTime != null">#{updateTime},</if>
            <if test="remark != null">#{remark},</if>
            <if test="minAppId != null">#{minAppId},</if>
            <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>
@@ -91,6 +106,11 @@
            <if test="status != null and status != ''">status = #{status},</if>
            <if test="remark != null">remark = #{remark},</if>
            <if test="minAppId != null">min_app_id = #{minAppId},</if>
            <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>