增加代码表配置项
URL地址:api/IPR/CodeItem/InsertCodeItem
请求方式:POST
传递参数
None.
传递对象
CodeItemEntity (代码表配置项对象)名 称 | 描 述 | 参数类型 | 附加信息 |
---|---|---|---|
fId |
标识列 |
integer |
None. |
fCodeTypeID |
代码表类型ID |
integer |
None. |
fValue |
数值 |
string |
None. |
fText |
文本 |
string |
None. |
fRemark |
备注 |
string |
None. |
fSort | integer |
None. |
application/json, text/json
Sample:
{ "fId": 1, "fCodeTypeID": 2, "fValue": "sample string 3", "fText": "sample string 4", "fRemark": "sample string 5", "fSort": 6 }
application/xml, text/xml
Sample:
<CodeItemEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeChat.Api.Models"> <fCodeTypeID>2</fCodeTypeID> <fId>1</fId> <fRemark>sample string 5</fRemark> <fSort>6</fSort> <fText>sample string 4</fText> <fValue>sample string 3</fValue> </CodeItemEntity>
application/x-www-form-urlencoded
Sample:
Sample not available.
返回对象
HttpResultMessageOfBoolean (bool)名 称 | 描 述 | 参数类型 | 附加信息 |
---|---|---|---|
StatusCode | HttpStatusCode |
None. |
|
Errors | Dictionary of string [key] and string [value] |
None. |
|
Msg | string |
None. |
|
message | string |
None. |
|
Result | boolean |
None. |
返回对象格式
application/json, text/json
Sample:
{ "StatusCode": 100, "Errors": { "sample string 1": "sample string 2", "sample string 3": "sample string 4" }, "Msg": "sample string 1", "message": "sample string 2", "Result": true }
application/xml, text/xml
Sample:
<HttpResultMessageOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeChat.Api.Models"> <Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:KeyValueOfstringstring> <d2p1:Key>sample string 1</d2p1:Key> <d2p1:Value>sample string 2</d2p1:Value> </d2p1:KeyValueOfstringstring> <d2p1:KeyValueOfstringstring> <d2p1:Key>sample string 3</d2p1:Key> <d2p1:Value>sample string 4</d2p1:Value> </d2p1:KeyValueOfstringstring> </Errors> <Msg>sample string 1</Msg> <Result>true</Result> <StatusCode>Continue</StatusCode> <message>sample string 2</message> </HttpResultMessageOfboolean>