无关风月
2025-07-23 7fd053651ac11db87fe4f6c57e65eed3b9a59452
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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.other.mapper.IntegralRecordMapper">
 
 
    <select id="integralPageList" resultType="com.ruoyi.other.vo.IntegralListVO">
        select * from t_integral_record
        where 1=1
        <if test="query.integralType != null ">
            and integral_type = 1
        </if>
          and site_id = #{query.siteId}
        and delFlag = 0
        order by create_time desc
    </select>
</mapper>