123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?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.kmall.admin.dao.GoodsGroupOpenDetailDao">
- <resultMap type="com.kmall.admin.entity.GoodsGroupOpenDetailEntity" id="goodsGroupOpenDetailMap">
- <result property="id" column="id"/>
- <result property="openId" column="open_id"/>
- <result property="userId" column="user_id"/>
- <result property="attendTime" column="attend_time"/>
- <result property="attendStatus" column="attend_status"/>
- <result property="formId" column="form_id"/>
- </resultMap>
- <select id="queryObject" resultMap="goodsGroupOpenDetailMap">
- select
- `id`,
- `open_id`,
- `user_id`,
- `attend_time`,
- `attend_status`,
- `form_id`
- from mall_goods_group_open_detail
- where id = #{id}
- </select>
- <select id="queryList" resultMap="goodsGroupOpenDetailMap">
- select
- `id`,
- `open_id`,
- `user_id`,
- `attend_time`,
- `attend_status`,
- `form_id`
- from mall_goods_group_open_detail
- WHERE 1=1
- <if test="openId != null">
- AND open_id = #{openId}
- </if>
- <choose>
- <when test="sidx != null and sidx.trim() != ''">
- order by ${sidx} ${order}
- </when>
- <otherwise>
- order by id desc
- </otherwise>
- </choose>
- <if test="offset != null and limit != null">
- limit #{offset}, #{limit}
- </if>
- </select>
- <select id="queryTotal" resultType="int">
- select count(*) from mall_goods_group_open_detail
- WHERE 1=1
- <if test="open_id != null">
- AND open_id = #{openId}
- </if>
- </select>
- <insert id="save" parameterType="com.kmall.admin.entity.GoodsGroupOpenDetailEntity" useGeneratedKeys="true"
- keyProperty="id">
- insert into mall_goods_group_open_detail(
- `open_id`,
- `user_id`,
- `attend_time`,
- `attend_status`,
- `form_id`)
- values(
- #{openId},
- #{userId},
- #{attendTime},
- #{attendStatus},
- #{formId})
- </insert>
- <update id="update" parameterType="com.kmall.admin.entity.GoodsGroupOpenDetailEntity">
- update mall_goods_group_open_detail
- <set>
- <if test="openId != null">`open_id` = #{openId},</if>
- <if test="userId != null">`user_id` = #{userId},</if>
- <if test="attendTime != null">`attend_time` = #{attendTime},</if>
- <if test="attendStatus != null">`attend_status` = #{attendStatus},</if>
- <if test="formId != null">`form_id` = #{formId}</if>
- </set>
- where id = #{id}
- </update>
- <delete id="delete">
- delete from mall_goods_group_open_detail where id = #{value}
- </delete>
- <delete id="deleteBatch">
- delete from mall_goods_group_open_detail where id in
- <foreach item="id" collection="array" open="(" separator="," close=")">
- #{id}
- </foreach>
- </delete>
- </mapper>
|