POST api/Attendance/AddApprovalData
提交审核数据
Request Information
URI Parameters
None.
Body Parameters
AddApprovalData| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplyId |
申请id |
string |
None. |
| ApprovalType |
申请类型 0-审核通过,1-审核未通过 |
integer |
None. |
| StaffId |
提交人 |
string |
None. |
| remark |
备注 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ApplyId": "sample string 1",
"ApprovalType": 2,
"StaffId": "sample string 3",
"remark": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseResultObjOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Mesg | string |
None. |
|
| Data | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Mesg": "sample string 2",
"Data": "sample string 3"
}