|
@@ -0,0 +1,116 @@
|
|
|
+<?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.web.dal.dao.StudentPaymentOrderDao">
|
|
|
+
|
|
|
+ <resultMap type="com.ym.mec.web.dal.entity.StudentPaymentOrder" id="StudentPaymentOrder">
|
|
|
+ <result column="id_" property="id" />
|
|
|
+ <result column="user_id_" property="userId" />
|
|
|
+ <result column="type_" property="type" />
|
|
|
+ <result column="expect_amount_" property="expectAmount" />
|
|
|
+ <result column="actual_amount_" property="actualAmount" />
|
|
|
+ <result column="trans_no_" property="transNo" />
|
|
|
+ <result column="status_" property="status" />
|
|
|
+ <result column="memo_" property="memo" />
|
|
|
+ <result column="create_time_" property="createTime" />
|
|
|
+ <result column="update_time_" property="updateTime" />
|
|
|
+ <result column="payment_channel_" property="paymentChannel" />
|
|
|
+ <result column="payment_business_channel_" property="paymentBusinessChannel" />
|
|
|
+ <result column="payment_account_no_" property="paymentAccountNo" />
|
|
|
+ <result column="order_no_" property="orderNo" />
|
|
|
+ <result column="music_group_id_" property="musicGroupId" />
|
|
|
+ <result column="class_group_id_" property="classGroupId" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <!-- 根据主键查询一条记录 -->
|
|
|
+ <select id="get" resultMap="StudentPaymentOrder" >
|
|
|
+ SELECT * FROM student_payment_order WHERE id_ = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 全查询 -->
|
|
|
+ <select id="findAll" resultMap="StudentPaymentOrder">
|
|
|
+ SELECT * FROM student_payment_order ORDER BY id_
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 向数据库增加一条记录 -->
|
|
|
+ <insert id="insert" parameterType="com.ym.mec.web.dal.entity.StudentPaymentOrder" 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 (id_,user_id_,type_,expect_amount_,actual_amount_,trans_no_,status_,memo_,create_time_,update_time_,payment_channel_,payment_business_channel_,payment_account_no_,order_no_,music_group_id_,class_group_id_) VALUES(#{id},#{userId},#{type},#{expectAmount},#{actualAmount},#{transNo},#{status},#{memo},#{createTime},#{updateTime},#{paymentChannel},#{paymentBusinessChannel},#{paymentAccountNo},#{orderNo},#{musicGroupId},#{classGroupId})
|
|
|
+ </insert>
|
|
|
+
|
|
|
+ <!-- 根据主键查询一条记录 -->
|
|
|
+ <update id="update" parameterType="com.ym.mec.web.dal.entity.StudentPaymentOrder">
|
|
|
+ UPDATE student_payment_order <set>
|
|
|
+<if test="status != null">
|
|
|
+status_ = #{status},
|
|
|
+</if>
|
|
|
+<if test="orderNo != null">
|
|
|
+order_no_ = #{orderNo},
|
|
|
+</if>
|
|
|
+<if test="id != null">
|
|
|
+id_ = #{id},
|
|
|
+</if>
|
|
|
+<if test="classGroupId != null">
|
|
|
+class_group_id_ = #{classGroupId},
|
|
|
+</if>
|
|
|
+<if test="expectAmount != null">
|
|
|
+expect_amount_ = #{expectAmount},
|
|
|
+</if>
|
|
|
+<if test="memo != null">
|
|
|
+memo_ = #{memo},
|
|
|
+</if>
|
|
|
+<if test="paymentChannel != null">
|
|
|
+payment_channel_ = #{paymentChannel},
|
|
|
+</if>
|
|
|
+<if test="createTime != null">
|
|
|
+create_time_ = #{createTime},
|
|
|
+</if>
|
|
|
+<if test="userId != null">
|
|
|
+user_id_ = #{userId},
|
|
|
+</if>
|
|
|
+<if test="paymentAccountNo != null">
|
|
|
+payment_account_no_ = #{paymentAccountNo},
|
|
|
+</if>
|
|
|
+<if test="updateTime != null">
|
|
|
+update_time_ = #{updateTime},
|
|
|
+</if>
|
|
|
+<if test="paymentBusinessChannel != null">
|
|
|
+payment_business_channel_ = #{paymentBusinessChannel},
|
|
|
+</if>
|
|
|
+<if test="transNo != null">
|
|
|
+trans_no_ = #{transNo},
|
|
|
+</if>
|
|
|
+<if test="actualAmount != null">
|
|
|
+actual_amount_ = #{actualAmount},
|
|
|
+</if>
|
|
|
+<if test="type != null">
|
|
|
+type_ = #{type},
|
|
|
+</if>
|
|
|
+<if test="musicGroupId != null">
|
|
|
+music_group_id_ = #{musicGroupId},
|
|
|
+</if>
|
|
|
+</set> WHERE id_ = #{id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <!-- 根据主键删除一条记录 -->
|
|
|
+ <delete id="delete" >
|
|
|
+ DELETE FROM student_payment_order WHERE id_ = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <!-- 分页查询 -->
|
|
|
+ <select id="queryPage" resultMap="StudentPaymentOrder" parameterType="map">
|
|
|
+ SELECT * FROM student_payment_order ORDER BY id_ <include refid="global.limit"/>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 查询当前表的总记录数 -->
|
|
|
+ <select id="queryCount" resultType="int">
|
|
|
+ SELECT COUNT(*) FROM student_payment_order
|
|
|
+ </select>
|
|
|
+</mapper>
|