21.收付款账户查询(gy.erp.account.info.get)

马浩栋发表于:2019年01月28日 17:33:28更新于:2019年01月30日 09:42:33

1.1    业务简述

1.2    请求参数

字段名

类型

描述

必填

备注

page_no

int

页码

默认为1

page_size

int

每页大小

默认为10

start_date

datetime

修改时间开始段


end_date

datetime

修改时间结束段


code

string

账户代码


Json请求示例:

{
    "appkey": "112194",
    "sessionkey": "754a424bb6874a1fb8a7371f05e83974",
    "method": "gy.erp.account.info.get",
    "page_no": "1",
    "page_size": "10",
    "code": "AC59983536851",
    "sign": "2481E3D19915AAC6606C502A04C1E75B"
}

1.3    响应参数

响应参数

字段名

类型

描述

必填

备注

success

boolean

成功与否



errorDesc

string

错误信息



subErrorCode

string




errorDesc

string




subErrorDesc

string




requestMethod

string




accounts

account []

收付款账户列表



total

int

总记录数



account:

字段名

类型

描述

必填

备注

id

string

账户ID



create_date

datetime

创建时间



modify_date

datetime

修改时间



code

string

账户代码



name

string

账户名称



account

string

账户账号



usages

int

账户用途


1:收款

2:付款

3:收付款

note

string

备注



Json返回示例:

{
    "success": true,
    "errorCode": "",
    "subErrorCode": "",
    "errorDesc": "",
    "subErrorDesc": "",
    "requestMethod": "gy.erp.account.info.get",
    "accounts": [{
        "id": 59983536851,
        "code": "AC59983536851",
        "name": "h",
        "account": "4dfg",
        "usages": 1,
        "note": "北京银行",
        "create_date": "2017-11-06 09:50:41",
        "modify_date": "2017-11-06 09:50:41"
    }],
    "total": 1
}