获取可充值金额
## 获取可充值金额
### 接口说明
```
接口用途:获取某支付方式的可充值金额
请求地址:充值站/xyclient/system/
请求方式:Get 或 Post
```
### 请求参数
| 名称| 参数 | 类型 | 默认值 | 示例 |说明 |是否必填
| -------| ------- | ------------ | -------- | -------- | -------- |-
| 请求类型 | cmd | string | xy.get.money.list | xy.get.money.list | 固定值|是
| 充值方式 | gateway | string | | currency| 充值方式 |是
### 请求响应
```json
{
"code": 1,
"msg": "",
"data": {
"method_id": 1003, //支付方式编号
"method_money": [ //支付金额集合
"1",
"5",
"10"
],
"method_min": 5, //最小金额
"method_max": 50000, //最大金额
"method_mincode": "客官,不要太小气,多充些吧! ", //未达到最小金额提示
"method_maxcode": "土豪,充的太多了,受不了!" //超过最大金额提示
}
}
```