GET api/Fee/GetFeeExecuteAuditList?DomainID={DomainID}&DealerID={DealerID}&MonthID={MonthID}
获取执行审核列表
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| DomainID | string |
Required |
|
| DealerID | string |
Required |
|
| MonthID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ResultModelOfIEnumerableOfFeeExecuteAuditList| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | ReturnCode |
None. |
|
| Message | string |
None. |
|
| Data | Collection of FeeExecuteAuditList |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 200,
"Message": "sample string 1",
"Data": [
{
"CustomerNumber": "sample string 1",
"CustomerName": "sample string 2",
"TotalAmount": 1.0,
"VerifiedAmount": 1.0,
"VerifiableAmount": 1.0
},
{
"CustomerNumber": "sample string 1",
"CustomerName": "sample string 2",
"TotalAmount": 1.0,
"VerifiedAmount": 1.0,
"VerifiableAmount": 1.0
}
]
}
application/xml, text/xml
Sample:
<ResultModelOfArrayOfFeeExecuteAuditList1VTMippo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Utility">
<Code>Success</Code>
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/JT.VSFA.App.WebAPI.Areas.Fee.ViewModel">
<d2p1:FeeExecuteAuditList>
<d2p1:CustomerName>sample string 2</d2p1:CustomerName>
<d2p1:CustomerNumber>sample string 1</d2p1:CustomerNumber>
<d2p1:TotalAmount>1</d2p1:TotalAmount>
<d2p1:VerifiableAmount>1</d2p1:VerifiableAmount>
<d2p1:VerifiedAmount>1</d2p1:VerifiedAmount>
</d2p1:FeeExecuteAuditList>
<d2p1:FeeExecuteAuditList>
<d2p1:CustomerName>sample string 2</d2p1:CustomerName>
<d2p1:CustomerNumber>sample string 1</d2p1:CustomerNumber>
<d2p1:TotalAmount>1</d2p1:TotalAmount>
<d2p1:VerifiableAmount>1</d2p1:VerifiableAmount>
<d2p1:VerifiedAmount>1</d2p1:VerifiedAmount>
</d2p1:FeeExecuteAuditList>
</Data>
<Message>sample string 1</Message>
</ResultModelOfArrayOfFeeExecuteAuditList1VTMippo>