shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.iplatform.pay.api;
 
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * 订单相关的接口。<p></p>
 * 1) API由客户端调用,包括: APP以及第三方服务等;<br>
 * 2) 在此基础上可以实现服务注册,并配置为支持负载调用。
 * @author 时克英
 * @date 2023-02-26
 */
//@RestController
@RequestMapping("/pay/order")
public class PlatformOrderApi {
}