| | |
| | | package com.ruoyi.order.controller; |
| | | |
| | | |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.order.domain.pojo.OrderAuctionBond; |
| | | import com.ruoyi.order.service.IOrderAuctionBondService; |
| | | import com.ruoyi.system.api.domain.GoodsSku; |
| | | import com.ruoyi.system.api.domain.dto.OrderAuctionBondDTO; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.apache.poi.ss.formula.functions.T; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import javax.annotation.Resource; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @RequestMapping("/order-auction-bond") |
| | | public class OrderAuctionBondController { |
| | | |
| | | @Resource |
| | | private IOrderAuctionBondService iOrderAuctionBondService; |
| | | |
| | | /** |
| | | * 获取当前商品信息 |
| | | *这些还要掉退款,但是还没有支付或者微信 |
| | | * |
| | | */ |
| | | @PostMapping("/getOrderAuctionBond") |
| | | @ResponseBody |
| | | public R<T> getOrderAuctionBond(@RequestBody OrderAuctionBondDTO orderAuctionBondDTO) { |
| | | iOrderAuctionBondService.getOrderAuctionBond(orderAuctionBondDTO); |
| | | return R.ok(); |
| | | |
| | | } |
| | | |
| | | } |