文档
测试

分页列表

GET
http://127.0.0.1:7070/mall/admin/lucky/brand/pageQUery

请求头

参数名
类型
描述
必填
token
string
示例:45840da1-f6ba-4319-9634-a42af1b822af
必填

请求参数

参数名
类型
描述
必填
name
String
品牌名称
必填

响应参数

参数名
类型
描述
必填
code
int
示例:0
必填
msg
string
示例:請求成功
必填

说明 / 示例

## `返回示例` ```java { "code": 0, "msg": "請求成功", "data": { "records": [ // 列表 { "id": 1001012, // id "name": "火影忍者", // 品牌名称 "isReco": 0, // 是否首页推荐 0 不推荐 1 推荐 "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 } ], "total": 1, // 总共数据条数 "size": 10, // 显示条数 "current": 1, // 当前页 "orders": [], "optimizeCountSql": true, "hitCount": false, "searchCount": true, "pages": 1 // 总共页数 } } ```