17.供应商查询(gy.erp.supplier.get)

马浩栋发表于:2019年01月28日 17:30:24更新于:2019年01月30日 09:35:06

1.1    业务简述

1.2    请求参数

字段名

类型

描述

必填

备注

page_no

int

页码

默认为1

page_size

int

每页大小

默认为10

start_date

datetime

修改时间开始段

与end_date搭配使用

end_date

datetime

修改时间结束段

与start_date搭配使用

code

string

供应商代码


Json请求示例:

{
    "appkey": "112194",
    "sessionkey": "754a424bb6874a1fb8a7371f05e83974",
    "method": "gy.erp.supplier.get",
    "page_no": "1",
    "page_size": "2",
    "sign": "6A103FC4101BBD7882A35038A4C7E6FE"
}

1.3    响应参数

字段名

类型

描述

必填

备注

success

boolean

成功与否



errorCode

string

错误代码



subErrorCode

string

子错误代码



errorDesc

string

错误描述



subErrorDesc

string

子错误描述



requestMethod

string

请求方法



supplier_list

supplier []

供应商列表



total

int

总记录数



supplier:

字段名

类型

描述

必填

备注

create_date

datetime

创建时间



modify_date

datetime

修改时间



code

string

代码



name

string

名称



del

boolean

是否停用



note

string

备注



type_name

string

供应商类型



contact_name

string

联系人



contact_phone

string

联系电话



contact_mobile

string

联系手机



contact_fax

string

传真



contact_qq

string

QQ



contact_ww

string

旺旺



adress

string

地址



Json返回示例:

{
    "success": true,
    "errorCode": "",
    "subErrorCode": "",
    "errorDesc": "",
    "subErrorDesc": "",
    "requestMethod": "gy.erp.supplier.get",
    "total": 86,
    "supplier_list": [{
        "create_date": "2016-09-20 20:41:31",
        "modify_date": "2018-05-03 10:42:55",
        "code": "limiren",
        "name": "limiren",
        "del": false,
        "note": "",
        "type_name": "迷你零食",
        "contact_name": "",
        "contact_phone": "",
        "contact_mobile": "",
        "contact_fax": "",
        "contact_qq": "",
        "contact_ww": "",
        "adress": ""
    }, {
        "create_date": "2017-03-07 16:54:44",
        "modify_date": "2018-05-03 10:43:46",
        "code": "tps",
        "name": "泰普森",
        "del": false,
        "note": "测试",
        "type_name": "泰普森",
        "contact_name": "测试",
        "contact_phone": "111",
        "contact_mobile": "111",
        "contact_fax": "111",
        "contact_qq": "111",
        "contact_ww": "",
        "adress": "测试"
    }]
}