|
@@ -411,6 +411,7 @@
|
|
|
<result column="username_" property="user.username"/>
|
|
|
<result column="charge_type_" property="chargeType"/>
|
|
|
<collection property="orderDetailList" ofType="com.ym.mec.biz.dal.entity.StudentPaymentOrderDetail">
|
|
|
+ <result column="detail_id_" property="id"/>
|
|
|
<result column="detail_type_" property="type"/>
|
|
|
<result column="detail_price_" property="price"/>
|
|
|
</collection>
|
|
@@ -418,7 +419,7 @@
|
|
|
|
|
|
<!-- 分页查询 -->
|
|
|
<select id="ExportQueryPage" resultMap="orderAndDetail" parameterType="map">
|
|
|
- SELECT spo.*,u.username_,spod.type_ detail_type_,spod.price_ detail_price_,o.name_ organ_name,sci.charge_type_
|
|
|
+ SELECT spo.*,u.username_,spod.id_ detail_id_,spod.type_ detail_type_,spod.price_ detail_price_,o.name_ organ_name,sci.charge_type_
|
|
|
FROM student_payment_order spo
|
|
|
LEFT JOIN sys_user u on spo.user_id_ = u.id_
|
|
|
LEFT JOIN student_payment_order_detail spod on spo.id_ = spod.payment_order_id_
|