POST Visual/GetSonReport

获得子报表

Request Information

URI Parameters

None.

Body Parameters

VisualGetSonReportReqModel
NameDescriptionTypeAdditional information
fReportId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "fReportId": 1
}

application/xml, text/xml

Sample:
<VisualGetSonReportReqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.Models.Visual">
  <fReportId>1</fReportId>
</VisualGetSonReportReqModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of t_DbReportChild
NameDescriptionTypeAdditional information
fReportId

integer

None.

fColumnName

string

None.

fChildReportId

integer

None.

fChildFieldName

string

None.

fType

integer

None.

fValueType

integer

None.

fValue

string

None.

fDbColumnName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "fReportId": 1,
    "fColumnName": "sample string 2",
    "fChildReportId": 3,
    "fChildFieldName": "sample string 4",
    "fType": 5,
    "fValueType": 6,
    "fValue": "sample string 7",
    "fDbColumnName": "sample string 8"
  },
  {
    "fReportId": 1,
    "fColumnName": "sample string 2",
    "fChildReportId": 3,
    "fChildFieldName": "sample string 4",
    "fType": 5,
    "fValueType": 6,
    "fValue": "sample string 7",
    "fDbColumnName": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOft_DbReportChild xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.DbEntity">
  <t_DbReportChild>
    <fChildFieldName>sample string 4</fChildFieldName>
    <fChildReportId>3</fChildReportId>
    <fColumnName>sample string 2</fColumnName>
    <fDbColumnName>sample string 8</fDbColumnName>
    <fReportId>1</fReportId>
    <fType>5</fType>
    <fValue>sample string 7</fValue>
    <fValueType>6</fValueType>
  </t_DbReportChild>
  <t_DbReportChild>
    <fChildFieldName>sample string 4</fChildFieldName>
    <fChildReportId>3</fChildReportId>
    <fColumnName>sample string 2</fColumnName>
    <fDbColumnName>sample string 8</fDbColumnName>
    <fReportId>1</fReportId>
    <fType>5</fType>
    <fValue>sample string 7</fValue>
    <fValueType>6</fValueType>
  </t_DbReportChild>
</ArrayOft_DbReportChild>