23 lines
568 B
Java
23 lines
568 B
Java
|
|
package com.ai.da.controller;
|
||
|
|
|
||
|
|
import com.ai.da.common.response.Response;
|
||
|
|
import io.swagger.annotations.Api;
|
||
|
|
import lombok.extern.slf4j.Slf4j;
|
||
|
|
import org.springframework.web.bind.annotation.CrossOrigin;
|
||
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
|
||
|
|
@CrossOrigin
|
||
|
|
@RestController
|
||
|
|
@RequestMapping("/api/ali-pay-hk")
|
||
|
|
@Api(tags = "网站支付 香港支付宝")
|
||
|
|
@Slf4j
|
||
|
|
public class AlipayHKController {
|
||
|
|
|
||
|
|
public Response<String> createOrder(){
|
||
|
|
return Response.success();
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|