文档
测试

所有系列

GET
/mall/api/pool/queryALlBrand

响应参数

参数名
类型
描述
必填
code
int
状态码 0 成功 其他失败
必填
msg
String
响应信息
必填
data
Object
响应数据
必填

说明 / 示例

## `返回示例 - 带注释` ```java { "code": 0, "msg": "請求成功", "data": [ { "id": 1001012, // 系列id "name": "火影忍者", // 系列名称 "isReco": 0, // 是否热门推荐 1 推荐 0 不推荐 "mainPic": "https://img0.baidu.com/it/u=3031084643,1334557890&fm=26&fmt=auto", // 系列主图 "iconPic": "https://img0.baidu.com/it/u=3031084643,1334557890&fm=26&fmt=auto", // 系列图标 "addTime": "2021-11-16 10:34:03", "updateTime": "2021-11-16 10:39:48", "deleted": false } ] } ``` ## `返回示例 - 不带注释` ```java { "code": 0, "msg": "請求成功", "data": [ { "id": 1001012, "name": "火影忍者", "isReco": 0, "mainPic": "https://img0.baidu.com/it/u=3031084643,1334557890&fm=26&fmt=auto", "iconPic": "https://img0.baidu.com/it/u=3031084643,1334557890&fm=26&fmt=auto", "addTime": "2021-11-16 10:34:03", "updateTime": "2021-11-16 10:39:48", "deleted": false } ] } ```