123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?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"/>
- <result column="kit_group_purchase_type_" property="kitGroupPurchaseType" typeHandler="com.ym.mec.common.dal.CustomEnumTypeHandler"/>
- </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_,kit_group_purchase_type_)
- VALUES(#{id},#{type,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
- #{goodsIdList},#{price},now(),now(),#{paymentOrderId},#{kitGroupPurchaseType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler})
- </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="kitGroupPurchaseType != null">
- kit_group_purchase_type_ = #{kitGroupPurchaseType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler},
- </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_,kit_group_purchase_type_)
- 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},
- #{orderDetail.kitGroupPurchaseType,typeHandler=com.ym.mec.common.dal.CustomEnumTypeHandler})
- </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>
- <resultMap id="musicalListDetailDtoMap" type="com.ym.mec.biz.dal.dto.musicalListDetailDto">
- <result property="paymentOrderId" column="payment_order_id_"/>
- <result property="username" column="username_"/>
- <result property="userId" column="user_id_"/>
- <result property="musicGroupName" column="muaic_group_name_"/>
- <result property="accessoriesAmount" column="accessories_amount_"/>
- <result property="courseAmount" column="course_amount_"/>
- <result property="kitGroupPurchaseTypeEnum" column="kit_group_purchase_type_"/>
- <result property="musicalAmount" column="musical_amount_"/>
- <result property="orderAmount" column="order_amount_"/>
- <result property="organName" column="organ_name_"/>
- <result property="goodsNames" column="goods_names_"/>
- </resultMap>
- <select id="getMusicalListDetail" resultMap="musicalListDetailDtoMap">
- SELECT MAX(spo.id_) payment_order_id_,spo.user_id_ FROM student_payment_order spo
- WHERE spo.music_group_id_ = #{musicGroupId}
- GROUP BY spo.user_id_
- </select>
- <select id="queryGoodsNames" resultType="java.util.Map">
- SELECT spod.payment_order_id_ 'key',GROUP_CONCAT(g.name_) 'value'
- FROM student_payment_order_detail spod
- LEFT JOIN goods g ON FIND_IN_SET(g.id_,spod.goods_id_list_)
- WHERE spod.payment_order_id_ IN
- <foreach collection="paymentOrderNo" open="(" close=")" separator="," item="item">
- #{item}
- </foreach>
- GROUP BY spod.payment_order_id_
- </select>
- <select id="queryGoodsPrice" resultType="java.util.Map">
- SELECT spod.payment_order_id_ 'key' ,SUM(price_) 'value' FROM student_payment_order_detail spod
- WHERE spod.type_ = #{type} AND spod.payment_order_id_ IN
- <foreach collection="paymentOrderNo" open="(" close=")" separator="," item="item">
- #{item}
- </foreach>
- GROUP BY spod.payment_order_id_
- </select>
- <select id="findApplyOrderMusical" resultMap="StudentPaymentOrderDetail">
- SELECT * FROM student_payment_order_detail WHERE payment_order_id_ = #{orderId} AND type_ = 'MUSICAL' LIMIT 1
- </select>
- </mapper>
|