69.支付方式查询(gy.erp.trade.payment.get)

马浩栋发表于:2019年01月28日 18:08:23更新于:2019年02月13日 14:03:41

1.1    业务简述

1.2    请求参数

字段名

类型

描述

必填

备注

page_no

int

页码

默认为1

page_size

int

每页大小

默认为10

modify_start_date

datetime

修改时间开始段


modify_end_date

datetime

修改时间结束段


code

string

支付方式代码


Json请求示例:

{
    "appkey": "112194",
    "sessionkey": "754a424bb6874a1fb8a7371f05e83974",
    "method": "gy.erp.trade.payment.get",
    "page_no": "1",
    "page_size": "10",
    "sign": "36856CAA9D803239D28D1C9938B558D7"
}

1.3    响应参数

字段名

类型

描述

必填

备注

success

boolean

成功与否



errorDesc

string

错误信息



subErrorCode

string




errorDesc

string




subErrorDesc

string




requestMethod

string




tradePayments

tradePayment[]

支付方式列表



total

int

总记录数



tradePayment:

字段名

类型

描述

必填

备注

code

string

支付方式代码



name

string

支付方式名称



note

string

备注



create_date

datetime

创建时间



modify_date

datetime

修改时间



Json返回示例:

{
    "success": true,
    "errorCode": "",
    "subErrorCode": "",
    "errorDesc": "",
    "subErrorDesc": "",
    "requestMethod": "gy.erp.trade.payment.get",
    "tradePayments": [{
        "code": "zhifubao",
        "name": "支付宝",
        "note": "",
        "create_date": "2013-07-10 09:59:03",
        "modify_date": "2013-07-10 09:59:03"
    }, {
        "code": "wangyin",
        "name": "网银在线",
        "note": "",
        "create_date": "2013-07-10 09:59:21",
        "modify_date": "2013-07-10 09:59:21"
    }, {
        "code": "caifutong",
        "name": "财付通",
        "note": "",
        "create_date": "2013-07-10 09:59:50",
        "modify_date": "2013-07-10 09:59:50"
    }, {
        "code": "huikuan",
        "name": "邮局汇款",
        "note": "",
        "create_date": "2013-07-10 10:00:58",
        "modify_date": "2013-07-10 10:00:58"
    }, {
        "code": "cod",
        "name": "货到付款",
        "note": "",
        "create_date": "2013-07-12 16:01:18",
        "modify_date": "2013-07-12 16:01:18"
    }, {
        "code": "cash",
        "name": "现金支付",
        "note": "",
        "create_date": "2014-02-26 13:47:04",
        "modify_date": "2014-02-26 13:47:04"
    }, {
        "code": "weixin",
        "name": "微信支付",
        "note": "",
        "create_date": "2014-03-27 17:29:39",
        "modify_date": "2015-03-12 17:13:11"
    }, {
        "code": "balance",
        "name": "预存款",
        "note": "",
        "create_date": "2014-11-03 13:55:08",
        "modify_date": "2014-11-03 13:55:08"
    }, {
        "code": "yinlian",
        "name": "银联支付",
        "note": "",
        "create_date": "2014-12-23 11:58:42",
        "modify_date": "2014-12-23 11:58:42"
    }, {
        "code": "giftcard",
        "name": "礼品卡",
        "note": "",
        "create_date": "2015-01-28 17:01:13",
        "modify_date": "2015-01-28 17:01:13"
    }],
    "total": 41
}