| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.xinquan.order.api.domain.Order; |
| | | import com.xinquan.order.domain.vo.ClientPlaceOrderVO; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @see com.xinquan.order.domain.vo.ClientPlaceOrderVO |
| | | */ |
| | | ClientPlaceOrderVO placeOrder(Long targetId, Integer orderFrom, Long receiverId, |
| | | Integer balanceFlag, Integer payType) throws Exception; |
| | | Integer balanceFlag, Integer payType,BigDecimal amount,Integer vipType) throws Exception; |
| | | |
| | | /** |
| | | * 根据类型获取已完成的订单列表 |
| | |
| | | * @return |
| | | */ |
| | | List<Order> getOrderListByType(Long userId, Integer orderFrom); |
| | | |
| | | String placeOrderApple(Long targetId, Integer orderFrom, Long receiverId, Integer balanceFlag, BigDecimal amount, Integer vipType, String transactionIdentifier); |
| | | |
| | | String refund(Long uid) throws Exception; |
| | | } |