| 1234567891011121314151617181920212223 |
- <?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="platform.modules.sys.dao.DeGroupDao">
- <select id="findList" resultType="platform.modules.sys.entity.DeGroup">
- SELECT * FROM sys_de_group
- WHERE del_flag = false
- <if test="keyword != null and keyword != ''">
- and name LIKE CONCAT(CONCAT('%',#{keyword}), '%')
- </if>
- </select>
- <select id="isExist" resultType="platform.modules.sys.entity.DeGroup">
- SELECT * from sys_de_group where name=#{name}
- </select>
- </mapper>
|