GET api/EmergencyTask/EmergencyStudyStaffByTaskId?taskId={taskId}
根据任务id获取预案执行人情况
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| taskId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ResponseResultOfListOfEmergencyTaskStaffViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Mesg | string |
None. |
|
| Data | Collection of EmergencyTaskStaffViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Mesg": "sample string 2",
"Data": [
{
"TaskId": "sample string 1",
"StaffId": "sample string 2",
"StaffTel": "sample string 3",
"TaskStatus": 4,
"TaskStatusName": "sample string 5",
"ComplateTime": "sample string 6"
},
{
"TaskId": "sample string 1",
"StaffId": "sample string 2",
"StaffTel": "sample string 3",
"TaskStatus": 4,
"TaskStatusName": "sample string 5",
"ComplateTime": "sample string 6"
}
]
}