GET api/v1/User/ScoreRecords?pageIndex={pageIndex}&pageCount={pageCount}
[需登录]用户积分记录
请求信息(Request)
URI 参数
名称 | 描述 | 类型 | 备注 |
---|---|---|---|
pageIndex |
页码 |
integer |
Default value is 0 |
pageCount |
每页记录数 |
integer |
Default value is 20 |
Body 参数
None.
响应信息(Response)
资源描述
RequestResultOfIEnumerableOfUserScoreDTO名称 | 描述 | 类型 | 备注 |
---|---|---|---|
Data | UserScoreDTO 集合 |
None. |
|
Status |
状态(0:成功,1:失败) |
integer |
None. |
Message |
导致失败的相关消息 |
string |
None. |
Total |
集合总数,用于分页时使用 |
integer |
None. |
响应格式
application/json, text/json
Sample:
{ "Data": [ { "ID": 1, "UserID": 2, "Number": 3, "CreateTime": "2025-05-04T17:37:49.2626987+08:00", "Info": "sample string 5", "InfoTag": 0, "Rated": 6, "KeyID": "sample string 7", "KeyID1": "sample string 8", "AddByUid": 9, "AddByName": "sample string 10" }, { "ID": 1, "UserID": 2, "Number": 3, "CreateTime": "2025-05-04T17:37:49.2626987+08:00", "Info": "sample string 5", "InfoTag": 0, "Rated": 6, "KeyID": "sample string 7", "KeyID1": "sample string 8", "AddByUid": 9, "AddByName": "sample string 10" } ], "Status": 1, "Message": "sample string 2", "Total": 3 }
application/xml, text/xml
Sample:
<RequestResultOfArrayOfUserScoreDTO6NgmDdgv xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WLife.Application"> <Message>sample string 2</Message> <Status>1</Status> <Total>3</Total> <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/WLife.Application.DTOs"> <d2p1:UserScoreDTO> <d2p1:AddByName>sample string 10</d2p1:AddByName> <d2p1:AddByUid>9</d2p1:AddByUid> <d2p1:CreateTime>2025-05-04T17:37:49.2626987+08:00</d2p1:CreateTime> <d2p1:ID>1</d2p1:ID> <d2p1:Info>sample string 5</d2p1:Info> <d2p1:InfoTag>None</d2p1:InfoTag> <d2p1:KeyID>sample string 7</d2p1:KeyID> <d2p1:KeyID1>sample string 8</d2p1:KeyID1> <d2p1:Number>3</d2p1:Number> <d2p1:Rated>6</d2p1:Rated> <d2p1:UserID>2</d2p1:UserID> </d2p1:UserScoreDTO> <d2p1:UserScoreDTO> <d2p1:AddByName>sample string 10</d2p1:AddByName> <d2p1:AddByUid>9</d2p1:AddByUid> <d2p1:CreateTime>2025-05-04T17:37:49.2626987+08:00</d2p1:CreateTime> <d2p1:ID>1</d2p1:ID> <d2p1:Info>sample string 5</d2p1:Info> <d2p1:InfoTag>None</d2p1:InfoTag> <d2p1:KeyID>sample string 7</d2p1:KeyID> <d2p1:KeyID1>sample string 8</d2p1:KeyID1> <d2p1:Number>3</d2p1:Number> <d2p1:Rated>6</d2p1:Rated> <d2p1:UserID>2</d2p1:UserID> </d2p1:UserScoreDTO> </Data> </RequestResultOfArrayOfUserScoreDTO6NgmDdgv>