根据人员分组获取物业下小区巡检报表
GET
/v20/public/index.php/community/property_api.Inspection/getInspectionListByWid
请求参数
Query 参数
village_id
string
小区ID
start_time
string
必需
end_time
string
必需
wid
string
人员id
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/v20/public/index.php/community/property_api.Inspection/getInspectionListByWid?village_id=&start_time=&end_time=&wid='
返回响应
🟢200成功
application/json
Body
status
integer
必需
msg
string
必需
data
array [object {3}]
必需
village
object
小区信息
taskList
array [object {9}]
必需
sum
object
汇总
refresh_ticket
string
必需
示例
{
"status": 0,
"msg": "string",
"data": [
{
"village": {
"village_id": 0,
"village_name": "string"
},
"taskList": [
{
"wname": "string",
"wid": 0,
"pending": "string",
"in_progress": "string",
"completed": "string",
"partially_completed": "string",
"completion_sum": 0,
"completion_rate": 0,
"exception_rate": 0
}
],
"sum": {
"pending_all": 0,
"in_progress_all": 0,
"completed_all": 0,
"partially_completed_all": 0,
"completion_sum_all": 0,
"completion_rate_all": 0,
"exception_rate_all": 0
}
}
],
"refresh_ticket": "string"
}
修改于 2025-06-06 05:50:49