|
@@ -1005,6 +1005,7 @@
|
|
|
|
|
|
<resultMap type="com.ym.mec.biz.dal.vo.StudentPaymentOrderVo" id="QueryOrderDetail">
|
|
|
<result column="orderNo" property="orderNo"/>
|
|
|
+ <result column="memo_" property="memo"/>
|
|
|
<result column="status_" property="status" typeHandler="com.ym.mec.common.dal.CustomEnumTypeHandler"/>
|
|
|
<result column="orderType" property="orderType"/>
|
|
|
<result column="orderTypeCode" property="orderTypeCode"/>
|
|
@@ -1025,7 +1026,7 @@
|
|
|
<select id="queryStudentOrderPage" resultMap="QueryOrderDetail">
|
|
|
select
|
|
|
a.order_no_ as orderNo,
|
|
|
- a.status_ ,
|
|
|
+ a.status_ ,a.memo_,
|
|
|
a.type_ as orderType,
|
|
|
a.type_ as orderTypeCode,
|
|
|
ifnull(a.actual_amount_, 0) + ifnull(a.balance_payment_amount_, 0) as totalAmount,
|
|
@@ -1042,7 +1043,7 @@
|
|
|
<select id="queryOrderDetail" resultMap="QueryOrderDetail">
|
|
|
select
|
|
|
a.order_no_ as orderNo,
|
|
|
- a.status_ ,
|
|
|
+ a.status_ ,a.memo_,
|
|
|
a.type_ as orderType,
|
|
|
ifnull(a.actual_amount_, 0) + ifnull(a.balance_payment_amount_, 0) + ifnull(a.remit_fee_, 0) +
|
|
|
ifnull(a.coupon_remit_fee_, 0) as totalAmount,
|