|
|
@ -3,7 +3,7 @@ |
|
|
<mapper namespace="com.cyjd.rights.business.mapper.AliPayOrderMapper"> |
|
|
<mapper namespace="com.cyjd.rights.business.mapper.AliPayOrderMapper"> |
|
|
<select id="getPageOrder" resultType="com.cyjd.rights.vo.AliPayOrderVo"> |
|
|
<select id="getPageOrder" resultType="com.cyjd.rights.vo.AliPayOrderVo"> |
|
|
select |
|
|
select |
|
|
id,mobile,order_time,status,sign_code,price,other_order_id,ali_user_id,unsub_time,business_type,link_id |
|
|
id,mobile,order_time,status,sign_code,price,other_order_id,ali_user_id,unsub_time,business_type,link_id,trade_no |
|
|
from tb_ali_pay_order |
|
|
from tb_ali_pay_order |
|
|
<where> |
|
|
<where> |
|
|
1=1 |
|
|
1=1 |
|
|
@ -22,6 +22,9 @@ |
|
|
<if test="mobile!=null and mobile!=''"> |
|
|
<if test="mobile!=null and mobile!=''"> |
|
|
and mobile = #{mobile} |
|
|
and mobile = #{mobile} |
|
|
</if> |
|
|
</if> |
|
|
|
|
|
<if test="tradeNo!=null and tradeNo!=''"> |
|
|
|
|
|
and trade_no = #{tradeNo} |
|
|
|
|
|
</if> |
|
|
<if test="beginTime!=null"> |
|
|
<if test="beginTime!=null"> |
|
|
and order_time > #{beginTime} |
|
|
and order_time > #{beginTime} |
|
|
</if> |
|
|
</if> |
|
|
|