文档
测试

文章列表查询(代理人埋码)(A端)

POST
http://xxx.com/ehb/articleListQueryByCode

接口描述

许启山:【微店管理页面】-保险文章管理-文章列表查询(根据代理人埋码)

请求参数

参数名
类型
描述
必填
queryType
int
查询类型:0 全部;1 推荐
必填
agentCode
String
代理人埋码
必填

响应参数

参数名
类型
描述
必填
code
int
0 成功;-1 失败
必填
errorCode
String
错误码
必填
errorMsg
String
错误信息
必填
data
Object
必填
articleNumber
int
文章数量
必填
limitNo
int
限制数量
必填
articleList
List
文章列表
必填
articleCode
String
文章编码
必填
articlePic
String
文章图
必填
articleUrl
String
文章链接
必填
articleTitle
String
文章标题
必填
articleDesc
String
文章描述
必填
sort
int
序号
必填

说明 / 示例

**请求示例** ``` { "queryType":0, "agentCode":"" } ``` **返回成功示例** ``` { "code":0, "data":{ "articleNumber":"", "limitNo":"", "articleList":[ { "articleCode":"", "articlePic":"1111", "articleUrl":"", "articleTitle":"", "articleDesc":"", "sort":1 }, { "articlePic":"222", "articleTitle":"", "articleDesc":"", "sort":2 } ] } } ``` **返回失败示例** ``` { "code":-1, "errorCode":"", "errorMsg":"" } ```