|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?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.iformall.mapper.WxGameTemplateMapper">
- <resultMap id="BaseResultMap" type="com.iformall.domain.po.WxGameTemplate">
- <id column="id" jdbcType="INTEGER" property="id" />
- <result column="name" jdbcType="VARCHAR" property="name" />
- <result column="url" jdbcType="VARCHAR" property="url" />
- <result column="img_url" jdbcType="VARCHAR" property="imgUrl" />
- <result column="option_limit" jdbcType="INTEGER" property="optionLimit" />
- <result column="rules" jdbcType="VARCHAR" property="rules" />
- <result column="type" jdbcType="INTEGER" property="type" />
- </resultMap>
-
- <sql id="allColumns">
- `id`,`name`,`url`,`img_url`,`option_limit`,`rules`,`type`
- </sql>
-
- <sql id="dynamicWhereConditions">
- where 1 = 1
- <if test=" null != id ">
- and `id` = #{id}
- </if>
- <if test=" null != name ">
- and `name` like concat('%', #{name},'%')
- </if>
- <if test=" null != url ">
- and `url` like concat('%', #{url},'%')
- </if>
- <if test=" null != imgUrl ">
- and `img_url` like concat('%', #{imgUrl},'%')
- </if>
- <if test=" null != optionLimit ">
- and `option_limit` = #{optionLimit}
- </if>
- <if test=" null != rules ">
- and `rules` like concat('%', #{rules},'%')
- </if>
- <if test=" null != type ">
- and `type` = #{type}
- </if>
- <if test=" null != ids ">
- and id in
- <foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">
- #{idItem}
- </foreach>
- </if>
- <if test=" null != sortColumns"> order by ${sortColumns} </if>
- </sql>
-
- <select id="findList" parameterType="com.iformall.domain.po.WxGameTemplate" resultMap="BaseResultMap">
- select <include refid="allColumns" /> from wx_game_template
- <include refid="dynamicWhereConditions" />
- </select>
-
-
-
-
-
-
- </mapper>
|