This commit is contained in:
wuzhimiao
2025-10-31 09:30:04 +08:00
parent 577b20661a
commit e84b367360
151 changed files with 10747 additions and 17 deletions

View File

@@ -0,0 +1,12 @@
// 获取人员基本信息详情
import { post, get } from '../../utils/request.js'
export function getPersonInfo(id) {
return get({
url: `personnel/personBaseInfo/${id}`,
method: 'get'
})
}