POST Visual/getCorpSubjectList
获取公司主体列表
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
CorpSubjectListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| fDefaultValue | integer |
None. |
|
| list | Collection of t_DbCorpSubject |
None. |
|
| error | integer |
None. |
|
| Msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"fDefaultValue": 1,
"list": [
{
"fItemId": 1,
"fName": "sample string 2"
},
{
"fItemId": 1,
"fName": "sample string 2"
}
],
"error": 2,
"Msg": "sample string 3"
}
application/xml, text/xml
Sample:
<CorpSubjectListModel 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>
<fDefaultValue>1</fDefaultValue>
<list xmlns:d2p1="http://schemas.datacontract.org/2004/07/DbFrameModel">
<d2p1:t_DbCorpSubject>
<d2p1:fItemId>1</d2p1:fItemId>
<d2p1:fName>sample string 2</d2p1:fName>
</d2p1:t_DbCorpSubject>
<d2p1:t_DbCorpSubject>
<d2p1:fItemId>1</d2p1:fItemId>
<d2p1:fName>sample string 2</d2p1:fName>
</d2p1:t_DbCorpSubject>
</list>
</CorpSubjectListModel>