123456789101112131415161718 |
- <?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.cdxw.system.mapper.CikuMapper">
- <!-- 条件分页查询 -->
- <resultMap id="CikuMap" type="com.cdxw.model,system" autoMapping="true"></resultMap>
- <select id="selectPage" resultMap="CikuMap">
- SELECT word,chinese,online FROM ciku
- <where>
- <if test="vo.word != null and vo.word != ''">
- and word like CONCAT('%',#{word},'%')
- </if>
- and is_deleted = 0
- </where>
- order by id desc
- </select>
- </mapper>
|