POST WEvalContract/GetContractChangeList
获取合同变更审核列表
Request Information
URI Parameters
None.
Body Parameters
ContractChangeRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | string |
None. |
|
| PageIndex | integer |
None. |
|
| PageSize | integer |
None. |
|
| KeyWord | string |
None. |
|
| ContractChangeStatus | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "sample string 1",
"PageIndex": 1,
"PageSize": 1,
"KeyWord": "sample string 2",
"ContractChangeStatus": "sample string 3"
}
application/xml, text/xml
Sample:
<ContractChangeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model"> <ContractChangeStatus>sample string 3</ContractChangeStatus> <KeyWord>sample string 2</KeyWord> <PageIndex>1</PageIndex> <PageSize>1</PageSize> <UserId>sample string 1</UserId> </ContractChangeRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RemoteResponseOfContractChangeResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| errors | string |
None. |
|
| unauthed | boolean |
None. |
|
| result | ContractChangeResponse |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"errors": "sample string 2",
"unauthed": true,
"result": {
"ContractChangeList": [
{
"ContractID": 1,
"ContractNo": "sample string 2",
"ContractName": "sample string 3",
"ContractChangeID": 4,
"ChangeTypeName": "sample string 5",
"ContractChangeStateName": "sample string 6",
"CreatedDataTime": "2026-06-02T20:34:12.1641161+08:00",
"CurState": "sample string 7"
},
{
"ContractID": 1,
"ContractNo": "sample string 2",
"ContractName": "sample string 3",
"ContractChangeID": 4,
"ChangeTypeName": "sample string 5",
"ContractChangeStateName": "sample string 6",
"CreatedDataTime": "2026-06-02T20:34:12.1641161+08:00",
"CurState": "sample string 7"
}
],
"Count": 1
}
}
application/xml, text/xml
Sample:
<RemoteResponseOfContractChangeResponsedmGyRm56 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">
<Errors>sample string 2</Errors>
<Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model">
<d2p1:ContractChangeList>
<d2p1:ContractChangeItem>
<d2p1:ChangeTypeName>sample string 5</d2p1:ChangeTypeName>
<d2p1:ContractChangeID>4</d2p1:ContractChangeID>
<d2p1:ContractChangeStateName>sample string 6</d2p1:ContractChangeStateName>
<d2p1:ContractID>1</d2p1:ContractID>
<d2p1:ContractName>sample string 3</d2p1:ContractName>
<d2p1:ContractNo>sample string 2</d2p1:ContractNo>
<d2p1:CreatedDataTime>2026-06-02T20:34:12.1641161+08:00</d2p1:CreatedDataTime>
<d2p1:CurState>sample string 7</d2p1:CurState>
</d2p1:ContractChangeItem>
<d2p1:ContractChangeItem>
<d2p1:ChangeTypeName>sample string 5</d2p1:ChangeTypeName>
<d2p1:ContractChangeID>4</d2p1:ContractChangeID>
<d2p1:ContractChangeStateName>sample string 6</d2p1:ContractChangeStateName>
<d2p1:ContractID>1</d2p1:ContractID>
<d2p1:ContractName>sample string 3</d2p1:ContractName>
<d2p1:ContractNo>sample string 2</d2p1:ContractNo>
<d2p1:CreatedDataTime>2026-06-02T20:34:12.1641161+08:00</d2p1:CreatedDataTime>
<d2p1:CurState>sample string 7</d2p1:CurState>
</d2p1:ContractChangeItem>
</d2p1:ContractChangeList>
<d2p1:Count>1</d2p1:Count>
</Result>
<Success>true</Success>
<UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfContractChangeResponsedmGyRm56>