| | |
| | | |
| | | <select id="selectAdminVideoVipOrderInfoVoInPage" resultType="cc.mrbird.febs.video.vo.AdminVideoVipOrderInfoVo"> |
| | | SELECT |
| | | a.* |
| | | a.id id, |
| | | a.order_no orderNo, |
| | | a.pay_trader_no payTraderNo, |
| | | a.pay_type payType, |
| | | a.member_id memberId, |
| | | a.amount amount, |
| | | a.goods_type goodsType, |
| | | a.status status, |
| | | a.pay_time payTime, |
| | | b.account account, |
| | | b.name name |
| | | FROM video_vip_order_info a |
| | | left join video_member b on b.id = a.member_id |
| | | <where> |
| | | <if test="record != null" > |
| | | <if test="record.account!=null and record.account!=''"> |
| | | and (b.account like concat('%', #{record.account},'%') |
| | | or b.name like concat('%', #{record.account}, '%')) |
| | | </if> |
| | | </if> |
| | | </where> |
| | | order by a.CREATED_TIME desc |
| | | </select> |
| | | |