获取业务日志信息集合
URL地址:api/App/BusinessLog/GetBusinessLog
请求方式:GET
传递参数
None.
传递对象
BusinessLogQuery (检索条件对象)名 称 | 描 述 | 参数类型 | 附加信息 |
---|---|---|---|
BusinessLogIDQuery |
日志编号 |
integer |
None. |
BusinessInfoIDQuery |
业务信息编号 |
integer |
None. |
AccountIdQuery |
操作人员编号 |
integer |
None. |
StartDataQuery |
操作前数据模型 |
string |
None. |
EndDataQuery |
操作后数据模型 |
string |
None. |
RecordDateQuery |
记录时间 |
date |
None. |
application/json, text/json
Sample:
{ "BusinessLogIDQuery": 1, "BusinessInfoIDQuery": 2, "AccountIdQuery": 3, "StartDataQuery": "sample string 4", "EndDataQuery": "sample string 5", "RecordDateQuery": "2021-03-07T23:20:13.7281379+08:00" }
application/xml, text/xml
Sample:
<BusinessLogQuery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeChat.Api.Models"> <AccountIdQuery>3</AccountIdQuery> <BusinessInfoIDQuery>2</BusinessInfoIDQuery> <BusinessLogIDQuery>1</BusinessLogIDQuery> <EndDataQuery>sample string 5</EndDataQuery> <RecordDateQuery>2021-03-07T23:20:13.7281379+08:00</RecordDateQuery> <StartDataQuery>sample string 4</StartDataQuery> </BusinessLogQuery>
application/x-www-form-urlencoded
Sample:
Sample not available.
返回对象
HttpResultMessageOfIListOfBusinessLogEntity (业务日志信息集合)名 称 | 描 述 | 参数类型 | 附加信息 |
---|---|---|---|
StatusCode | HttpStatusCode |
None. |
|
Errors | Dictionary of string [key] and string [value] |
None. |
|
Msg | string |
None. |
|
message | string |
None. |
|
Result | Collection of BusinessLogEntity |
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": [ { "BusinessLogID": 1, "BusinessInfoID": 2, "AccountId": 3, "StartData": "sample string 4", "EndData": "sample string 5", "RecordDate": "2021-03-07T23:20:13.7281379+08:00" }, { "BusinessLogID": 1, "BusinessInfoID": 2, "AccountId": 3, "StartData": "sample string 4", "EndData": "sample string 5", "RecordDate": "2021-03-07T23:20:13.7281379+08:00" } ] }
application/xml, text/xml
Sample:
<HttpResultMessageOfArrayOfBusinessLogEntityj2mLa_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> <BusinessLogEntity> <AccountId>3</AccountId> <BusinessInfoID>2</BusinessInfoID> <BusinessLogID>1</BusinessLogID> <EndData>sample string 5</EndData> <RecordDate>2021-03-07T23:20:13.7281379+08:00</RecordDate> <StartData>sample string 4</StartData> </BusinessLogEntity> <BusinessLogEntity> <AccountId>3</AccountId> <BusinessInfoID>2</BusinessInfoID> <BusinessLogID>1</BusinessLogID> <EndData>sample string 5</EndData> <RecordDate>2021-03-07T23:20:13.7281379+08:00</RecordDate> <StartData>sample string 4</StartData> </BusinessLogEntity> </Result> <StatusCode>Continue</StatusCode> <message>sample string 2</message> </HttpResultMessageOfArrayOfBusinessLogEntityj2mLa_SCg>