- 开放平台须知
- 开放平台接口
- 巡检
- 主数据
- 训练
- 费用单
- 表单
查询获得某个证书的学员明细
POST
/{{route}}/train/open/cert/stuCertList
开放平台
最后修改时间:2025-04-07 02:51:28
请求参数
Query 参数
version
integer
版本
示例值:
1
Header 参数
ent
string
企业
示例值:
{{ent}}
Authorization
string
必需
示例值:
{{Authorization}}
Content-Type
string
可选
默认值:
application/json
Body 参数application/json
参数
certId
integer <int64>
证书ID
employeeId
integer <int64>
员工ID
employeeName
string
员工名称
employeeCode
string
员工编码
invalid
integer
可选
effectiveDateStart
string
可选
effectiveDateEnd
string
可选
positionId
integer <int64>
职位ID
positionCode
string
职位编码
roleId
integer <int64>
岗位ID
roleCode
string
岗位编码
workStatus
string
员工状态
organizeId
integer <int64>
运营组织ID
organizeCode
string
运营组织编码
franchiseeType
string
可选
storeId
integer <int64>
门店ID
storeCode
string
门店编码
issueMethod
integer
可选
pageNumber
integer
页码
pageSize
integer
页容量
示例
{
"certId": 0,
"employeeId": 0,
"employeeName": "string",
"employeeCode": "string",
"invalid": 0,
"effectiveDateStart": "string",
"effectiveDateEnd": "string",
"positionId": 0,
"positionCode": "string",
"roleId": 0,
"roleCode": "string",
"workStatus": "string",
"organizeId": 0,
"organizeCode": "string",
"franchiseeType": "string",
"storeId": 0,
"storeCode": "string",
"issueMethod": 0,
"pageNumber": 0,
"pageSize": 0
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST '/{{route}}/train/open/cert/stuCertList?version=1&version=' \
--header 'ent: {{ent}}' \
--header 'ent;' \
--header 'Authorization: {{Authorization}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"certId": 0,
"employeeId": 0,
"employeeName": "string",
"employeeCode": "string",
"invalid": 0,
"effectiveDateStart": "string",
"effectiveDateEnd": "string",
"positionId": 0,
"positionCode": "string",
"roleId": 0,
"roleCode": "string",
"workStatus": "string",
"organizeId": 0,
"organizeCode": "string",
"franchiseeType": "string",
"storeId": 0,
"storeCode": "string",
"issueMethod": 0,
"pageNumber": 0,
"pageSize": 0
}'
返回响应
🟢200成功
application/json
Body
结果
status
integer
结果码
返回状态码
message
string
结果信息
返回信息
默认值:
BaseResultCodeEnum.SUCCESS.getMsg()
data
object (PageStuCertListVo)
返回数据
list
array[object (StuCertListVo) {21}]
可选
pageNumber
integer
可选
pageSize
integer
可选
totalPage
integer
可选
totalRow
integer
total row
示例
{
"status": 0,
"message": "",
"data": {
"list": [
{
"stuCertId": 0,
"employeeId": 0,
"employeeName": "",
"employeeCode": "",
"workStatus": "",
"entryDate": "",
"certId": 0,
"certName": "",
"certCode": "",
"positionName": "",
"roleName": "",
"organizeList": [
{
"organizeId": 0,
"organizeName": "",
"organizeCode": ""
}
],
"storeList": [
{
"storeId": 0,
"storeName": "",
"storeCode": ""
}
],
"issueMethod": 0,
"awardedDate": "",
"effectiveDate": "",
"checkStatus": "",
"invalid": 0
}
],
"pageNumber": 0,
"pageSize": 0,
"totalPage": 0,
"totalRow": 0
}
}
修改于 2025-04-07 02:51:28