| | |
| | | package com.sandu.ximon.dao.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.sandu.ximon.dao.bo.C3mOrderBo; |
| | | import com.sandu.ximon.dao.domain.C3mOrder; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | |
| | | @Update("update c3_order set refund_amount = #{refundAmount},refund_timestamp=#{refundTimestamp},order_status=#{orderStatus}, refund_msg = #{refundMsg} where order_id = #{orderId}") |
| | | void updateRefundOrder(C3mOrder c3mOrderEntity); |
| | | |
| | | List<C3mOrderBo> orderList(Long userId); |
| | | |
| | | List<C3mOrderBo> orderList(Long userId, String keyword, Integer orderStatus, Long startTimeStamp, Long nowTimeStamp); |
| | | } |
| | | |
| | | |