POST api/CheckWorkDaily/GetcheckItemAll
Request Information
URI Parameters
None.
Body Parameters
CheckItemListRequest2| Name | Description | Type | Additional information |
|---|---|---|---|
| DataType | integer |
None. |
|
| Code | string |
None. |
|
| PlaceCode | string |
None. |
|
| userID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"DataType": 1,
"Code": "sample string 1",
"PlaceCode": "sample string 2",
"userID": 3
}
application/xml, text/xml
Sample:
<CheckItemListRequest2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models.DingDingModels"> <userID>3</userID> <Code>sample string 1</Code> <DataType>1</DataType> <PlaceCode>sample string 2</PlaceCode> </CheckItemListRequest2>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
CheckItemListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| list | Collection of EntityModel1 |
None. |
|
| now_date | string |
None. |
|
| Checked | integer |
None. |
|
| UnChecked | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"list": [
{
"name": "sample string 1",
"code": "sample string 2",
"start": "sample string 3",
"end": "sample string 4",
"to_emp": "sample string 5",
"from_emp": "sample string 6"
},
{
"name": "sample string 1",
"code": "sample string 2",
"start": "sample string 3",
"end": "sample string 4",
"to_emp": "sample string 5",
"from_emp": "sample string 6"
}
],
"now_date": "sample string 1",
"Checked": 2,
"UnChecked": 3
}
application/xml, text/xml
Sample:
<CheckItemListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WXProgramApi.Models.DingDingModels">
<Checked>2</Checked>
<UnChecked>3</UnChecked>
<list>
<EntityModel1>
<code>sample string 2</code>
<end>sample string 4</end>
<from_emp>sample string 6</from_emp>
<name>sample string 1</name>
<start>sample string 3</start>
<to_emp>sample string 5</to_emp>
</EntityModel1>
<EntityModel1>
<code>sample string 2</code>
<end>sample string 4</end>
<from_emp>sample string 6</from_emp>
<name>sample string 1</name>
<start>sample string 3</start>
<to_emp>sample string 5</to_emp>
</EntityModel1>
</list>
<now_date>sample string 1</now_date>
</CheckItemListResponse>