GET GetCheckInInfo?aid={aid}&eaId={eaId}
获取签到信息
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| aid |
用户Id |
string |
Required |
| eaId |
活动参与成员ID |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
CheckInViewModels| Name | Description | Type | Additional information |
|---|---|---|---|
| HasCheckIn |
是否可以签到 |
boolean |
None. |
| CheckInCount |
签到天数 |
integer |
None. |
| Title |
标题 |
string |
None. |
| CheckInLogInfoList |
签到详情 |
Collection of CheckInLogInfo |
None. |
Response Formats
application/json, text/json
Sample:
{
"HasCheckIn": true,
"CheckInCount": 2,
"Title": "sample string 3",
"CheckInLogInfoList": [
{
"DayStr": "sample string 1",
"CheckInTimeInfoList": [
{
"StatrTime": "sample string 1",
"EndTime": "sample string 2",
"CheckInTime": "sample string 3",
"CheckOutTime": "sample string 4",
"CheckInAddress": "sample string 5",
"CheckOutAddress": "sample string 6"
},
{
"StatrTime": "sample string 1",
"EndTime": "sample string 2",
"CheckInTime": "sample string 3",
"CheckOutTime": "sample string 4",
"CheckInAddress": "sample string 5",
"CheckOutAddress": "sample string 6"
}
]
},
{
"DayStr": "sample string 1",
"CheckInTimeInfoList": [
{
"StatrTime": "sample string 1",
"EndTime": "sample string 2",
"CheckInTime": "sample string 3",
"CheckOutTime": "sample string 4",
"CheckInAddress": "sample string 5",
"CheckOutAddress": "sample string 6"
},
{
"StatrTime": "sample string 1",
"EndTime": "sample string 2",
"CheckInTime": "sample string 3",
"CheckOutTime": "sample string 4",
"CheckInAddress": "sample string 5",
"CheckOutAddress": "sample string 6"
}
]
}
]
}
application/xml, text/xml
Sample:
<CheckInViewModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Areas.OnlineEducation.Models">
<CheckInCount>2</CheckInCount>
<CheckInLogInfoList>
<CheckInLogInfo>
<CheckInTimeInfoList>
<CheckInTimeInfo>
<CheckInAddress>sample string 5</CheckInAddress>
<CheckInTime>sample string 3</CheckInTime>
<CheckOutAddress>sample string 6</CheckOutAddress>
<CheckOutTime>sample string 4</CheckOutTime>
<EndTime>sample string 2</EndTime>
<StatrTime>sample string 1</StatrTime>
</CheckInTimeInfo>
<CheckInTimeInfo>
<CheckInAddress>sample string 5</CheckInAddress>
<CheckInTime>sample string 3</CheckInTime>
<CheckOutAddress>sample string 6</CheckOutAddress>
<CheckOutTime>sample string 4</CheckOutTime>
<EndTime>sample string 2</EndTime>
<StatrTime>sample string 1</StatrTime>
</CheckInTimeInfo>
</CheckInTimeInfoList>
<DayStr>sample string 1</DayStr>
</CheckInLogInfo>
<CheckInLogInfo>
<CheckInTimeInfoList>
<CheckInTimeInfo>
<CheckInAddress>sample string 5</CheckInAddress>
<CheckInTime>sample string 3</CheckInTime>
<CheckOutAddress>sample string 6</CheckOutAddress>
<CheckOutTime>sample string 4</CheckOutTime>
<EndTime>sample string 2</EndTime>
<StatrTime>sample string 1</StatrTime>
</CheckInTimeInfo>
<CheckInTimeInfo>
<CheckInAddress>sample string 5</CheckInAddress>
<CheckInTime>sample string 3</CheckInTime>
<CheckOutAddress>sample string 6</CheckOutAddress>
<CheckOutTime>sample string 4</CheckOutTime>
<EndTime>sample string 2</EndTime>
<StatrTime>sample string 1</StatrTime>
</CheckInTimeInfo>
</CheckInTimeInfoList>
<DayStr>sample string 1</DayStr>
</CheckInLogInfo>
</CheckInLogInfoList>
<HasCheckIn>true</HasCheckIn>
<Title>sample string 3</Title>
</CheckInViewModels>