|
|
@@ -22,4 +22,81 @@ export function systemExport(options: CommonFetchOptions<{ request: Model.System
|
|
|
return httpClient.commonRequest('/operation/export', 'get', options)
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * 系统运行管理-->IP黑名单管理-->新增
|
|
|
+ */
|
|
|
+export function addIPList(options: CommonFetchOptions<{ request: Model.AddIPListReq; }>) {
|
|
|
+ return httpClient.commonRequest('/operation/addIPList', 'get', options)
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 系统运行管理-->开户黑名单管理-->新增/修改
|
|
|
+ */
|
|
|
+export function dealBlackList(options: CommonFetchOptions<{ request: Model.DealBlackListReq; }>) {
|
|
|
+ return httpClient.commonRequest('/operation/dealBlackList', 'get', options)
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 系统运行管理-->开户黑名单管理-->删除
|
|
|
+ */
|
|
|
+export function delBlackList(options: CommonFetchOptions<{ request: Model.DelBlackListReq; }>) {
|
|
|
+ return httpClient.commonRequest('/operation/delBlackList', 'get', options)
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 系统运行管理-->IP黑名单管理-->删除
|
|
|
+ */
|
|
|
+export function delIPList(options: CommonFetchOptions<{ request: Model.DelIPListReq; }>) {
|
|
|
+ return httpClient.commonRequest('/operation/delIPList', 'get', options)
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 系统运行管理-->终端登录日志-->导出
|
|
|
+ */
|
|
|
+export function loginlogExport(options: CommonFetchOptions<{ request: Model.LoginLogExportReq; }>) {
|
|
|
+ return httpClient.commonRequest('/operation/loginlogExport', 'get', options)
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 系统运行管理-->终端登录日志-->详情
|
|
|
+ */
|
|
|
+export function loginlogview(options: CommonFetchOptions<{ request: Model.LoginLogExportReq; response: Model.LoginLogViewRsp}>) {
|
|
|
+ return httpClient.commonRequest('/operation/loginlogview', 'get', options)
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 系统运行管理-->开户黑名单管理-->获取列表
|
|
|
+ */
|
|
|
+export function queryBlackList(options: CommonFetchOptions<{ response: Model.BlackListRsp[]}>) {
|
|
|
+ return httpClient.commonRequest('/operation/queryBlackList', 'get', options)
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 系统运行管理-->IP黑名单管理-->获取列表
|
|
|
+ */
|
|
|
+export function queryIPList(options: CommonFetchOptions<{ request: Model.IPListReq; response: Model.IPListRsp[]}>) {
|
|
|
+ return httpClient.commonRequest('/operation/queryIPList', 'get', options)
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 系统运行管理-->终端登录日志-->获取列表
|
|
|
+ */
|
|
|
+export function queryloginlog(options: CommonFetchOptions<{ request: Model.LoginLogExportReq; response: Model.LoginLogViewRsp[]}>) {
|
|
|
+ return httpClient.commonRequest('/operation/queryloginlog', 'get', options)
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 系统运行管理-->系统服务运行日志-->获取列表
|
|
|
+ */
|
|
|
+export function querymrsl(options: CommonFetchOptions<{ request: Model.MrslReq; response: Model.MrslRsp[]}>) {
|
|
|
+ return httpClient.commonRequest('/operation/querymrsl', 'get', options)
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * 系统运行管理-->管理员操作日志-->详情
|
|
|
+ */
|
|
|
+export function view(options: CommonFetchOptions<{ request: Model.ViewReq; response: Model.ViewRsp}>) {
|
|
|
+ return httpClient.commonRequest('/operation/view', 'get', options)
|
|
|
+}
|
|
|
+
|
|
|
|