GET api/CleanTask/GetCleanTemplateContent?cleanTaskStaffId={cleanTaskStaffId}
获取执行人提交的模板结果数据
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| cleanTaskStaffId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ResponseResultObjOfListOfCleanTemplateContentRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Mesg | string |
None. |
|
| Data | Collection of CleanTemplateContentRequestModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Mesg": "sample string 2",
"Data": [
{
"QuestionId": "sample string 1",
"Answer": [
{
"Text": "sample string 1",
"IsError": true
},
{
"Text": "sample string 1",
"IsError": true
}
],
"Memo": "sample string 2"
},
{
"QuestionId": "sample string 1",
"Answer": [
{
"Text": "sample string 1",
"IsError": true
},
{
"Text": "sample string 1",
"IsError": true
}
],
"Memo": "sample string 2"
}
]
}