| | |
| | | import cn.hutool.core.date.DateUtil; |
| | | import io.swagger.annotations.Api; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.stereotype.Controller; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.servlet.http.HttpServletResponse; |
| | |
| | | import java.security.NoSuchAlgorithmException; |
| | | |
| | | @Slf4j |
| | | @Controller |
| | | @Api(value = "FIUUController", tags = "FIUU支付") |
| | | @RestController |
| | | @Api(value = "FiuuReturnController", tags = "FIUU支付-ReturnURL") |
| | | @RequestMapping(value = "/api/fuPayReturn") |
| | | public class FiuuReturnController { |
| | | |