GET api/SysAdmin/PagePermission?token={token}&uid={uid}&page={page}
“PagePermission”的文档。
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
token | “token”的文档。 |
Define this parameter in the request URI. |
uid | “uid”的文档。 |
Define this parameter in the request URI. |
page | “page”的文档。 |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{ "Page": "sample string 1", "PRead": 2, "PEdit": 3, "PAdd": 4, "PDelete": 5, "PExport": 6, "Success": 7, "Message": "sample string 8", "DataId": "sample string 9", "Uid": "sample string 10", "UserId": 11 }
application/xml, text/xml
Sample:
<PagePermissionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TaiShengShi.Models.Admin"> <DataId>sample string 9</DataId> <Message>sample string 8</Message> <Success>7</Success> <Uid>sample string 10</Uid> <UserId>11</UserId> <PAdd>4</PAdd> <PDelete>5</PDelete> <PEdit>3</PEdit> <PExport>6</PExport> <PRead>2</PRead> <Page>sample string 1</Page> </PagePermissionModel>