|
- <?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.WxWeappBasicSetMapper">
- <resultMap id="BaseResultMap" type="com.iformall.domain.po.WxWeappBasicSet">
- <id column="id" jdbcType="INTEGER" property="id"/>
- <result column="type" jdbcType="INTEGER" property="type"/>
- <result column="deploy" jdbcType="INTEGER" property="deploy"/>
- <result column="domain_url" jdbcType="VARCHAR" property="domainUrl"/>
- <result column="version" jdbcType="VARCHAR" property="version"/>
- <result column="template_info" jdbcType="VARCHAR" property="templateInfo"/>
- <result column="create_date" jdbcType="TIMESTAMP" property="createDate"/>
- <result column="update_date" jdbcType="TIMESTAMP" property="updateDate"/>
- </resultMap>
-
- <sql id="allColumns">
- `id`,`type`,`domain_url`,`version`,`template_info`,`create_date`,`update_date`
- </sql>
-
- <sql id="dynamicWhereConditions">
- where 1 = 1
- <if test=" null != id ">
- and `id` = #{id}
- </if>
- <if test=" null != type ">
- and `type` = #{type}
- </if>
- <if test=" null != deploy ">
- and `deploy` = #{deploy}
- </if>
- <if test=" null != createDate ">
- and `create_date` = #{createDate}
- </if>
- <if test=" null != updateDate ">
- and `update_date` = #{updateDate}
- </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.WxWeappBasicSet" resultMap="BaseResultMap">
- select
- <include refid="allColumns"/>
- from wx_weapp_basic_set
- <include refid="dynamicWhereConditions"/>
- </select>
-
-
- </mapper>
|