POST Sys/SysDicSave
Request Information
URI Parameters
None.
Body Parameters
Sys_Dic| Name | Description | Type | Additional information |
|---|---|---|---|
| IId | integer |
None. |
|
| Status | integer |
None. |
|
| SName | string |
None. |
|
| Code | integer |
None. |
|
| SValue | integer |
None. |
|
| Remark | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"IId": 1,
"Status": 2,
"SName": "sample string 3",
"Code": 4,
"SValue": 1,
"Remark": "sample string 5"
}
application/xml, text/xml
Sample:
<Sys_Dic xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models.EF"> <Code>4</Code> <IId>1</IId> <Remark>sample string 5</Remark> <SName>sample string 3</SName> <SValue>1</SValue> <Status>2</Status> </Sys_Dic>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | integer |
None. |
|
| Msg | string |
None. |
|
| Token | string |
None. |
|
| Key | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": 1,
"Msg": "sample string 2",
"Token": "sample string 3",
"Key": "sample string 4"
}
application/xml, text/xml
Sample:
<BaseResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models"> <Key>sample string 4</Key> <Msg>sample string 2</Msg> <Success>1</Success> <Token>sample string 3</Token> </BaseResult>