无关风月
2025-04-11 75942ecc2e438012c5ea876715966ace593565a0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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">
<mapper namespace="com.ruoyi.study.mapper.TIntegralRecordMapper">
 
    <select id="integralDetail" resultType="com.ruoyi.study.domain.TIntegralRecord">
        SELECT *
        FROM t_integral_record
        <where>
            <if test="time != null and time != ''">
                DATE_FORMAT(createTime, '%Y-%m') = #{time}
            </if>
            <if test="userId != null and userId != ''">
                and userId = #{userId}
            </if>
        </where>
        order by createTime desc
    </select>
</mapper>