- 首页
- 人资项目/组织架构-部门
- 人资项目/员工管理
- 人资项目/登录
- 人资项目/角色管理
- 人资项目/权限点管理
- 人资项目/用户相关
- 社保
- 审批
- 考勤设置管理
- 考勤管理
- 薪资配置
- 薪资管理
- 实战接口
查询用户薪资
开发中
GET
/salarys/modify/{userId}
请求参数
Path 参数
userId
string
必需
示例值:
1235396724497268736
Header 参数
Authorization
string
可选
默认值:
Bearer {{token}}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://heimahr.itheima.net/api/salarys/modify/1235396724497268736' \
--header 'Authorization: Bearer '
返回响应
🟢200成功
application/json
Body
success
boolean
必需
code
integer
必需
message
string
必需
data
object
必需
userId
integer
必需
currentBasicSalary
integer | null
必需
currentPostWage
integer | null
必需
fixedBasicSalary
integer
必需
fixedPostWage
integer
必需
correctionOfBasicWages
integer | null
必需
turnToPostWages
integer | null
必需
示例
{
"success": true,
"code": 10000,
"message": "操作成功!",
"data": {
"userId": "1235396724497268736",
"currentBasicSalary": 8888,
"currentPostWage": 8888,
"fixedBasicSalary": 8888,
"fixedPostWage": 8888,
"correctionOfBasicWages": 1234,
"turnToPostWages": 1234
}
}