1.店铺查询(gy.erp.shop.get)

马浩栋发表于:2019年01月28日 15:55:50更新于:2019年01月30日 09:30:36

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.shop.get",
    "page_no": "1",
    "page_size": "10",
    "code": "gsh_test",
    "sign": "EB50E390ED2C1B17AB817DDDA92BA789"
}

1.3    响应参数

字段名

类型

描述

必填

备注

success

boolean

成功与否



errorCode

string

错误代码



subErrorCode

string

子错误代码



errorDesc

string

错误描述



subErrorDesc

string

子错误描述



requestMethod

string

请求方法



shops

shop[]

店铺列表



total

int

总记录数



shop:

字段名

类型

描述

必填

备注

id

string

ID



nick

string

店铺昵称



code

string

代码



name

string

名称



create_date

datetime

创建时间



modify_date

datetime

修复时间



note

string

备注



type_name

string

类型



Json返回示例:

{
    "success": true,
    "errorCode": "",
    "subErrorCode": "",
    "errorDesc": "",
    "subErrorDesc": "",
    "requestMethod": "gy.erp.shop.get",
    "shops": [{
        "id": 55370664060,
        "nick": "购食汇测试店铺",
        "code": "gsh_test",
        "name": "购食汇测试店铺",
        "create_date": "2017-09-05 11:44:31",
        "modify_date": "2017-09-05 11:44:31",
        "note": "",
        "type_name": "其他"
    }],
    "total": 1
}