模型基础信息

This commit is contained in:
2024-05-06 13:57:06 +08:00
parent d7fbf3fe64
commit 917dc4e665
67 changed files with 9894 additions and 1104 deletions

View File

@@ -153,3 +153,12 @@ export function getUserByRoleType(data:any) {
method: 'GET'
})
}
// 获取部门下所有用户
export function listAllUserByDeptId(data:any) {
return request({
url: '/user-boot/user/listAllUserByDeptId?deptId=' + data,
method: 'GET'
})
}