GET company/company_cash_flow_list?page_index={page_index}&page_size={page_size}

获取企业端收支明细

Request Information

URI Parameters

NameDescriptionTypeAdditional information
page_index

integer

Required

page_size

integer

Required

Body Parameters

None.

Response Information

Resource Description

获取企业端收支明细

DataResponseOfPageResponseOfCompanyCashFlowViewModel
NameDescriptionTypeAdditional information
code

integer

None.

message

string

None.

success

boolean

None.

data

PageResponseOfCompanyCashFlowViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "code": 1,
  "message": "sample string 2",
  "success": true,
  "data": {
    "last_page": true,
    "total_count": 2,
    "list": [
      {
        "payment": 1.0,
        "payment_str": "+1.00",
        "flow_type_id": 2,
        "company_name": "sample string 3",
        "date_created": "sample string 4",
        "title": "sample string 5"
      },
      {
        "payment": 1.0,
        "payment_str": "+1.00",
        "flow_type_id": 2,
        "company_name": "sample string 3",
        "date_created": "sample string 4",
        "title": "sample string 5"
      }
    ]
  }
}