POST Visual/GetReportHeader

获得报表表头配置

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_DbReportHeader
NameDescriptionTypeAdditional information
fReportId

integer

None.

fIndex

integer

None.

fName

string

None.

fColumn

integer

None.

fRow

integer

None.

fCaption

string

None.

fText

string

None.

fType

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "fReportId": 1,
    "fIndex": 2,
    "fName": "sample string 3",
    "fColumn": 4,
    "fRow": 5,
    "fCaption": "sample string 6",
    "fText": "sample string 7",
    "fType": 8
  },
  {
    "fReportId": 1,
    "fIndex": 2,
    "fName": "sample string 3",
    "fColumn": 4,
    "fRow": 5,
    "fCaption": "sample string 6",
    "fText": "sample string 7",
    "fType": 8
  }
]

application/xml, text/xml

Sample:
<ArrayOft_DbReportHeader xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.DbEntity">
  <t_DbReportHeader>
    <fCaption>sample string 6</fCaption>
    <fColumn>4</fColumn>
    <fIndex>2</fIndex>
    <fName>sample string 3</fName>
    <fReportId>1</fReportId>
    <fRow>5</fRow>
    <fText>sample string 7</fText>
    <fType>8</fType>
  </t_DbReportHeader>
  <t_DbReportHeader>
    <fCaption>sample string 6</fCaption>
    <fColumn>4</fColumn>
    <fIndex>2</fIndex>
    <fName>sample string 3</fName>
    <fReportId>1</fReportId>
    <fRow>5</fRow>
    <fText>sample string 7</fText>
    <fType>8</fType>
  </t_DbReportHeader>
</ArrayOft_DbReportHeader>