GET api/SunOA/PI_Post

获取所有职位

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PI_Post
NameDescriptionTypeAdditional information
PID

integer

None.

PostName

string

None.

SortIndex

integer

None.

Del

boolean

None.

OperationTime

date

None.

LastOperator

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PID": 1,
    "PostName": "sample string 2",
    "SortIndex": 1,
    "Del": true,
    "OperationTime": "2024-11-21T18:13:54.2356055+08:00",
    "LastOperator": 1
  },
  {
    "PID": 1,
    "PostName": "sample string 2",
    "SortIndex": 1,
    "Del": true,
    "OperationTime": "2024-11-21T18:13:54.2356055+08:00",
    "LastOperator": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfPI_Post xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SunOAWebAPI.Areas.SunOA.Data">
  <PI_Post>
    <Del>true</Del>
    <LastOperator>1</LastOperator>
    <OperationTime>2024-11-21T18:13:54.2356055+08:00</OperationTime>
    <PID>1</PID>
    <PostName>sample string 2</PostName>
    <SortIndex>1</SortIndex>
  </PI_Post>
  <PI_Post>
    <Del>true</Del>
    <LastOperator>1</LastOperator>
    <OperationTime>2024-11-21T18:13:54.2356055+08:00</OperationTime>
    <PID>1</PID>
    <PostName>sample string 2</PostName>
    <SortIndex>1</SortIndex>
  </PI_Post>
</ArrayOfPI_Post>