|
|
支付中心管理接口定义
|
|
|
# 支付中心管理接口定义 #
|
|
|
|
|
|
**1、获取支付管理列表**
|
|
|
|
...
|
...
|
@@ -174,26 +174,54 @@ http://localhost:8080/platform/PayManageController/updatePayInfoById |
|
|
}
|
|
|
|
|
|
|
|
|
**5、关闭/开启支付方式**
|
|
|
**5、开启支付方式**
|
|
|
|
|
|
关闭/开启支付方式(/PayManageController/offOrOnPayModeById)
|
|
|
开启支付方式(/PayManageController/openPayModeById)
|
|
|
|
|
|
**请求参数**
|
|
|
|
|
|
| 参数名称 | 参数类型 |可否为空 |示例 |默认值 | 备注 |
|
|
|
| ---------|:--------:| --------:|-----:|------:|-----:|
|
|
|
|id |int | 否 |1 | | |
|
|
|
|status |int | 否 |1 | | 0-关闭,1-开启 |
|
|
|
|
|
|
**请求示例**
|
|
|
|
|
|
注意,通用的头部没有列出
|
|
|
|
|
|
http://localhost:8080/platform/PayManageController/offOrOnPayModeById
|
|
|
http://localhost:8080/platform/PayManageController/openPayModeById
|
|
|
|
|
|
{
|
|
|
"id":2,
|
|
|
"status":1
|
|
|
"id":2
|
|
|
}
|
|
|
|
|
|
**响应**
|
|
|
|
|
|
{
|
|
|
"code": 200,
|
|
|
"data": {},
|
|
|
"md5": "d751713988987e9331980363e24189ce",
|
|
|
"message": "操作成功"
|
|
|
}
|
|
|
|
|
|
|
|
|
**6、关闭支付方式**
|
|
|
|
|
|
关闭支付方式(/PayManageController/closePayModeById)
|
|
|
|
|
|
**请求参数**
|
|
|
|
|
|
| 参数名称 | 参数类型 |可否为空 |示例 |默认值 | 备注 |
|
|
|
| ---------|:--------:| --------:|-----:|------:|-----:|
|
|
|
|id |int | 否 |1 | | |
|
|
|
|
|
|
**请求示例**
|
|
|
|
|
|
注意,通用的头部没有列出
|
|
|
|
|
|
http://localhost:8080/platform/PayManageController/closePayModeById
|
|
|
|
|
|
{
|
|
|
"id":2
|
|
|
}
|
|
|
|
|
|
**响应**
|
...
|
...
|
|