|
- <?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.simple.mapper.WxFlashSaleMapper">
- <resultMap id="BaseResultMap" type="com.simple.domain.po.WxFlashSale">
- <id column="id" jdbcType="BIGINT" property="id" />
- <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" />
- <result column="activity_id" jdbcType="BIGINT" property="activityId" />
- <result column="createtime" jdbcType="TIMESTAMP" property="createtime" />
- <result column="uptime" jdbcType="TIMESTAMP" property="uptime" />
- <result column="is_enable" jdbcType="INTEGER" property="isEnable" />
- </resultMap>
-
- <sql id="allColumns">
- `id`,`tenant_id`,`activity_id`,`createtime`,`uptime`,`is_enable`
- </sql>
-
- <sql id="dynamicWhereConditions">
- where 1 = 1
-
- <if test=" null != id ">
- and `id` = #{id}
-
- </if>
-
- <if test=" null != tenantId ">
- and `tenant_id` like concat('%', #{tenantId},'%')
-
- </if>
-
- <if test=" null != activityId ">
- and `activity_id` = #{activityId}
-
- </if>
-
- <if test=" null != createtime ">
- and `createtime` = #{createtime}
-
- </if>
-
- <if test=" null != uptime ">
- and `uptime` = #{uptime}
-
- </if>
-
- <if test=" null != isEnable ">
- and `is_enable` = #{isEnable}
-
- </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.simple.domain.po.WxFlashSale" resultMap="BaseResultMap">
- select <include refid="allColumns" /> from wx_flash_sale
- <include refid="dynamicWhereConditions" />
- </select>
-
-
-
-
-
-
- </mapper>
|