POST Visual/getDbDsnModelTargetEntryList?fInterId={fInterId}&fParentId={fParentId}

设计模型列表(模块的单据)

Request Information

URI Parameters

NameDescriptionTypeAdditional information
fInterId

integer

Required

fParentId

integer

Required

Body Parameters

None.

Response Information

Resource Description

DsnModelTargetEntryListResModel
NameDescriptionTypeAdditional information
bill

Collection of t_DbDsnModelTargetEntry

None.

error

integer

None.

Msg

string

None.

Response Formats

application/json, text/json

Sample:
{
  "bill": [
    {
      "fItemId": 1,
      "fIsDraft": true,
      "fInterId": 3,
      "fBillTypeId": 4,
      "fFieldName": "sample string 5",
      "fPageIndex": 6
    },
    {
      "fItemId": 1,
      "fIsDraft": true,
      "fInterId": 3,
      "fBillTypeId": 4,
      "fFieldName": "sample string 5",
      "fPageIndex": 6
    }
  ],
  "error": 1,
  "Msg": "sample string 2"
}

application/xml, text/xml

Sample:
<DsnModelTargetEntryListResModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.VueApi">
  <Msg>sample string 2</Msg>
  <error>1</error>
  <bill xmlns:d2p1="http://schemas.datacontract.org/2004/07/DbFrameModel.DbEntity">
    <d2p1:t_DbDsnModelTargetEntry>
      <d2p1:fBillTypeId>4</d2p1:fBillTypeId>
      <d2p1:fFieldName>sample string 5</d2p1:fFieldName>
      <d2p1:fInterId>3</d2p1:fInterId>
      <d2p1:fIsDraft>true</d2p1:fIsDraft>
      <d2p1:fItemId>1</d2p1:fItemId>
      <d2p1:fPageIndex>6</d2p1:fPageIndex>
    </d2p1:t_DbDsnModelTargetEntry>
    <d2p1:t_DbDsnModelTargetEntry>
      <d2p1:fBillTypeId>4</d2p1:fBillTypeId>
      <d2p1:fFieldName>sample string 5</d2p1:fFieldName>
      <d2p1:fInterId>3</d2p1:fInterId>
      <d2p1:fIsDraft>true</d2p1:fIsDraft>
      <d2p1:fItemId>1</d2p1:fItemId>
      <d2p1:fPageIndex>6</d2p1:fPageIndex>
    </d2p1:t_DbDsnModelTargetEntry>
  </bill>
</DsnModelTargetEntryListResModel>