POST UserRole/saveClassProfileList
系统参数:保存
Request Information
URI Parameters
None.
Body Parameters
ProfileReqModel| Name | Description | Type | Additional information |
|---|---|---|---|
| list | Collection of t_ClassProfile |
None. |
Request Formats
application/json, text/json
Sample:
{
"list": [
{
"fType": "sample string 1",
"fKey": "sample string 2",
"fValue": "sample string 3",
"fDescription": "sample string 4",
"fVisible": true,
"fCtlType": 6,
"fSearch": 7,
"fCapWidth": 8,
"fLeft": 9,
"fTop": 10,
"fWidth": 11,
"fHeight": 12
},
{
"fType": "sample string 1",
"fKey": "sample string 2",
"fValue": "sample string 3",
"fDescription": "sample string 4",
"fVisible": true,
"fCtlType": 6,
"fSearch": 7,
"fCapWidth": 8,
"fLeft": 9,
"fTop": 10,
"fWidth": 11,
"fHeight": 12
}
]
}
application/xml, text/xml
Sample:
<ProfileReqModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DbFrameModel">
<list>
<t_ClassProfile>
<fCapWidth>8</fCapWidth>
<fCtlType>6</fCtlType>
<fDescription>sample string 4</fDescription>
<fHeight>12</fHeight>
<fKey>sample string 2</fKey>
<fLeft>9</fLeft>
<fSearch>7</fSearch>
<fTop>10</fTop>
<fType>sample string 1</fType>
<fValue>sample string 3</fValue>
<fVisible>true</fVisible>
<fWidth>11</fWidth>
</t_ClassProfile>
<t_ClassProfile>
<fCapWidth>8</fCapWidth>
<fCtlType>6</fCtlType>
<fDescription>sample string 4</fDescription>
<fHeight>12</fHeight>
<fKey>sample string 2</fKey>
<fLeft>9</fLeft>
<fSearch>7</fSearch>
<fTop>10</fTop>
<fType>sample string 1</fType>
<fValue>sample string 3</fValue>
<fVisible>true</fVisible>
<fWidth>11</fWidth>
</t_ClassProfile>
</list>
</ProfileReqModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
VisualResModel| 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:
<VisualResModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.Visual"> <Msg>sample string 2</Msg> <error>1</error> </VisualResModel>