- 开放平台须知
- 开放平台接口
- 巡检
- 主数据
- 训练
- 费用单
- 表单
查询某个学习地图下的学员完成情况
POST
/{{route}}/train/open/learnStatisticsEmpOfMap
开放平台
最后修改时间: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
参数
mapId
integer <int64>
地图id
versionId
integer <int64>
版本Id
issueStatDate
string
可选
issueEndDate
string
可选
employeeId
integer <int64>
员工Id
employeeCode
string
员工编码
employeeName
string
员工名称
empMobile
string
手机号
status
integer
可选
roleId
integer <int64>
岗位id
roleCode
string
岗位编码
positionId
integer <int64>
职位id
positionCode
string
职位编码
organizeId
integer <int64>
组织id
organizeCode
string
运营组织编码
storeType
integer
可选
storeId
integer <int64>
门店Id
storeCode
string
门店编码
startStatDate
string
可选
startEndDate
string
可选
statusStatDate
string
可选
statusEndDate
string
可选
sortRule
integer
可选
pageNumber
integer
页面
pageSize
integer
页容量
示例
{
"mapId": 0,
"versionId": 0,
"issueStatDate": "string",
"issueEndDate": "string",
"employeeId": 0,
"employeeCode": "string",
"employeeName": "string",
"empMobile": "string",
"status": 0,
"roleId": 0,
"roleCode": "string",
"positionId": 0,
"positionCode": "string",
"organizeId": 0,
"organizeCode": "string",
"storeType": 0,
"storeId": 0,
"storeCode": "string",
"startStatDate": "string",
"startEndDate": "string",
"statusStatDate": "string",
"statusEndDate": "string",
"sortRule": 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/learnStatisticsEmpOfMap?version=1&version=' \
--header 'ent: {{ent}}' \
--header 'ent;' \
--header 'Authorization: {{Authorization}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"mapId": 0,
"versionId": 0,
"issueStatDate": "string",
"issueEndDate": "string",
"employeeId": 0,
"employeeCode": "string",
"employeeName": "string",
"empMobile": "string",
"status": 0,
"roleId": 0,
"roleCode": "string",
"positionId": 0,
"positionCode": "string",
"organizeId": 0,
"organizeCode": "string",
"storeType": 0,
"storeId": 0,
"storeCode": "string",
"startStatDate": "string",
"startEndDate": "string",
"statusStatDate": "string",
"statusEndDate": "string",
"sortRule": 0,
"pageNumber": 0,
"pageSize": 0
}'
返回响应
🟢200成功
application/json
Body
结果
status
integer
结果码
返回状态码
message
string
结果信息
返回信息
默认值:
BaseResultCodeEnum.SUCCESS.getMsg()
data
object (PageEmpStatisticsOfMapVo)
返回数据
list
array[object (EmpStatisticsOfMapVo) {15}]
可选
pageNumber
integer
可选
pageSize
integer
可选
totalPage
integer
可选
totalRow
integer
total row
示例
{
"status": 0,
"message": "",
"data": {
"list": [
{
"employeeId": 0,
"employeeName": "",
"employeeCode": "",
"empMobile": "",
"roleNames": "",
"organizeList": [
{
"organizeId": 0,
"organizeName": "",
"organizeCode": ""
}
],
"storeList": [
{
"storeId": 0,
"storeName": "",
"storeCode": ""
}
],
"completionSchedule": "",
"status": 0,
"issueDate": "",
"startDate": "",
"statusDate": "",
"positionName": "",
"mainOrgName": ""
}
],
"pageNumber": 0,
"pageSize": 0,
"totalPage": 0,
"totalRow": 0
}
}