|
- <?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.WxMerchantShopMapper">
- <resultMap id="BaseResultMap" type="com.iformall.domain.po.WxMerchantShop">
- <id column="id" jdbcType="BIGINT" property="id" />
- <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" />
- <result column="merchant_id" jdbcType="BIGINT" property="merchantId" />
- <result column="shop_id" jdbcType="BIGINT" property="shopId" />
- <result column="create_date" jdbcType="TIMESTAMP" property="createDate" />
- <result column="update_date" jdbcType="TIMESTAMP" property="updateDate" />
- <result column="rental_start_date" jdbcType="TIMESTAMP" property="rentalStartDate" />
- <result column="rental_end_date" jdbcType="TIMESTAMP" property="rentalEndDate" />
- <result column="is_del" jdbcType="SMALLINT" property="isDel" />
-
- </resultMap>
-
- <sql id="allColumns">
- `id`,`tenant_id`,`merchant_id`,`shop_id`,`create_date`,`update_date`,`rental_start_date`,`rental_end_date`,`is_del`
- </sql>
-
- <sql id="dynamicWhereConditions">
- where 1 = 1
-
- <if test=" null != id ">
- and `id` = #{id}
-
- </if>
-
- <if test=" null != tenantId ">
- and `tenant_id` = #{tenantId}
-
- </if>
-
- <if test=" null != merchantId ">
- and `merchant_id` = #{merchantId}
-
- </if>
-
- <if test=" null != shopId ">
- and `shop_id` = #{shopId}
-
- </if>
-
- <if test=" null != createDate ">
- and `create_date` = #{createDate}
-
- </if>
-
- <if test=" null != updateDate ">
- and `update_date` = #{updateDate}
-
- </if>
-
- <if test=" null != rentalStartDate ">
- and `rental_start_date` = #{rentalStartDate}
-
- </if>
-
- <if test=" null != rentalEndDate ">
- and `rental_end_date` = #{rentalEndDate}
- </if>
- <if test=" null != isDel ">
- and `is_del` = #{isDel}
- </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.WxMerchantShop" resultMap="BaseResultMap">
- select <include refid="allColumns" /> from wx_merchant_shop
- <include refid="dynamicWhereConditions" />
- </select>
-
-
-
-
-
-
- </mapper>
|