部门列表
GET
/api/system/dept/list- 部门列表接口
请求参数
Body 参数application/x-www-form-urlencoded
name
string
部门名称
isStop
integer
可选
是否停用,搜索全部则不传 0=否,1=是
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
msg
string
必需
data
array [object {10}]
必需
id
integer
可选
pid
integer
可选
mobile
string
可选
name
string
可选
duty
string
可选
sort
integer
可选
isStop
integer
可选
updateTime
string
可选
createTime
string
可选
children
array [object {9}]
可选
示例
{
"code": 200,
"msg": "成功",
"data": [
{
"id": 1,
"pid": 0,
"mobile": "18927154977",
"name": "可靠科技1",
"duty": "萧惊鸿",
"sort": 10,
"isStop": 0,
"updateTime": "2022-06-07 11:02:35",
"createTime": "2022-04-13 17:26:35",
"children": [
{
"id": 3,
"pid": 1,
"mobile": "18927154977",
"name": "宏观科技",
"duty": "明康",
"sort": 10,
"isStop": 0,
"createTime": "2022-06-07 14:51:40",
"updateTime": "2022-06-07 14:51:40"
}
]
}
]
}
最后修改时间: 2 年前