POST StatReports/GetProjectTypesAmountCashed

获取各产品线实际回款金额

Request Information

URI Parameters

None.

Body Parameters

BussinessDeptCriteria
NameDescriptionTypeAdditional information
CompanyCodes

string

None.

StartTime

date

None.

EndTime

date

None.

DeptIds

string

None.

ProjectRole

string

None.

UserIds

string

None.

Pointer

string

None.

IsActived

boolean

None.

PageSize

integer

None.

CurrentPage

integer

None.

CompanyCode

string

None.

Sort

Collection of SortCriteria

None.

Request Formats

application/json, text/json

Sample:
{
  "CompanyCodes": "sample string 1",
  "StartTime": "2026-06-02T20:30:50.3313437+08:00",
  "EndTime": "2026-06-02T20:30:50.3313437+08:00",
  "DeptIds": "sample string 2",
  "ProjectRole": "sample string 3",
  "UserIds": "sample string 4",
  "Pointer": "sample string 5",
  "IsActived": true,
  "PageSize": 1,
  "CurrentPage": 1,
  "CompanyCode": "sample string 6",
  "Sort": [
    {
      "SortOrder": 1,
      "SortField": "sample string 2",
      "Descending": true
    },
    {
      "SortOrder": 1,
      "SortField": "sample string 2",
      "Descending": true
    }
  ]
}

application/xml, text/xml

Sample:
<BussinessDeptCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model.Criteria">
  <CompanyCode xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">sample string 6</CompanyCode>
  <CurrentPage xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">1</CurrentPage>
  <IsActived xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">true</IsActived>
  <PageSize xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">1</PageSize>
  <Sort xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">
    <SortCriteria>
      <Descending>true</Descending>
      <SortField>sample string 2</SortField>
      <SortOrder>1</SortOrder>
    </SortCriteria>
    <SortCriteria>
      <Descending>true</Descending>
      <SortField>sample string 2</SortField>
      <SortOrder>1</SortOrder>
    </SortCriteria>
  </Sort>
  <CompanyCodes>sample string 1</CompanyCodes>
  <DeptIds>sample string 2</DeptIds>
  <EndTime>2026-06-02T20:30:50.3313437+08:00</EndTime>
  <Pointer>sample string 5</Pointer>
  <ProjectRole>sample string 3</ProjectRole>
  <StartTime>2026-06-02T20:30:50.3313437+08:00</StartTime>
  <UserIds>sample string 4</UserIds>
</BussinessDeptCriteria>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoteResponseOfListOfAmountCashedModel
NameDescriptionTypeAdditional information
success

boolean

None.

errors

string

None.

unauthed

boolean

None.

result

Collection of AmountCashedModel

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "errors": "sample string 2",
  "unauthed": true,
  "result": [
    {
      "Company": "sample string 1",
      "CompanyId": "sample string 2",
      "ProjectType": "sample string 3",
      "PaybackAmount": 4.0
    },
    {
      "Company": "sample string 1",
      "CompanyId": "sample string 2",
      "ProjectType": "sample string 3",
      "PaybackAmount": 4.0
    }
  ]
}

application/xml, text/xml

Sample:
<RemoteResponseOfArrayOfAmountCashedModeldmGyRm56 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:AmountCashedModel>
      <d2p1:Company>sample string 1</d2p1:Company>
      <d2p1:CompanyId>sample string 2</d2p1:CompanyId>
      <d2p1:PaybackAmount>4</d2p1:PaybackAmount>
      <d2p1:ProjectType>sample string 3</d2p1:ProjectType>
    </d2p1:AmountCashedModel>
    <d2p1:AmountCashedModel>
      <d2p1:Company>sample string 1</d2p1:Company>
      <d2p1:CompanyId>sample string 2</d2p1:CompanyId>
      <d2p1:PaybackAmount>4</d2p1:PaybackAmount>
      <d2p1:ProjectType>sample string 3</d2p1:ProjectType>
    </d2p1:AmountCashedModel>
  </Result>
  <Success>true</Success>
  <UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfArrayOfAmountCashedModeldmGyRm56>