|
- <?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.WxFinancePrintDataMapper">
- <resultMap id="BaseResultMap" type="com.iformall.domain.po.WxFinancePrintData">
- <id column="id" jdbcType="BIGINT" property="id"/>
- <result column="name" jdbcType="VARCHAR" property="name"/>
- <result column="is_del" jdbcType="INTEGER" property="isDel"/>
- <result column="remark" jdbcType="VARCHAR" property="remark"/>
- <result column="type" jdbcType="INTEGER" property="type"/>
- </resultMap>
-
- <sql id="allColumns">
- `id`,`name`,`is_del`,`remark`,`type`
- </sql>
-
- <sql id="dynamicWhereConditions">
- where id > 0
-
- <if test=" null != id ">
- and `id` = #{id}
- </if>
-
- <if test=" null != name ">
- and `name` like concat('%', #{name},'%')
- </if>
-
- <if test=" null != isDel ">
- and `is_del` = #{isDel}
- </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.WxFinancePrintData" resultMap="BaseResultMap">
- select
- <include refid="allColumns"/>
- from wx_finance_print_data
- <include refid="dynamicWhereConditions"/>
- </select>
-
- </mapper>
|