博士后信息
最近更新时间: 2024年04月23日 06时39分15秒
数据中心
描述
根据学工号查询博士后基本信息
支持的模式
客户端模式,授权码模式
请求方法
GET
请求地址
https://api.tongji.edu.cn/v1/dc/user/postdoc_info
数据来源
人事系统
请求参数
参数名 | 是否必填 | 备注 |
---|---|---|
userId | 是 | 学工号,可传入多个学工号(上限为500,使用英文逗号分割)进行批量查询 |
返回参数
参数名 | 类型 | 备注 | 码表 |
---|---|---|---|
userId | string | 职工号 | |
name | string | 姓名 | |
mobileStationCode | string | 流动站代码 | |
mobileStationName | string | 流动站名称 | |
inStationDate | string | 进站日期 | |
contractEndDate | date | 合同截止日期 | |
postdocExitDate | string | 博士后出站日期 | |
isFullPostdoc | string | 是否全职博士后,1-是,0-否。根据人事处博管办口径,招录形式为1-统招、5-外籍、6-留学回国的为“全职博士后” | |
recruitCode | string | 招录形式代码 | |
recruitName | string | 招录形式名称 | |
drGraduationUnit | string | 博士毕业单位 | |
drDegreeDt | string | 博士学历授予日期 | |
drDegreeGrantDt | string | 博士学位授予日期 | |
drThesisTitle | string | 博士学位论文题目 | |
drGrantCountryCode | string | 博士学位授予国家代码 | |
drGrantCountryName | string | 博士学位授予国家名称 |
请求示例
curl -X GET \
'https://api.tongji.edu.cn/v1/dc/user/postdoc_info' \
-H 'userId: '
返回示例
{
"code": "A00000",
"data": {
"count": 2,
"userInfos": [
{
"contractEndDate": "20**-10-16 00:00:00",
"drDegreeDt": " ",
"drDegreeGrantDt": "20**-06-10",
"drGraduationUnit": " ",
"drGrantCountryCode": "156",
"drGrantCountryName": "中华人民共和国",
"drThesisTitle": "微**********属机制",
"inStationDate": "20**-10-16",
"isFullPostdoc": "0",
"mobileStationCode": "*",
"mobileStationName": "环******程",
"name": "刘**",
"postdocExitDate": "20**-07-28",
"recruitCode": "*",
"recruitName": "***职",
"userId": "20*****01"
},
{
"contractEndDate": "20**-10-16 00:00:00",
"drDegreeDt": " ",
"drDegreeGrantDt": "20**-06-30",
"drGraduationUnit": " ",
"drGrantCountryCode": "156",
"drGrantCountryName": "中华人民共和国",
"drThesisTitle": "遗*********例",
"inStationDate": "20**-10-16",
"isFullPostdoc": "0",
"mobileStationCode": "*",
"mobileStationName": "环******程",
"name": "杜*",
"postdocExitDate": "20**-10-31",
"recruitCode": "*",
"recruitName": "***职",
"userId": "20*****02"
}
]
},
"msg": "成功"
}