POST VueApi/getHomeMsgBlockData
首页消息块
Request Information
URI Parameters
None.
Body Parameters
HomeMsgBlockReqModel| Name | Description | Type | Additional information |
|---|---|---|---|
| fItemId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"fItemId": 1
}
application/xml, text/xml
Sample:
<HomeMsgBlockReqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.Models.Vue"> <fItemId>1</fItemId> </HomeMsgBlockReqModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HomeMsgBlockResModel| Name | Description | Type | Additional information |
|---|---|---|---|
| fTitle | string |
None. |
|
| list | Collection of t_HomeMsgBlockEntry |
None. |
|
| result | DataTable |
None. |
|
| error | integer |
None. |
|
| Msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"fTitle": "sample string 1",
"list": [
{
"fItemId": 1,
"fBillTypeId": 2,
"fPageIndex": 3,
"fIndex": 4,
"fFieldName": "sample string 5",
"fCaption": "sample string 6"
},
{
"fItemId": 1,
"fBillTypeId": 2,
"fPageIndex": 3,
"fIndex": 4,
"fFieldName": "sample string 5",
"fCaption": "sample string 6"
}
],
"result": null,
"error": 2,
"Msg": "sample string 3"
}
application/xml, text/xml
Sample:
<HomeMsgBlockResModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.VueApi">
<Msg>sample string 3</Msg>
<error>2</error>
<fTitle>sample string 1</fTitle>
<list xmlns:d2p1="http://schemas.datacontract.org/2004/07/DbFrameModel">
<d2p1:t_HomeMsgBlockEntry>
<d2p1:fBillTypeId>2</d2p1:fBillTypeId>
<d2p1:fCaption>sample string 6</d2p1:fCaption>
<d2p1:fFieldName>sample string 5</d2p1:fFieldName>
<d2p1:fIndex>4</d2p1:fIndex>
<d2p1:fItemId>1</d2p1:fItemId>
<d2p1:fPageIndex>3</d2p1:fPageIndex>
</d2p1:t_HomeMsgBlockEntry>
<d2p1:t_HomeMsgBlockEntry>
<d2p1:fBillTypeId>2</d2p1:fBillTypeId>
<d2p1:fCaption>sample string 6</d2p1:fCaption>
<d2p1:fFieldName>sample string 5</d2p1:fFieldName>
<d2p1:fIndex>4</d2p1:fIndex>
<d2p1:fItemId>1</d2p1:fItemId>
<d2p1:fPageIndex>3</d2p1:fPageIndex>
</d2p1:t_HomeMsgBlockEntry>
</list>
<result i:nil="true" />
</HomeMsgBlockResModel>