支付方式列表(电脑版)

## 支付方式列表(电脑版) ### 接口说明 ``` 接口用途:获取游戏支持的支付方式 请求地址:充值站/xyclient/system/ 请求方式:Get 或 Post ``` ### 请求参数 | 名称| 参数 | 类型 | 默认值 | 示例 |说明 |是否必填 | -------| ------- | ------------ | -------- | -------- | -------- |- | 请求类型 | cmd | string | xy.get.paytype.list | xy.get.paytype.list | 固定值|是 | 游戏编号 | gid | int | | 1000| 游戏编号 |是 | 币种标识 | curcode | string | | CNY| 可为空 |否 ### 请求响应 ```json { "code": 1, "msg": "", "data": { "method_gid": null, "method_game_coin": "平台币2", "method_game_blv": 1, "method_paytype": null, "method_paylist": [ { "method_id": 1002, "method_name": "平台币", //支付方式名称 "method_code": "currency", //支付方式编号 "method_coin": "", "method_payment": 1014, "method_index": 16, "method_curcode": 2, "method_listcode": { "cur_id": 2, //币种编号 "cur_name": "平台币", //币种名称 "cur_blv": 100, //比例 "cur_code": "平台币", "cur_isdel": 0, "cur_tag": "PTB" }, "method_brower": 3, "method_state": 0, "method_isdel": 0, "method_info1": "currency", //支付方式编号 "method_info2": "", "method_info3": "" } ], "method_curcode": { //币种 "cur_id": 1, //币种编号 "cur_name": "人民币", //币种名称 "cur_blv": 100, //比例 "cur_code": "元", "cur_isdel": 0, "cur_tag": "CNY" } } } ```