|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <?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.WxCouponMallMapper">
- <resultMap id="BaseResultMap" type="com.iformall.domain.po.WxCouponMall">
- <id column="id" jdbcType="BIGINT" property="id" />
- <result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/>
- <result column="parent_tenant_id" jdbcType="VARCHAR" property="parentTenantId"/>
- <result column="product_id" jdbcType="BIGINT" property="productId" />
- <result column="mall_tenant_id" jdbcType="VARCHAR" property="mallTenantId" />
- <result column="create_date" jdbcType="TIMESTAMP" property="createDate" />
- <result column="update_date" jdbcType="TIMESTAMP" property="updateDate" />
- <result column="status" jdbcType="INTEGER" property="status" />
- </resultMap>
-
- <sql id="allColumns">
- `id`,`tenant_id`,`parent_tenant_id`,`product_id`,`mall_tenant_id`,`create_date`,`update_date`,`status`
- </sql>
-
- <sql id="dynamicWhereConditions">
- where 1 = 1
-
- <if test=" null != id ">
- and `id` = #{id}
- </if>
-
- <if test=" null != tenantId and '' != tenantId">
- and `tenant_id` = #{tenantId}
- </if>
- <if test=" null != parentTenantId and '' != parentTenantId">
- and `parent_tenant_id` = #{parentTenantId}
- </if>
- <if test=" null != productId ">
- and `product_id` = #{productId}
-
- </if>
-
- <if test=" null != mallTenantId ">
- and `mall_tenant_id` = #{mallTenantId}
-
- </if>
-
- <if test=" null != createDate ">
- and `create_date` = #{createDate}
-
- </if>
-
- <if test=" null != updateDate ">
- and `update_date` = #{updateDate}
-
- </if>
-
- <if test=" null != status ">
- and `status` = #{status}
-
- </if>
-
- <if test=" null != ids ">
- and id in
- <foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">
- #{idItem}
- </foreach>
- </if>
- <if test=" null != productIds ">
- and product_id in
- <foreach collection="productIds" index="index" item="productIdItem" open="(" separator="," close=")">
- #{productIdItem}
- </foreach>
- </if>
-
- <if test=" null != sortColumns"> order by ${sortColumns} </if>
- </sql>
-
- <select id="findList" parameterType="com.iformall.domain.po.WxCouponMall" resultMap="BaseResultMap">
- select
- <include refid="allColumns"/>
- from wx_coupon_mall
- <include refid="dynamicWhereConditions" />
- </select>
-
- <select id="findCouponIdList" parameterType="com.iformall.domain.po.WxCouponMall" resultType="Long">
- select product_id from wx_coupon_mall
- <include refid="dynamicWhereConditions" />
- </select>
-
- <update id = "updateStatus" parameterType="com.iformall.domain.po.WxCouponMall">
- update wx_coupon_mall set status = #{status} where `product_id` = #{productId}
- and `tenant_id` = #{tenantId} and `mall_tenant_id` = #{mallTenantId}
- </update>
-
- <update id = "delteAllByProductId" parameterType="com.iformall.domain.po.WxCouponMall">
- delete from wx_coupon_mall where `product_id` = #{productId} and `tenant_id` = #{tenantId}
- </update>
- </mapper>
|