获取业务日志操作基础表集合
URL地址:api/App/BusinessInfo/GetBusinessInfo
请求方式:GET
传递参数
None.
传递对象
BusinessInfoQuery (检索条件对象)名 称 | 描 述 | 参数类型 | 附加信息 |
---|---|---|---|
BusinessInfoIDQuery |
业务信息编号 |
integer |
None. |
IdentifierQuery |
业务信息唯一标识(ControllerName/ActionName) |
string |
None. |
BusinessNameQuery |
业务信息名称 |
string |
None. |
BusinessTypeQuery |
操作类型(1、新增;2、修改;3、删除;4、其他) |
integer |
None. |
RecordDateQuery |
记录时间 |
date |
None. |
application/json, text/json
Sample:
{ "BusinessInfoIDQuery": 1, "IdentifierQuery": "sample string 2", "BusinessNameQuery": "sample string 3", "BusinessTypeQuery": 4, "RecordDateQuery": "2021-03-07T23:17:56.7247001+08:00" }
application/xml, text/xml
Sample:
<BusinessInfoQuery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeChat.Api.Models"> <BusinessInfoIDQuery>1</BusinessInfoIDQuery> <BusinessNameQuery>sample string 3</BusinessNameQuery> <BusinessTypeQuery>4</BusinessTypeQuery> <IdentifierQuery>sample string 2</IdentifierQuery> <RecordDateQuery>2021-03-07T23:17:56.7247001+08:00</RecordDateQuery> </BusinessInfoQuery>
application/x-www-form-urlencoded
Sample:
Sample not available.
返回对象
HttpResultMessageOfIListOfBusinessInfoEntity (业务日志操作基础表集合)名 称 | 描 述 | 参数类型 | 附加信息 |
---|---|---|---|
StatusCode | HttpStatusCode |
None. |
|
Errors | Dictionary of string [key] and string [value] |
None. |
|
Msg | string |
None. |
|
message | string |
None. |
|
Result | Collection of BusinessInfoEntity |
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": [ { "BusinessInfoID": 1, "Identifier": "sample string 2", "BusinessName": "sample string 3", "BusinessType": 4, "RecordDate": "2021-03-07T23:17:56.7247001+08:00" }, { "BusinessInfoID": 1, "Identifier": "sample string 2", "BusinessName": "sample string 3", "BusinessType": 4, "RecordDate": "2021-03-07T23:17:56.7247001+08:00" } ] }
application/xml, text/xml
Sample:
<HttpResultMessageOfArrayOfBusinessInfoEntityj2mLa_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> <BusinessInfoEntity> <BusinessInfoID>1</BusinessInfoID> <BusinessName>sample string 3</BusinessName> <BusinessType>4</BusinessType> <Identifier>sample string 2</Identifier> <RecordDate>2021-03-07T23:17:56.7247001+08:00</RecordDate> </BusinessInfoEntity> <BusinessInfoEntity> <BusinessInfoID>1</BusinessInfoID> <BusinessName>sample string 3</BusinessName> <BusinessType>4</BusinessType> <Identifier>sample string 2</Identifier> <RecordDate>2021-03-07T23:17:56.7247001+08:00</RecordDate> </BusinessInfoEntity> </Result> <StatusCode>Continue</StatusCode> <message>sample string 2</message> </HttpResultMessageOfArrayOfBusinessInfoEntityj2mLa_SCg>