GET GetMyChildList?aid={aid}&shopId={shopId}&pIndex={pIndex}&pageSize={pageSize}
我的同学
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| aid |
用户ID |
string |
Required |
| shopId |
商城ID |
string |
Required |
| pIndex |
第几页 |
integer |
Default value is 1 |
| pageSize |
每页条数 |
integer |
Default value is 12 |
Body Parameters
None.
Response Information
Resource Description
MyChildList| Name | Description | Type | Additional information |
|---|---|---|---|
| MList |
列表集合 |
Collection of MyChild |
None. |
| TotalPageCount |
页数 |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"MList": [
{
"Img": "sample string 1",
"Name": "sample string 2",
"CreateTime": "sample string 3"
},
{
"Img": "sample string 1",
"Name": "sample string 2",
"CreateTime": "sample string 3"
}
],
"TotalPageCount": 1
}
application/xml, text/xml
Sample:
<MyChildList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Areas.OnlineEducation.Models">
<MList>
<MyChild>
<CreateTime>sample string 3</CreateTime>
<Img>sample string 1</Img>
<Name>sample string 2</Name>
</MyChild>
<MyChild>
<CreateTime>sample string 3</CreateTime>
<Img>sample string 1</Img>
<Name>sample string 2</Name>
</MyChild>
</MList>
<TotalPageCount>1</TotalPageCount>
</MyChildList>