工时登记分页查询
POST
/issue/labour-record/page请求参数
Header 参数
Content-Type
string
必需
示例值:
application/json
accessToken
string
必需
示例值:
{{accessToken}}
Body 参数application/json
issueId
integer <int64>
事项id
createBy
integer <int64>
登记人
pageNumber
integer <int32>
页码,默认第一页
endDate
string <date>
登记的截止时间
pageSize
integer <int32>
可选
每页条数,默认每页10条
projectId
integer <int64>
项目id
startDate
string <date>
登记的开始时间
示例
{
"issueId": 1,
"createBy": 1,
"pageNumber": 1,
"endDate": 1646301600000,
"pageSize": 10,
"projectId": 1,
"startDate": 1646301600000
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSON*/*
OK
数据结构
createBy
integer <int64>
登记人id
issueId
integer <int64>
登记人id
recordTime
string <date>
登记时间
id
integer <int64>
登记id
remarks
string
备注
labour
number
工时,以h为单位
示例
{
"code": "0",
"data": {
"total": 1,
"list": [
{
"createBy": 1,
"issueId": 1,
"recordTime": 1646301600000,
"id": 1,
"remarks": "xxx",
"labour": 1
}
]
}
}
最后修改时间: 4 个月前