|
- <?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.WxCouponSendInjectMapper">
- <resultMap id="BaseResultMap" type="com.iformall.domain.po.WxCouponSendInject">
- <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="coupon_id" jdbcType="BIGINT" property="couponId" />
- <result column="user_id" jdbcType="BIGINT" property="userId" />
- <result column="send_status" jdbcType="INTEGER" property="sendStatus" />
- <result column="send_msg" jdbcType="INTEGER" property="sendMsg" />
- <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
- <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
- <result column="order_id" jdbcType="BIGINT" property="orderId" />
- <result column="coupon_order_id" jdbcType="BIGINT" property="couponOrderId" />
- <result column="msg_model" jdbcType="VARCHAR" property="msgModel" />
-
- </resultMap>
-
- <sql id="allColumns">
- `id`,`tenant_id`,`parent_tenant_id`,`coupon_id`,`user_id`,`send_status`,`send_msg`,`create_time`,`update_time`,
- `order_id`,`coupon_order_id`,`msg_model`
- </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 != couponId ">
- and `coupon_id` = #{couponId}
-
- </if>
- <if test=" null != userId ">
- and `user_id` = #{userId}
-
- </if>
-
- <if test=" null != sendStatus ">
- and `send_status` = #{sendStatus}
-
- </if>
-
- <if test=" null != sendMsg ">
- and `send_msg` = #{sendMsg}
-
- </if>
-
- <if test=" null != orderId ">
- and `order_id` = #{orderId}
-
- </if>
-
- <if test=" null != couponOrderId ">
- and `coupon_order_id` = #{couponOrderId}
-
- </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.WxCouponSendInject" resultMap="BaseResultMap">
- select
- <include refid="allColumns"/>
- from wx_coupon_send_inject
- <include refid="dynamicWhereConditions" />
- </select>
-
-
- <update id="updateMsgByUserIds" parameterType="hashmap">
- update wx_coupon_send_inject set `send_msg` = 1
- where `user_id` in
- <foreach collection="userIds" index="index" item="idItem" open="(" separator="," close=")">
- #{idItem}
- </foreach>
- </update>
-
- </mapper>
|