#查询分类列表
GET /api/tcc-business-common/advice/classify
类型 | 名称 | 说明 | 类型 |
---|---|---|---|
Query | classifyName 选填 |
类型名字 | string |
Query | systemTag 选填 |
是否为全局分类:0否1是 | integer(int32) |
Query | orgId 选填 |
租户id | integer(int64) |
Query | current 选填 |
当前页 | integer(int64) |
Query | size 选填 |
每页条数 | integer(int64) |
HTTP代码 | 说明 | 类型 |
---|---|---|
200 | OK | RestData |
201 | Created | 无内容 |
401 | Unauthorized | 无内容 |
403 | Forbidden | 无内容 |
404 | Not Found | 无内容 |
{
"code": 200,
"data": {
"records": [
{
"id": "523857278072442880",
"parentId": "0",
"classifyName": "嘿嘿",
"serviceClassify": null,
"serviceAppClassify": "advice",
"parentName": null,
"associateCount": 2,
"children": null,
"sort": 0,
"createBy": "admin",
"createTime": "2020-11-11 11:02:54",
"cover": "gys_tc/20201111/66d9f293-d671-4d8d-86a7-8fd31826316e.jpg",
"systemTag": 0
}
],
"total": 1,
"size": 20,
"current": 1,
"orders": [],
"hitCount": false,
"searchCount": true,
"pages": 1
},
"desc": "操作成功"
}
名称 | 说明 | 类型 |
---|---|---|
id | 分类id | integer (int64) |
parentId | 上级类型id 默认为0 | integer (int64) |
classifyName | 类型名字 | string |
serviceClassify | 绑定服务类型:1资源2内容 | integer (int32) |
serviceAppClassify | 绑定服务的具体类型 | string |
parentName | 上级类型名字 | string |
associateCount | 类型关联数 | integer (int32) |
sort | 排序 | integer (int32) |
createBy | 由谁创建 | string |
createTime | 创建时间 | string (date-time) |
cover | 分类图片 | string |
systemTag | 是否为系统公共分类:0否1是 | string |
children | 该类型下的子类型列表 | List<类型分页VO> |