考核罚单列表(第三方提供)

接口地址:/openapi/appraise/queryPage?pageNo=1&pageSize=10

请求方式:POST

请求数据类型:application/json

响应数据类型:*/*

接口描述:本接口只包含考勤、巡检和完工考勤三种规则产生的考核罚单

请求示例:

{
    "orgId":"1363692812214960129",
    "appraiseDate":"2024-09-08",
    "canceled":false
}

请求参数:

参数名称 参数说明 请求类型 是否必须 数据类型 schema
orgId 当前组织id true integer(int64)
appraiseDate 考核日期,需要查询的日期 false string
canceled 是否取消,查询已取消数据的时候传true false string

响应状态:

状态码 说明 schema
200 OK R«open-platform 分页简单对象«OpenApiAppraiseVo»»
201 Created
401 Unauthorized
403 Forbidden
404 Not Found

响应参数:

参数名称 参数说明 类型 schema
code integer(int32) integer(int32)
data
 current 当前页 integer(int64)
 size 每页显示条数 integer(int64)
 total 总数 integer(int64)
 records 查询数据列表 array AISupervisionDevicePageVo
   id 罚单记录id long
   orgName 组织名称 string
   userName 被考核人姓名 string
   userPhone 被考核人电话 string
   positionName 岗位名称 string
   projectName 工地名称 string
   projectId 工地Id long
   eventTypeDesc 罚单类型 string
   appraiseDate 考核日期 string
   fineAmount 罚单金额(元) float
   statusDesc 罚单状态 string
   invalidReason 金额为0的原因 string
   appealEndDate 申诉截止时间 string
   appraisePeriod 罚单所处周期 string
   eventDetailList 出勤记录 array
    eventDate 考勤日期 string(yyyy-MM-dd)
    projectName 工地名称 string
    orgName 组织名称 string
    companyName 公司名称 string
    durationSecond 持续时长秒 long
    startTime 上班时间 string
    endTime 下班时间 string
   ruleDesc 规则描述 string
   punishDesc 处罚描述 string
   canAppeal 是否可申诉 boolean
   canceledExplain 取消原因 string
   appealReason 申诉理由 string
   canceled 是否已取消 boolean
message string
successful boolean

响应示例:

{
    "code": 0,
    "data": {
        "current": 0,
        "records": [
            {
                "id": "1832891697404342281",
                "orgName": "睿云北部公司",
                "projectName": null,
                "projectId": null,
                "userName": "王兰英",
                "userPhone": "13190997909",
                "positionName": "管理员",
                "eventType": "INSPECTION",
                "eventTypeDesc": "巡检不合格",
                "appraiseDate": "2024-09-08",
                "fineAmount": 30,
                "expectValue": 3,
                "realValue": 0,
                "status": "NOT_APPEAL",
                "statusDesc": "未申诉",
                "isInvalid": false,
                "invalidReason": null,
                "appealEndDate": "2024-09-16 07:00:00",
                "periodStartDate": "2024-09-02",
                "periodEndDate": "2024-09-08",
                "appraisePeriod": "2024-09-02至2024-09-08",
                "eventDetailList": [
                    {
                        "eventDate": "2024-09-08",
                        "projectName": "测试工地67",
                        "orgName": "睿-企划部",
                        "companyName": "睿云北部公司",
                        "durationSecond" : 689,
                        "startTime": "2024-09-16 09:20:01",
                        "endTime": "2024-09-16 16:30:21"
                    }
                ],
                "ruleDesc": "每周需巡检3个工地",
                "punishDesc": "应巡检工地数 3 个,实际巡检工地数 0 个,未完成巡检工地数 3 个。",
                "canAppeal": true,
                "canAppealStr": "是",
                "canceledExplain": null,
                "appealReason": null
                "canceled" : false
            }
        ],
        "size": 0,
        "total": 0
    },
    "message": "",
    "successful": true
}
作者:admin  创建时间:2024-09-13 10:25
最后编辑:admin  更新时间:2025-05-30 16:03