POST VueApi/insertGroup
新增组
Request Information
URI Parameters
None.
Body Parameters
InsertGroupReqModel| Name | Description | Type | Additional information |
|---|---|---|---|
| fBillTypeId | integer |
None. |
|
| fParentId | integer |
None. |
|
| fNumber | string |
None. |
|
| fName | string |
None. |
|
| fFieldName | string |
None. |
|
| fItemClassId | integer |
None. |
|
| fRemark | string |
None. |
|
| fCanModify | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"fBillTypeId": 1,
"fParentId": 2,
"fNumber": "sample string 3",
"fName": "sample string 4",
"fFieldName": "sample string 5",
"fItemClassId": 6,
"fRemark": "sample string 7",
"fCanModify": true
}
application/xml, text/xml
Sample:
<InsertGroupReqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel.Models.Vue"> <fBillTypeId>1</fBillTypeId> <fCanModify>true</fCanModify> <fFieldName>sample string 5</fFieldName> <fItemClassId>6</fItemClassId> <fName>sample string 4</fName> <fNumber>sample string 3</fNumber> <fParentId>2</fParentId> <fRemark>sample string 7</fRemark> </InsertGroupReqModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResModel| Name | Description | Type | Additional information |
|---|---|---|---|
| error | integer |
None. |
|
| Msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"error": 1,
"Msg": "sample string 2"
}
application/xml, text/xml
Sample:
<ResModel 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> </ResModel>