| | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | public R<Map<String, Object>> getPayInfo(@RequestBody PayInfoDTO payInfoDTO, |
| | | HttpServletRequest request) { |
| | | try { |
| | | return paylogServiceImpl.getPayInfo(Integer.valueOf(payInfoDTO.getMemberId().intValue()), payInfoDTO.getType(), payInfoDTO.getOrderNO(), payInfoDTO.getOpenId(),request); |
| | | return paylogServiceImpl.getPayInfo(payInfoDTO.getMemberId(), payInfoDTO.getType(), |
| | | payInfoDTO.getOrderNO(), payInfoDTO.getOpenId(), request); |
| | | } catch (Exception e) { |
| | | return R.fail("获取异常"); |
| | | } |