ProductCouponLimitMapper.xml
2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?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.yoho.search.dal.ProductCouponLimitMapper">
<resultMap id="BaseResultMap" type="com.yoho.search.dal.model.ProductCouponLimit">
<id column="id" property="id" jdbcType="INTEGER"/>
<result column="product_skn" property="productSkn" jdbcType="INTEGER"/>
<result column="type" property="type" jdbcType="INTEGER"/>
<result column="status" property="status" jdbcType="INTEGER"/>
</resultMap>
<sql id="Base_Column_List">
id, product_skn, `type`, status
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
select <include refid="Base_Column_List"/> from product_coupon_limit
where id = #{id,jdbcType=INTEGER} limit 1
</select>
<select id="selectByProductSkns" resultMap="BaseResultMap" parameterType="java.lang.Integer">
SELECT <include refid="Base_Column_List"/> FROM product_coupon_limit where product_skn in
<foreach item="item" index="index" collection="list" open="(" separator="," close=")">
#{item}
</foreach>
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
delete from product_coupon_limit
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.yoho.search.dal.model.ProductCouponLimit">
insert ignore into product_coupon_limit (id, product_skn, `type`, status)
values (#{id,jdbcType=INTEGER}, #{productSkn,jdbcType=INTEGER}, #{type,jdbcType=INTEGER},#{status,jdbcType=INTEGER})
</insert>
<update id="updateByPrimaryKey" parameterType="com.yoho.search.dal.model.ProductCouponLimit">
update product_coupon_limit
set product_skn = #{productSkn,jdbcType=INTEGER},
`type` = #{type,jdbcType=INTEGER},
status = #{status,jdbcType=INTEGER}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>