教育训练处考试制证系统后端
heheng
2025-01-21 44f7e1fe5136eb0666bb599387406ea6b12e659b
exam-system/src/main/resources/mapper/pay/NonCoalPayMapper.xml
@@ -117,7 +117,12 @@
        <if test="payCompanyName != null  and payCompanyName != ''">and a.pay_company_name like concat('%',
            #{payCompanyName}, '%')
        </if>
        <if test="params.startTime != null and params.startTime != ''"><!-- 开始时间检索 -->
            AND a.create_time &gt;= #{params.startTime}
        </if>
        <if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
            AND a.create_time &lt;= #{params.endTime}
        </if>
        <if test="payCompanyCard != null  and payCompanyCard != ''">and a.pay_company_card = #{payCompanyCard}</if>
        order by a.create_time desc
    </select>
@@ -245,10 +250,10 @@
        where id = #{id}
    </update>
    <update id="deleteNonCoalPayById" parameterType="Long">
    <update id="deleteNonCoalPayById">
        update non_coal_pay
        set del_flag  = 2,
            update_by = #{updateBy} non_coal_pay
            update_by = #{updateBy}
        where id = #{id}
    </update>