| 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.fs.his.mapper.FsPromotionalActiveMapper">
- <select id="selectPromotionalActiveVOList" resultType="com.fs.his.vo.FsPromotionalActiveVO">
- select * from fs_promotional_active
- where is_del = 0
- <if test="title != null and title != ''">
- and title like concat('%', #{title}, '%')
- </if>
- </select>
- <select id="selectPromotionalActiveVOById" resultType="com.fs.his.vo.FsPromotionalActiveVO">
- select * from fs_promotional_active
- where is_del = 0 and id = #{activeId}
- </select>
- </mapper>
|