| | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | |
| | | |
| | | Logger log = LoggerFactory.getLogger(getClass()); |
| | | @ResponseBody |
| | | @RequestMapping("/getPayInfo") |
| | | @PostMapping("/getPayInfo") |
| | | @ApiOperation(value = "用户端-获取支付信息") |
| | | public R<Map<String, Object>> getPayInfo(PayInfoDTO payInfoDTO, |
| | | HttpServletRequest request) { |