cloudroam
2025-01-07 1d0fc6126fb664e81a1a3737d8eaf4a618e7cb0f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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.mzl.flower.mapper.configParam.ConfigParamGroupMapper">
 
 
    <select id="queryPage" resultType="com.mzl.flower.dto.response.configParam.ConfigParamGroupVO">
        select t.* from t_config_param_group t
        where t.deleted= 0
        <if test="dto.paramGroupName != null and dto.paramGroupName != ''">
            and t.param_group_name like concat('%', #{dto.paramGroupName}, '%')
        </if>
        <if test="dto.paramGroup != null and dto.paramGroup != ''">
            and t.param_group = #{dto.paramGroup}
        </if>
        order by t.param_order
    </select>
</mapper>