无关风月
6 天以前 c72910d2b90f74d23e770717d80921b4fd064d48
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.type != null ">
            and integral_type = #{query.type}
        </if>
          and site_id = #{query.siteId}
        and del_flag = 0
        order by create_time desc
    </select>
</mapper>