123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?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.ym.mec.biz.dal.dao.StudentPaymentOrderDetailDao">
- <resultMap type="com.ym.mec.biz.dal.entity.StudentPaymentOrderDetail" id="StudentPaymentOrderDetail">
- <result column="id_" property="id"/>
- <result column="type_" property="type" typeHandler="com.ym.mec.common.dal.CustomEnumTypeHandler"/>
- <result column="goods_id_list_" property="goodsIdList"/>
- <result column="price_" property="price"/>
- <result column="create_time_" property="createTime"/>
- <result column="update_time_" property="updateTime"/>
- <result column="payment_order_id_" property="paymentOrderId"/>
- </resultMap>
- <!-- 根据主键查询一条记录 -->
- <select id="get" resultMap="StudentPaymentOrderDetail">
- SELECT * FROM student_payment_order_detail WHERE id_ = #{id}
- </select>
- <!-- 全查询 -->
- <select id="findAll" resultMap="StudentPaymentOrderDetail">
- SELECT *
- FROM student_payment_order_detail
- ORDER BY id_
- </select>
- <!-- 向数据库增加一条记录 -->
- <insert id="insert" parameterType="com.ym.mec.biz.dal.entity.StudentPaymentOrderDetail" useGeneratedKeys="true"
- keyColumn="id" keyProperty="id">
- <!--
- <selectKey resultClass="int" keyProperty="id" >
- SELECT SEQ_WSDEFINITION_ID.nextval AS ID FROM DUAL
- </selectKey>
- -->
- INSERT INTO student_payment_order_detail
- (id_,type_,goods_id_list_,price_,create_time_,update_time_,payment_order_id_)
- VALUES(#{id},#{type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{goodsIdList},#{price},now(),now(),#{paymentOrderId})
- </insert>
- <!-- 根据主键查询一条记录 -->
- <update id="update" parameterType="com.ym.mec.biz.dal.entity.StudentPaymentOrderDetail">
- UPDATE student_payment_order_detail
- <set>
- <if test="price != null">
- price_ = #{price},
- </if>
- <if test="goodsIdList != null">
- goods_id_list_ = #{goodsIdList},
- </if>
- <if test="updateTime != null">
- update_time_ = NOW(),
- </if>
- <if test="paymentOrderId != null">
- payment_order_id_ = #{paymentOrderId},
- </if>
- <if test="type != null">
- type_ = #{type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
- </if>
- </set>
- WHERE id_ = #{id}
- </update>
- <!-- 根据主键删除一条记录 -->
- <delete id="delete">
- DELETE FROM student_payment_order_detail WHERE id_ = #{id}
- </delete>
- <!-- 分页查询 -->
- <select id="queryPage" resultMap="StudentPaymentOrderDetail" parameterType="map">
- SELECT * FROM student_payment_order_detail ORDER BY id_
- <include refid="global.limit"/>
- </select>
- <!-- 查询当前表的总记录数 -->
- <select id="queryCount" resultType="int">
- SELECT COUNT(*)
- FROM student_payment_order_detail
- </select>
- <insert id="batchAdd" parameterType="java.util.List" useGeneratedKeys="true" keyProperty="id_">
- INSERT INTO student_payment_order_detail
- (id_,type_,goods_id_list_,price_,create_time_,update_time_,payment_order_id_)
- VALUES
- <foreach collection="studentPaymentOrderDetailList" item="orderDetail" separator=",">
- (#{orderDetail.id},#{orderDetail.type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},#{orderDetail.goodsIdList},#{orderDetail.price},now(),now(),#{orderDetail.paymentOrderId})
- </foreach>
- </insert>
- <!-- 查询注册订单详情 -->
- <select id="findApplyOrderSuccess" resultMap="StudentPaymentOrderDetail">
- SELECT spod.* FROM student_payment_order spo
- LEFT JOIN student_payment_order_detail spod ON spo.id_ = spod.payment_order_id_
- WHERE spo.music_group_id_ = #{musicGroupId}
- AND spo.status_=#{status,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler}
- AND spo.type_ = 'APPLY'
- </select>
- <!-- 查询订单详情 -->
- <select id="findApplyOrderGoods" resultMap="StudentPaymentOrderDetail">
- SELECT * FROM student_payment_order_detail WHERE payment_order_id_ = #{orderId}
- </select>
- <!-- 查询用户注册订单详情 -->
- <select id="findUserApplyOrder" resultMap="StudentPaymentOrderDetail">
- SELECT spod.* FROM student_payment_order spo
- LEFT JOIN student_payment_order_detail spod ON spo.id_ = spod.payment_order_id_
- WHERE spo.user_id_ = #{userId}
- AND spo.status_=#{status,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler}
- AND spo.type_ = 'APPLY'
- </select>
- </mapper>
|