POST api/System/GetList

获取系统列表

Request Information

URI Parameters

None.

Body Parameters

ListRequest
NameDescriptionTypeAdditional information
Keyword

string

None.

PageIndex

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Keyword": "sample string 1",
  "PageIndex": 2,
  "PageSize": 3
}

application/xml, text/xml

Sample:
<ListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Yidu.Model.TO.Request">
  <Keyword>sample string 1</Keyword>
  <PageIndex>2</PageIndex>
  <PageSize>3</PageSize>
</ListRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResultOfListResponseOfSystemVO
NameDescriptionTypeAdditional information
Code

ApiCode

None.

Message

string

None.

Body

ListResponseOfSystemVO

None.

IsSuccess

boolean

None.

SubCode

SubCode

None.

SubMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": 0,
  "Message": "sample string 1",
  "Body": {
    "List": [
      {
        "Id": "sample string 1",
        "Name": "sample string 2",
        "AppKey": "sample string 3",
        "FileFolder": "sample string 4",
        "CreateTime": "2024-10-19T13:31:33.2442996+08:00"
      },
      {
        "Id": "sample string 1",
        "Name": "sample string 2",
        "AppKey": "sample string 3",
        "FileFolder": "sample string 4",
        "CreateTime": "2024-10-19T13:31:33.2442996+08:00"
      }
    ],
    "TotalCount": 1
  },
  "IsSuccess": true,
  "SubCode": 0,
  "SubMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ApiResultOfListResponseOfSystemVOx3AL3METrUIxL1Kj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Yidu.Model.TO">
  <Body xmlns:d2p1="http://schemas.datacontract.org/2004/07/Yidu.Model.TO.Response">
    <d2p1:List xmlns:d3p1="http://schemas.datacontract.org/2004/07/Yidu.Model.VO">
      <d3p1:SystemVO>
        <d3p1:AppKey>sample string 3</d3p1:AppKey>
        <d3p1:CreateTime>2024-10-19T13:31:33.2442996+08:00</d3p1:CreateTime>
        <d3p1:FileFolder>sample string 4</d3p1:FileFolder>
        <d3p1:Id>sample string 1</d3p1:Id>
        <d3p1:Name>sample string 2</d3p1:Name>
      </d3p1:SystemVO>
      <d3p1:SystemVO>
        <d3p1:AppKey>sample string 3</d3p1:AppKey>
        <d3p1:CreateTime>2024-10-19T13:31:33.2442996+08:00</d3p1:CreateTime>
        <d3p1:FileFolder>sample string 4</d3p1:FileFolder>
        <d3p1:Id>sample string 1</d3p1:Id>
        <d3p1:Name>sample string 2</d3p1:Name>
      </d3p1:SystemVO>
    </d2p1:List>
    <d2p1:TotalCount>1</d2p1:TotalCount>
  </Body>
  <Code>Success</Code>
  <Message>sample string 1</Message>
  <SubCode>Success</SubCode>
  <SubMessage>sample string 2</SubMessage>
</ApiResultOfListResponseOfSystemVOx3AL3METrUIxL1Kj>