POST VueApi/getSettingList
读取用户单据个性化设置
Request Information
URI Parameters
None.
Body Parameters
SettingListReqModel| Name | Description | Type | Additional information |
|---|---|---|---|
| fClassId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"fClassId": "sample string 1"
}
application/xml, text/xml
Sample:
<SettingListReqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.Models.Vue"> <fClassId>sample string 1</fClassId> </SettingListReqModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OptionBillResModel| Name | Description | Type | Additional information |
|---|---|---|---|
| result | Collection of t_ClassOptionBill |
None. |
|
| error | integer |
None. |
|
| Msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": [
{
"fUserId": 1,
"fKey": "sample string 2",
"fName": "sample string 3",
"fValue": "sample string 4"
},
{
"fUserId": 1,
"fKey": "sample string 2",
"fName": "sample string 3",
"fValue": "sample string 4"
}
],
"error": 1,
"Msg": "sample string 2"
}
application/xml, text/xml
Sample:
<OptionBillResModel 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>
<result xmlns:d2p1="http://schemas.datacontract.org/2004/07/DbFrameModel">
<d2p1:t_ClassOptionBill>
<d2p1:fKey>sample string 2</d2p1:fKey>
<d2p1:fName>sample string 3</d2p1:fName>
<d2p1:fUserId>1</d2p1:fUserId>
<d2p1:fValue>sample string 4</d2p1:fValue>
</d2p1:t_ClassOptionBill>
<d2p1:t_ClassOptionBill>
<d2p1:fKey>sample string 2</d2p1:fKey>
<d2p1:fName>sample string 3</d2p1:fName>
<d2p1:fUserId>1</d2p1:fUserId>
<d2p1:fValue>sample string 4</d2p1:fValue>
</d2p1:t_ClassOptionBill>
</result>
</OptionBillResModel>