|
- <?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"/>
- <result column="sort" jdbcType="INTEGER" property="sort"/>
- <result column="print_data_type" jdbcType="VARCHAR" property="printDataType"/>
- <result column="print_data_json" jdbcType="VARCHAR" property="printDataJson"/>
- <result column="is_edit" jdbcType="INTEGER" property="isEdit"/>
- <result column="default_value" jdbcType="VARCHAR" property="defaultValue"/>
- <result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/>
- </resultMap>
-
- <sql id="allColumns">
- `id`,`name`,`is_del`,`remark`,`type`,`sort`,`print_data_type`,`print_data_json`,`is_edit`,`default_value`,`tenant_id`
- </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 != sort ">
- and `sort` = #{sort}
- </if>
-
- <if test=" null != isEdit ">
- and `is_edit` = #{isEdit}
- </if>
-
- <if test=" null != tenantId ">
- and (`tenant_id` = #{tenantId} or `tenant_id` is null)
- </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>
|