获取异体字信息表集合
URL地址:api/IPR/VarChineseChar/GetVarChineseChar
请求方式:GET
传递参数
None.
传递对象
VarChineseCharQuery (检索条件对象)名 称 | 描 述 | 参数类型 | 附加信息 |
---|---|---|---|
VarIDQuery |
主键 |
integer |
None. |
VarCodeQuery |
编号 |
string |
None. |
ChineseCharQuery |
异体字 |
string |
None. |
application/json, text/json
Sample:
{ "VarIDQuery": 1, "VarCodeQuery": "sample string 2", "ChineseCharQuery": "sample string 3" }
application/xml, text/xml
Sample:
<VarChineseCharQuery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeChat.Api.Models"> <ChineseCharQuery>sample string 3</ChineseCharQuery> <VarCodeQuery>sample string 2</VarCodeQuery> <VarIDQuery>1</VarIDQuery> </VarChineseCharQuery>
application/x-www-form-urlencoded
Sample:
Sample not available.
返回对象
HttpResultMessageOfIListOfVarChineseCharEntity (异体字信息表集合)名 称 | 描 述 | 参数类型 | 附加信息 |
---|---|---|---|
StatusCode | HttpStatusCode |
None. |
|
Errors | Dictionary of string [key] and string [value] |
None. |
|
Msg | string |
None. |
|
message | string |
None. |
|
Result | Collection of VarChineseCharEntity |
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": [ { "VarID": 1, "VarCode": "sample string 2", "ChineseChar": "sample string 3" }, { "VarID": 1, "VarCode": "sample string 2", "ChineseChar": "sample string 3" } ] }
application/xml, text/xml
Sample:
<HttpResultMessageOfArrayOfVarChineseCharEntityj2mLa_SCg 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> <VarChineseCharEntity> <ChineseChar>sample string 3</ChineseChar> <VarCode>sample string 2</VarCode> <VarID>1</VarID> </VarChineseCharEntity> <VarChineseCharEntity> <ChineseChar>sample string 3</ChineseChar> <VarCode>sample string 2</VarCode> <VarID>1</VarID> </VarChineseCharEntity> </Result> <StatusCode>Continue</StatusCode> <message>sample string 2</message> </HttpResultMessageOfArrayOfVarChineseCharEntityj2mLa_SCg>