mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2025-12-14 19:22:50 +00:00
整理eslint代码,新增任务调度队列,新增redis缓存
This commit is contained in:
parent
8c69056275
commit
e9b4dfd434
16
.vscode/config.code-snippets
vendored
16
.vscode/config.code-snippets
vendored
@ -9,14 +9,14 @@
|
||||
" * 模块配置",
|
||||
" */",
|
||||
"export default (app: Application) => {",
|
||||
" return {",
|
||||
" // 模块名称",
|
||||
" name: 'xxx',",
|
||||
" // 模块描述",
|
||||
" description: 'xxx',",
|
||||
" // 中间件",
|
||||
" middlewares: [],",
|
||||
" } as ModuleConfig;",
|
||||
" return {",
|
||||
" // 模块名称",
|
||||
" name: 'xxx',",
|
||||
" // 模块描述",
|
||||
" description: 'xxx',",
|
||||
" // 中间件",
|
||||
" middlewares: [],",
|
||||
" } as ModuleConfig;",
|
||||
"};"
|
||||
],
|
||||
"description": "cool-admin config代码片段"
|
||||
|
||||
7
.vscode/controller.code-snippets
vendored
7
.vscode/controller.code-snippets
vendored
@ -11,11 +11,10 @@
|
||||
"@Provide()",
|
||||
"@CoolController({",
|
||||
" api: ['add', 'delete', 'update', 'info', 'list', 'page'],",
|
||||
" entity: 实体",
|
||||
" entity: 实体,",
|
||||
"})",
|
||||
"export class XxxController extends BaseController {",
|
||||
"",
|
||||
"}"
|
||||
"export class XxxController extends BaseController {}",
|
||||
""
|
||||
],
|
||||
"description": "cool-admin controller代码片段"
|
||||
}
|
||||
|
||||
9
.vscode/dto.code-snippets
vendored
9
.vscode/dto.code-snippets
vendored
@ -7,10 +7,11 @@
|
||||
" * 描述",
|
||||
" */",
|
||||
"export class xxxDTO {",
|
||||
" // 描述",
|
||||
" @Rule(RuleType.string().required())",
|
||||
" xxx: string;",
|
||||
"}"
|
||||
" // 描述",
|
||||
" @Rule(RuleType.string().required())",
|
||||
" xxx: string;",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"description": "cool-admin dto代码片段"
|
||||
}
|
||||
|
||||
5
.vscode/entity.code-snippets
vendored
5
.vscode/entity.code-snippets
vendored
@ -11,11 +11,10 @@
|
||||
" */",
|
||||
"@EntityModel('xxx_xxx_xxx')",
|
||||
"export class XxxEntity extends BaseEntity {",
|
||||
"",
|
||||
" @Column({comment: '描述'})",
|
||||
" @Column({ comment: '描述' })",
|
||||
" xxx: string;",
|
||||
"",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"description": "cool-admin entity代码片段"
|
||||
}
|
||||
|
||||
23
.vscode/middleware.code-snippets
vendored
23
.vscode/middleware.code-snippets
vendored
@ -11,19 +11,18 @@
|
||||
" */",
|
||||
"@Provide()",
|
||||
"export class XxxMiddleware implements IWebMiddleware {",
|
||||
"",
|
||||
" resolve() {",
|
||||
" return async (ctx: Context, next: IMidwayWebNext) => {",
|
||||
" // 控制器前执行的逻辑",
|
||||
" const startTime = Date.now();",
|
||||
" // 执行下一个 Web 中间件,最后执行到控制器",
|
||||
" await next();",
|
||||
" // 控制器之后执行的逻辑",
|
||||
" console.log(Date.now() - startTime);",
|
||||
" };",
|
||||
" }",
|
||||
"",
|
||||
" resolve() {",
|
||||
" return async (ctx: Context, next: IMidwayWebNext) => {",
|
||||
" // 控制器前执行的逻辑",
|
||||
" const startTime = Date.now();",
|
||||
" // 执行下一个 Web 中间件,最后执行到控制器",
|
||||
" await next();",
|
||||
" // 控制器之后执行的逻辑",
|
||||
" console.log(Date.now() - startTime);",
|
||||
" };",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"description": "cool-admin middleware代码片段"
|
||||
}
|
||||
|
||||
23
.vscode/queue.code-snippets
vendored
Normal file
23
.vscode/queue.code-snippets
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"queue": {
|
||||
"prefix": "queue",
|
||||
"body": [
|
||||
"import { Provide } from '@midwayjs/decorator';",
|
||||
"import { ICoolQueue, Queue } from 'midwayjs-cool-queue';",
|
||||
"",
|
||||
"/**",
|
||||
" * 队列",
|
||||
" */",
|
||||
"@Queue()",
|
||||
"@Provide()",
|
||||
"export abstract class xxxQueue implements ICoolQueue {",
|
||||
" data(job: any, done: any): void {",
|
||||
" console.log('收到的数据', job.data);",
|
||||
" done();",
|
||||
" }",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"description": "cool-admin service代码片段"
|
||||
}
|
||||
}
|
||||
18
.vscode/service.code-snippets
vendored
18
.vscode/service.code-snippets
vendored
@ -12,17 +12,15 @@
|
||||
" */",
|
||||
"@Provide()",
|
||||
"export class XxxService extends BaseService {",
|
||||
" @InjectEntityModel(实体)",
|
||||
" xxxEntity: Repository<实体>;",
|
||||
"",
|
||||
" @InjectEntityModel(实体)",
|
||||
" xxxEntity: Repository<实体>;",
|
||||
"",
|
||||
" /**",
|
||||
" * 描述",
|
||||
" */",
|
||||
" async xxx() {",
|
||||
"",
|
||||
" }",
|
||||
"}"
|
||||
" /**",
|
||||
" * 描述",
|
||||
" */",
|
||||
" async xxx() {}",
|
||||
"}",
|
||||
""
|
||||
],
|
||||
"description": "cool-admin service代码片段"
|
||||
}
|
||||
|
||||
@ -13,10 +13,10 @@
|
||||
"ipip-ipdb": "^0.3.0",
|
||||
"jsonwebtoken": "^8.5.1",
|
||||
"md5": "^2.3.0",
|
||||
"midwayjs-cool-core": "/Users/ap/Documents/srcs/cool-admin/midway-core/core/dist",
|
||||
"midwayjs-cool-oss": "^1.0.0",
|
||||
"midwayjs-cool-queue": "/Users/ap/Documents/srcs/cool-admin/midway-core/queue/dist",
|
||||
"midwayjs-cool-redis": "/Users/ap/Documents/srcs/cool-admin/midway-core/redis/dist",
|
||||
"midwayjs-cool-core": "^3.0.9",
|
||||
"midwayjs-cool-oss": "^1.0.5",
|
||||
"midwayjs-cool-queue": "^1.0.1",
|
||||
"midwayjs-cool-redis": "^1.0.1",
|
||||
"mysql2": "^2.2.5",
|
||||
"svg-captcha": "^1.4.0",
|
||||
"svg-to-dataurl": "^1.0.0"
|
||||
|
||||
@ -11,6 +11,6 @@ export default (app: Application) => {
|
||||
// 模块描述
|
||||
description: '基础的权限管理功能,包括登录,权限校验',
|
||||
// 中间件
|
||||
//middlewares: ['baseAuthorityMiddleware', 'baseLogMiddleware'],
|
||||
middlewares: ['baseAuthorityMiddleware', 'baseLogMiddleware'],
|
||||
} as ModuleConfig;
|
||||
};
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
import { Inject, Provide } from '@midwayjs/decorator';
|
||||
import { BaseService, CoolCache, CoolPlugin } from 'midwayjs-cool-core';
|
||||
import { DemoOrderQueue } from '../../../demo/queue/order';
|
||||
|
||||
/**
|
||||
* 插件
|
||||
@ -13,17 +12,10 @@ export class BasePluginInfoService extends BaseService {
|
||||
@Inject('cool:cache')
|
||||
coolCache: CoolCache;
|
||||
|
||||
@Inject()
|
||||
demoOrderQueue: DemoOrderQueue;
|
||||
|
||||
@Inject('demoOrderQueue')
|
||||
test;
|
||||
|
||||
/**
|
||||
* 列表
|
||||
*/
|
||||
async list(keyWord) {
|
||||
this.test.queue.add({ a: 1, b: 2 });
|
||||
return this.coolPlugin.list(keyWord);
|
||||
}
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ import { ICoolQueue, Queue } from 'midwayjs-cool-queue';
|
||||
@Provide()
|
||||
export abstract class DemoOrderQueue implements ICoolQueue {
|
||||
data(job: any, done: any): void {
|
||||
console.log(6666, job.data);
|
||||
console.log('收到的数据', job.data);
|
||||
done();
|
||||
}
|
||||
}
|
||||
|
||||
15
src/app/modules/demo/service/order.ts
Normal file
15
src/app/modules/demo/service/order.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import { Provide } from '@midwayjs/decorator';
|
||||
import { BaseService } from 'midwayjs-cool-core';
|
||||
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
@Provide()
|
||||
export class DemoOrderService extends BaseService {
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
async test() {
|
||||
console.log('我被调用了');
|
||||
}
|
||||
}
|
||||
16
src/app/modules/task/config.ts
Normal file
16
src/app/modules/task/config.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import { Application } from 'egg';
|
||||
import { ModuleConfig } from 'midwayjs-cool-core';
|
||||
|
||||
/**
|
||||
* 模块配置
|
||||
*/
|
||||
export default (app: Application) => {
|
||||
return {
|
||||
// 模块名称
|
||||
name: '任务调度',
|
||||
// 模块描述
|
||||
description: '任务调度模块,支持分布式任务,由redis整个集群的任务',
|
||||
// 中间件
|
||||
middlewares: [],
|
||||
} as ModuleConfig;
|
||||
};
|
||||
64
src/app/modules/task/controller/admin/info.ts
Normal file
64
src/app/modules/task/controller/admin/info.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import {
|
||||
ALL,
|
||||
Body,
|
||||
Get,
|
||||
Inject,
|
||||
Post,
|
||||
Provide,
|
||||
Query,
|
||||
} from '@midwayjs/decorator';
|
||||
import { CoolController, BaseController } from 'midwayjs-cool-core';
|
||||
import { TaskInfoEntity } from '../../entity/info';
|
||||
import { TaskInfoService } from '../../service/info';
|
||||
|
||||
/**
|
||||
* 任务
|
||||
*/
|
||||
@Provide()
|
||||
@CoolController({
|
||||
api: ['add', 'delete', 'update', 'info', 'page'],
|
||||
entity: TaskInfoEntity,
|
||||
service: TaskInfoService,
|
||||
pageQueryOp: {
|
||||
fieldEq: ['status', 'type'],
|
||||
},
|
||||
})
|
||||
export class TaskInfoController extends BaseController {
|
||||
@Inject()
|
||||
taskInfoService: TaskInfoService;
|
||||
|
||||
/**
|
||||
* 手动执行一次
|
||||
*/
|
||||
@Post('/once')
|
||||
async once(@Body() id: number) {
|
||||
await this.taskInfoService.once(id);
|
||||
this.ok();
|
||||
}
|
||||
|
||||
/**
|
||||
* 暂停任务
|
||||
*/
|
||||
@Post('/stop')
|
||||
async stop(@Body() id: number) {
|
||||
await this.taskInfoService.stop(id);
|
||||
this.ok();
|
||||
}
|
||||
|
||||
/**
|
||||
* 开始任务
|
||||
*/
|
||||
@Post('/start')
|
||||
async start(@Body() id: number, @Body() type: number) {
|
||||
await this.taskInfoService.start(id, type);
|
||||
this.ok();
|
||||
}
|
||||
|
||||
/**
|
||||
* 日志
|
||||
*/
|
||||
@Get('/log')
|
||||
async log(@Query(ALL) params: any) {
|
||||
return this.ok(await this.taskInfoService.log(params));
|
||||
}
|
||||
}
|
||||
1
src/app/modules/task/controller/说明.md
Normal file
1
src/app/modules/task/controller/说明.md
Normal file
@ -0,0 +1 @@
|
||||
编写接口
|
||||
57
src/app/modules/task/entity/info.ts
Normal file
57
src/app/modules/task/entity/info.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { EntityModel } from '@midwayjs/orm';
|
||||
import { BaseEntity } from 'midwayjs-cool-core';
|
||||
import { Column } from 'typeorm';
|
||||
|
||||
/**
|
||||
* 任务信息
|
||||
*/
|
||||
@EntityModel('task_info')
|
||||
export class TaskInfoEntity extends BaseEntity {
|
||||
@Column({ comment: '任务ID', nullable: true })
|
||||
jobId: string;
|
||||
|
||||
@Column({ comment: '任务配置', nullable: true, length: 1000 })
|
||||
repeatConf: string;
|
||||
|
||||
@Column({ comment: '名称' })
|
||||
name: string;
|
||||
|
||||
@Column({ comment: 'cron', nullable: true })
|
||||
cron: string;
|
||||
|
||||
@Column({ comment: '最大执行次数 不传为无限次', nullable: true })
|
||||
limitCount: number;
|
||||
|
||||
@Column({
|
||||
comment: '每间隔多少毫秒执行一次 如果cron设置了 这项设置就无效',
|
||||
nullable: true,
|
||||
})
|
||||
every: number;
|
||||
|
||||
@Column({ comment: '备注', nullable: true })
|
||||
remark: string;
|
||||
|
||||
@Column({ comment: '状态 0:停止 1:运行', default: 1, type: 'tinyint' })
|
||||
status: number;
|
||||
|
||||
@Column({ comment: '开始时间', nullable: true })
|
||||
startDate: Date;
|
||||
|
||||
@Column({ comment: '结束时间', nullable: true })
|
||||
endDate: Date;
|
||||
|
||||
@Column({ comment: '数据', nullable: true })
|
||||
data: string;
|
||||
|
||||
@Column({ comment: '执行的service实例ID', nullable: true })
|
||||
service: string;
|
||||
|
||||
@Column({ comment: '状态 0:系统 1:用户', default: 0, type: 'tinyint' })
|
||||
type: number;
|
||||
|
||||
@Column({ comment: '下一次执行时间', nullable: true })
|
||||
nextRunTime: Date;
|
||||
|
||||
@Column({ comment: '状态 0:cron 1:时间间隔', default: 0, type: 'tinyint' })
|
||||
taskType: number;
|
||||
}
|
||||
19
src/app/modules/task/entity/log.ts
Normal file
19
src/app/modules/task/entity/log.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { EntityModel } from '@midwayjs/orm';
|
||||
import { BaseEntity } from 'midwayjs-cool-core';
|
||||
import { Column, Index } from 'typeorm';
|
||||
|
||||
/**
|
||||
* 任务日志
|
||||
*/
|
||||
@EntityModel('task_log')
|
||||
export class TaskLogEntity extends BaseEntity {
|
||||
@Index()
|
||||
@Column({ comment: '任务ID', nullable: true, type: 'bigint' })
|
||||
taskId: number;
|
||||
|
||||
@Column({ comment: '状态 0:失败 1:成功', default: 0, type: 'tinyint' })
|
||||
status: number;
|
||||
|
||||
@Column({ comment: '详情描述', nullable: true, type: 'text' })
|
||||
detail: string;
|
||||
}
|
||||
30
src/app/modules/task/queue/task.ts
Normal file
30
src/app/modules/task/queue/task.ts
Normal file
@ -0,0 +1,30 @@
|
||||
import { App, Inject, Provide } from '@midwayjs/decorator';
|
||||
import { IMidwayWebApplication } from '@midwayjs/web';
|
||||
import { ICoolQueue, Queue } from 'midwayjs-cool-queue';
|
||||
import { TaskInfoService } from '../service/info';
|
||||
|
||||
/**
|
||||
* 任务
|
||||
*/
|
||||
@Queue()
|
||||
@Provide()
|
||||
export abstract class TaskInfoQueue implements ICoolQueue {
|
||||
@App()
|
||||
app: IMidwayWebApplication;
|
||||
|
||||
@Inject()
|
||||
taskInfoService: TaskInfoService;
|
||||
|
||||
async data(job: any, done: any): Promise<void> {
|
||||
try {
|
||||
console.log('收到的数据', job.data);
|
||||
this.taskInfoService.invokeService(job.data.service);
|
||||
this.taskInfoService.record(job.data, 1);
|
||||
} catch (error) {
|
||||
this.taskInfoService.record(job.data, 0, error);
|
||||
}
|
||||
this.taskInfoService.updateNextRunTime(job.data.id);
|
||||
this.taskInfoService.updateStatus();
|
||||
done();
|
||||
}
|
||||
}
|
||||
306
src/app/modules/task/service/info.ts
Normal file
306
src/app/modules/task/service/info.ts
Normal file
@ -0,0 +1,306 @@
|
||||
import { App, Inject, Logger, Provide } from '@midwayjs/decorator';
|
||||
import { BaseService } from 'midwayjs-cool-core';
|
||||
import { InjectEntityModel } from '@midwayjs/orm';
|
||||
import { Repository } from 'typeorm';
|
||||
import { TaskInfoEntity } from '../entity/info';
|
||||
import { TaskLogEntity } from '../entity/log';
|
||||
import { IQueue } from 'midwayjs-cool-queue';
|
||||
import { ILogger } from '@midwayjs/logger';
|
||||
import { IMidwayWebApplication } from '@midwayjs/web';
|
||||
import * as _ from 'lodash';
|
||||
import { Utils } from '../../../comm/utils';
|
||||
|
||||
/**
|
||||
* 任务
|
||||
*/
|
||||
@Provide()
|
||||
export class TaskInfoService extends BaseService {
|
||||
@InjectEntityModel(TaskInfoEntity)
|
||||
taskInfoEntity: Repository<TaskInfoEntity>;
|
||||
|
||||
@Logger()
|
||||
logger: ILogger;
|
||||
|
||||
@InjectEntityModel(TaskLogEntity)
|
||||
taskLogEntity: Repository<TaskLogEntity>;
|
||||
|
||||
@Inject()
|
||||
taskInfoQueue: IQueue;
|
||||
|
||||
@App()
|
||||
app: IMidwayWebApplication;
|
||||
|
||||
@Inject()
|
||||
utils: Utils;
|
||||
|
||||
/**
|
||||
* 停止任务
|
||||
* @param id
|
||||
*/
|
||||
async stop(id) {
|
||||
const task = await this.taskInfoEntity.findOne({ id });
|
||||
if (task) {
|
||||
const job = await this.exist(task.id);
|
||||
if (job) {
|
||||
await this.taskInfoQueue.queue.removeRepeatable(
|
||||
JSON.parse(task.repeatConf)
|
||||
);
|
||||
}
|
||||
task.status = 0;
|
||||
await this.taskInfoEntity.update(task.id, task);
|
||||
await this.updateNextRunTime(task.id);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 开始任务
|
||||
* @param id
|
||||
* @param type
|
||||
*/
|
||||
async start(id, type?) {
|
||||
const task = await this.taskInfoEntity.findOne({ id });
|
||||
task.status = 1;
|
||||
if (type) {
|
||||
task.type = type;
|
||||
}
|
||||
await this.addOrUpdate(task);
|
||||
}
|
||||
|
||||
/**
|
||||
* 手动执行一次
|
||||
* @param id
|
||||
*/
|
||||
async once(id) {
|
||||
const task = await this.taskInfoEntity.findOne({ id });
|
||||
if (task) {
|
||||
await this.taskInfoQueue.queue.add(task, {
|
||||
jobId: task.id,
|
||||
removeOnComplete: true,
|
||||
removeOnFail: true,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 检查任务是否存在
|
||||
* @param jobId
|
||||
*/
|
||||
async exist(jobId) {
|
||||
const result = await this.taskInfoQueue.queue.getRepeatableJobs();
|
||||
const ids = result.map(e => {
|
||||
return e.id;
|
||||
});
|
||||
return ids.includes(jobId.toString());
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增或修改
|
||||
* @param params
|
||||
*/
|
||||
async addOrUpdate(params) {
|
||||
let repeatConf;
|
||||
await this.getOrmManager().transaction(async transactionalEntityManager => {
|
||||
if (params.taskType === 0) {
|
||||
params.limitCount = null;
|
||||
params.every = null;
|
||||
} else {
|
||||
params.cron = null;
|
||||
}
|
||||
await transactionalEntityManager.save(TaskInfoEntity, params);
|
||||
|
||||
if (params.status === 1) {
|
||||
const exist = await this.exist(params.id);
|
||||
if (exist) {
|
||||
await this.taskInfoQueue.queue.removeRepeatable(
|
||||
JSON.parse(params.repeatConf)
|
||||
);
|
||||
}
|
||||
const jobOp = Object.assign(params);
|
||||
await this.utils.removeEmptyP(jobOp);
|
||||
delete jobOp.repeatConf;
|
||||
const { opts } = await this.taskInfoQueue.queue.add(params, {
|
||||
jobId: params.id,
|
||||
removeOnComplete: true,
|
||||
removeOnFail: true,
|
||||
repeat: jobOp,
|
||||
});
|
||||
if (!opts) {
|
||||
throw new Error('任务添加失败,可能由于格式不正确~');
|
||||
}
|
||||
// await transactionalEntityManager.update(TaskInfoEntity, params.id, {
|
||||
// jobId: opts.jobId,
|
||||
// });
|
||||
repeatConf = opts;
|
||||
}
|
||||
});
|
||||
if (params.status === 1) {
|
||||
this.utils.sleep(1000);
|
||||
await this.updateNextRunTime(params.id);
|
||||
await this.nativeQuery(
|
||||
'update task_info a set a.repeatConf = ? where a.id = ?',
|
||||
[JSON.stringify(repeatConf.repeat), params.id]
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除
|
||||
* @param ids
|
||||
*/
|
||||
async delete(ids) {
|
||||
let idArr;
|
||||
if (ids instanceof Array) {
|
||||
idArr = ids;
|
||||
} else {
|
||||
idArr = ids.split(',');
|
||||
}
|
||||
for (const id of idArr) {
|
||||
const task = await this.taskInfoEntity.findOne({ id });
|
||||
const exist = await this.exist(task.id);
|
||||
if (exist) {
|
||||
await this.taskInfoQueue.queue.removeRepeatable(
|
||||
JSON.parse(task.repeatConf)
|
||||
);
|
||||
}
|
||||
await this.taskInfoEntity.delete({ id });
|
||||
await this.taskLogEntity.delete({ taskId: id });
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 任务日志
|
||||
* @param query
|
||||
*/
|
||||
async log(query) {
|
||||
const { id, status } = query;
|
||||
return await this.sqlRenderPage(
|
||||
`
|
||||
SELECT
|
||||
a.*,
|
||||
b.NAME AS taskName
|
||||
FROM
|
||||
task_log a
|
||||
JOIN task_info b ON a.taskId = b.id
|
||||
where 1=1
|
||||
${this.setSql(id, 'and a.taskId = ?', [id])}
|
||||
${this.setSql(status, 'and a.status = ?', [status])}
|
||||
`,
|
||||
query
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存任务记录,成功任务每个任务保留最新20条日志,失败日志不会删除
|
||||
* @param task
|
||||
* @param status
|
||||
* @param detail
|
||||
*/
|
||||
async record(task, status, detail?) {
|
||||
await this.taskLogEntity.save({
|
||||
taskId: task.id,
|
||||
status,
|
||||
detail: detail || '',
|
||||
});
|
||||
await this.nativeQuery(
|
||||
`DELETE a
|
||||
FROM
|
||||
task_log a,
|
||||
( SELECT id FROM task_log where taskId = ? AND status = 1 ORDER BY id DESC LIMIT ?, 1 ) b
|
||||
WHERE
|
||||
a.taskId = ? AND
|
||||
a.status = 1 AND
|
||||
a.id < b.id`,
|
||||
[task.id, 19, task.id]
|
||||
); // 日志保留最新的20条
|
||||
}
|
||||
|
||||
/**
|
||||
* 初始化任务
|
||||
*/
|
||||
async initTask() {
|
||||
const runningTasks = await this.taskInfoEntity.find({ status: 1 });
|
||||
if (!_.isEmpty(runningTasks)) {
|
||||
for (const task of runningTasks) {
|
||||
const job = await this.exist(task.id); // 任务已存在就不添加
|
||||
if (!job) {
|
||||
this.logger.info(`init task ${task.name}`);
|
||||
await this.addOrUpdate(task);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 任务ID
|
||||
* @param jobId
|
||||
*/
|
||||
async getNextRunTime(jobId) {
|
||||
let nextRunTime;
|
||||
const result = await this.taskInfoQueue.queue.getRepeatableJobs();
|
||||
for (const task of result) {
|
||||
if (task.id === jobId.toString()) {
|
||||
nextRunTime = new Date(task.next);
|
||||
break;
|
||||
}
|
||||
}
|
||||
return nextRunTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新下次执行时间
|
||||
* @param jobId
|
||||
*/
|
||||
async updateNextRunTime(jobId) {
|
||||
await this.nativeQuery(
|
||||
'update task_info a set a.nextRunTime = ? where a.id = ?',
|
||||
[await this.getNextRunTime(jobId), jobId]
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* 刷新任务状态
|
||||
*/
|
||||
async updateStatus() {
|
||||
const result = await this.taskInfoQueue.queue.getRepeatableJobs();
|
||||
for (const job of result) {
|
||||
const task = await this.taskInfoEntity.findOne({ id: job.id });
|
||||
if (task) {
|
||||
setTimeout(async () => {
|
||||
// 2秒后清空任务
|
||||
const nextTime = await this.getNextRunTime(task.id);
|
||||
if (nextTime && nextTime.getTime() <= new Date().getTime() - 999) {
|
||||
this.nativeQuery(
|
||||
'update task_info a set a.status = ?, a.updateTime = ? where a.id = ?',
|
||||
[0, new Date(), task.id]
|
||||
);
|
||||
this.taskInfoQueue.queue.removeRepeatable(
|
||||
JSON.parse(task.repeatConf)
|
||||
);
|
||||
}
|
||||
}, 2000);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 调用service
|
||||
* @param serviceStr
|
||||
*/
|
||||
async invokeService(serviceStr) {
|
||||
if (serviceStr) {
|
||||
const arr = serviceStr.split('.');
|
||||
const service = await this.app.getApplicationContext().getAsync(arr[0]);
|
||||
for (const child of arr) {
|
||||
if (child.includes('(')) {
|
||||
const lastArr = child.split('(');
|
||||
const param = lastArr[1].replace(')', '');
|
||||
if (!param) {
|
||||
service[lastArr[0]]();
|
||||
} else {
|
||||
service[lastArr[0]](JSON.parse(param));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
1
src/resource/.cache
Normal file
1
src/resource/.cache
Normal file
@ -0,0 +1 @@
|
||||
[{"admin-passwordVersion-1":"1","admin-department-1":"2","admin-perms-1":"3","admin-token-1":"4","admin-token-refresh-1":"5"},{"data":3,"expire":0},{"data":"6","expire":0},{"data":"7","expire":0},{"data":"8","expire":0},{"data":"8","expire":0},"[1,11,12,13]","[\"base:sys:menu:add\",\"base:sys:menu:delete\",\"base:sys:menu:update\",\"base:sys:menu:page\",\"base:sys:menu:list\",\"base:sys:menu:info\",\"base:sys:role:add\",\"base:sys:role:delete\",\"base:sys:role:update\",\"base:sys:role:page\",\"base:sys:role:list\",\"base:sys:role:info\",\"base:sys:log:page\",\"base:sys:log:clear\",\"base:sys:log:getKeep\",\"base:sys:log:setKeep\",\"base:sys:department:list\",\"base:sys:department:add\",\"base:sys:department:update\",\"base:sys:department:delete\",\"base:sys:department:order\",\"base:sys:user:move\",\"base:sys:param:add\",\"base:sys:param:info\",\"base:sys:param:update\",\"base:sys:param:delete\",\"base:sys:param:page\",\"base:sys:param:list\",\"space:info:page\",\"space:info:list\",\"space:info:info\",\"space:info:add\",\"space:info:delete\",\"space:info:update\",\"space:type:page\",\"space:type:list\",\"space:type:info\",\"space:type:add\",\"space:type:delete\",\"space:type:update\",\"base:app:im:message:read\",\"base:app:im:message:page\",\"base:app:im:session:page\",\"base:app:im:session:list\",\"base:app:im:session:unreadCount\",\"base:app:im:session:delete\",\"base:sys:user:add\",\"base:sys:user:delete\",\"base:sys:user:update\",\"base:sys:user:page\",\"base:sys:user:list\",\"base:sys:user:info\",\"base:plugin:info:info\",\"base:plugin:info:update\",\"base:plugin:info:list\",\"base:plugin:info:delete\",\"base:plugin:info:config\",\"base:plugin:info:getConfig\",\"base:plugin:info:enable\",\"task:info:page\",\"task:info:list\",\"task:info:info\",\"task:info:add\",\"task:info:delete\",\"task:info:update\",\"task:info:stop\",\"task:info:start\",\"task:info:once\",\"task:info:log\"]","eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc1JlZnJlc2giOmZhbHNlLCJyb2xlSWRzIjpbIjEiXSwidXNlcm5hbWUiOiJhZG1pbiIsInVzZXJJZCI6MSwicGFzc3dvcmRWZXJzaW9uIjozLCJpYXQiOjE2MTQ5MzcxMzcsImV4cCI6MTYxNDk0NDMzN30.RdVbVrdzfANFqHy4YiJa0WreqhZtGr3ys6X8tEiXfhs"]
|
||||
@ -11,7 +11,7 @@
|
||||
Target Server Version : 50725
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 04/03/2021 18:40:48
|
||||
Date: 05/03/2021 16:41:26
|
||||
*/
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
@ -125,390 +125,13 @@ CREATE TABLE `base_sys_log` (
|
||||
KEY `IDX_a03a27f75cf8d502b3060823e1` (`ipAddr`),
|
||||
KEY `IDX_c9382b76219a1011f7b8e7bcd1` (`createTime`),
|
||||
KEY `IDX_bfd44e885b470da43bcc39aaa7` (`updateTime`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=379 DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of base_sys_log
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
INSERT INTO `base_sys_log` VALUES (1, '2021-03-03 11:01:54.222700', '2021-03-03 11:01:54.222700', 1, '/admin/base/sys/log/page', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (2, '2021-03-03 11:01:56.898939', '2021-03-03 11:01:56.898939', 1, '/admin/base/sys/log/page', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"keyWord\":\"\",\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (3, '2021-03-03 11:02:40.875901', '2021-03-03 11:02:40.875901', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (4, '2021-03-03 11:02:44.010585', '2021-03-03 11:02:44.010585', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"eadb5680-7bcc-11eb-9eec-6fc1e29b365f\",\"verifyCode\":\"6326\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (5, '2021-03-03 11:02:44.296659', '2021-03-03 11:02:44.296659', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (6, '2021-03-03 11:02:44.547487', '2021-03-03 11:02:44.547487', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (7, '2021-03-03 11:02:56.389806', '2021-03-03 11:02:56.389806', 1, '/admin/base/sys/param/page', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20}');
|
||||
INSERT INTO `base_sys_log` VALUES (8, '2021-03-03 11:02:57.235783', '2021-03-03 11:02:57.235783', 1, '/admin/base/sys/menu/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (9, '2021-03-03 11:03:01.954785', '2021-03-03 11:03:01.954785', 1, '/admin/base/sys/menu/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (10, '2021-03-03 11:03:01.978401', '2021-03-03 11:03:01.978401', 1, '/admin/base/sys/menu/info', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"id\":\"48\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (11, '2021-03-03 11:03:21.272469', '2021-03-03 11:03:21.272469', 1, '/admin/base/sys/menu/update', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"type\":1,\"name\":\"文档\",\"parentId\":\"47\",\"router\":\"/tutorial/doc\",\"keepAlive\":true,\"isShow\":true,\"viewPath\":\"https://admin.cool-js.com\",\"icon\":\"icon-log\",\"orderNum\":0,\"id\":48,\"createTime\":\"2019-11-08 09:35:53\",\"updateTime\":\"2021-03-03 10:00:03\",\"moduleName\":\"\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (12, '2021-03-03 11:03:21.656300', '2021-03-03 11:03:21.656300', 1, '/admin/base/sys/menu/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (13, '2021-03-03 11:03:27.097943', '2021-03-03 11:03:27.097943', 1, '/admin/base/sys/menu/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (14, '2021-03-03 11:03:29.011456', '2021-03-03 11:03:29.011456', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (15, '2021-03-03 11:03:29.028228', '2021-03-03 11:03:29.028228', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (16, '2021-03-03 11:03:29.050171', '2021-03-03 11:03:29.050171', 1, '/admin/base/comm/uploadMode', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (17, '2021-03-03 11:03:29.470765', '2021-03-03 11:03:29.470765', 1, '/admin/base/sys/menu/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (18, '2021-03-03 11:03:46.285901', '2021-03-03 11:03:46.285901', 1, '/admin/base/sys/department/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (19, '2021-03-03 11:03:46.300874', '2021-03-03 11:03:46.300874', 1, '/admin/base/sys/user/page', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (20, '2021-03-03 11:04:14.616829', '2021-03-03 11:04:14.616829', 1, '/admin/base/plugin/info/list', '127.0.0.1', '本机地址', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (21, '2021-03-03 11:04:15.705906', '2021-03-03 11:04:15.705906', 1, '/admin/base/plugin/info/list', '127.0.0.1', '本机地址', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (22, '2021-03-03 11:04:17.766276', '2021-03-03 11:04:17.766276', 1, '/admin/base/plugin/info/list', '127.0.0.1', '本机地址', '{\"title\":\"cool-mall商城\",\"pic\":\"https://docs.cool-js.com/mall/show05.jpeg\",\"price\":20}');
|
||||
INSERT INTO `base_sys_log` VALUES (23, '2021-03-03 11:04:18.683676', '2021-03-03 11:04:18.683676', 1, '/admin/base/plugin/info/list', '127.0.0.1', '本机地址', '{\"title\":\"cool-mall商城\",\"pic\":\"https://docs.cool-js.com/mall/show05.jpeg\",\"price\":20}');
|
||||
INSERT INTO `base_sys_log` VALUES (24, '2021-03-03 11:04:19.134959', '2021-03-03 11:04:19.134959', 1, '/admin/base/plugin/info/list', '127.0.0.1', '本机地址', '{\"title\":\"cool-mall商城\",\"pic\":\"https://docs.cool-js.com/mall/show05.jpeg\",\"price\":20}');
|
||||
INSERT INTO `base_sys_log` VALUES (25, '2021-03-03 11:04:19.628677', '2021-03-03 11:04:19.628677', 1, '/admin/base/plugin/info/list', '127.0.0.1', '本机地址', '{\"title\":\"cool-mall商城\",\"pic\":\"https://docs.cool-js.com/mall/show05.jpeg\",\"price\":20}');
|
||||
INSERT INTO `base_sys_log` VALUES (26, '2021-03-03 11:05:45.554221', '2021-03-03 11:05:45.554221', 1, '/admin/base/comm/permmenu', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (27, '2021-03-03 11:05:45.570439', '2021-03-03 11:05:45.570439', 1, '/admin/base/comm/uploadMode', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (28, '2021-03-03 11:05:45.571484', '2021-03-03 11:05:45.571484', 1, '/admin/base/comm/person', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (29, '2021-03-03 11:05:47.512021', '2021-03-03 11:05:47.512021', 1, '/admin/base/plugin/info/list', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (30, '2021-03-03 11:06:07.547015', '2021-03-03 11:06:07.547015', 1, '/admin/base/plugin/info/list', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (31, '2021-03-03 11:06:28.704106', '2021-03-03 11:06:28.704106', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (32, '2021-03-03 11:06:44.412150', '2021-03-03 11:06:44.412150', 1, '/admin/base/sys/department/list', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (33, '2021-03-03 11:06:44.691927', '2021-03-03 11:06:44.691927', 1, '/admin/base/sys/user/page', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (34, '2021-03-03 11:06:45.559848', '2021-03-03 11:06:45.559848', 1, '/admin/base/sys/menu/list', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (35, '2021-03-03 11:06:48.053824', '2021-03-03 11:06:48.053824', 1, '/admin/base/sys/role/page', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (36, '2021-03-03 11:06:50.688932', '2021-03-03 11:06:50.688932', 1, '/admin/base/comm/uploadMode', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (37, '2021-03-03 11:06:50.708908', '2021-03-03 11:06:50.708908', 1, '/admin/base/comm/person', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (38, '2021-03-03 11:06:50.713786', '2021-03-03 11:06:50.713786', 1, '/admin/base/comm/permmenu', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (39, '2021-03-03 11:06:51.135802', '2021-03-03 11:06:51.135802', 1, '/admin/base/sys/role/page', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (40, '2021-03-03 11:06:52.562647', '2021-03-03 11:06:52.562647', 1, '/admin/base/plugin/info/list', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (41, '2021-03-03 11:15:16.187289', '2021-03-03 11:15:16.187289', NULL, '/', '47.95.11.84', '中国北京', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (42, '2021-03-03 11:15:16.345765', '2021-03-03 11:15:16.345765', NULL, '/', '47.95.11.84', '中国北京', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (43, '2021-03-03 11:30:19.444090', '2021-03-03 11:30:19.444090', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (44, '2021-03-03 11:30:22.418326', '2021-03-03 11:30:22.418326', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"c7706ce0-7bd0-11eb-92b2-db7615aaaa87\",\"verifyCode\":\"3277\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (45, '2021-03-03 11:30:22.684255', '2021-03-03 11:30:22.684255', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (46, '2021-03-03 11:30:22.932985', '2021-03-03 11:30:22.932985', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (47, '2021-03-03 11:30:25.555890', '2021-03-03 11:30:25.555890', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (48, '2021-03-03 11:30:28.220291', '2021-03-03 11:30:28.220291', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (49, '2021-03-03 11:30:30.100952', '2021-03-03 11:30:30.100952', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (50, '2021-03-03 11:31:47.848700', '2021-03-03 11:31:47.848700', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (51, '2021-03-03 11:31:54.110808', '2021-03-03 11:31:54.110808', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"fc221c40-7bd0-11eb-b2bb-2342548c843b\",\"verifyCode\":\"5377\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (52, '2021-03-03 11:31:54.417350', '2021-03-03 11:31:54.417350', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (53, '2021-03-03 11:31:54.705066', '2021-03-03 11:31:54.705066', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (54, '2021-03-03 11:32:02.013432', '2021-03-03 11:32:02.013432', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (55, '2021-03-03 11:32:04.096748', '2021-03-03 11:32:04.096748', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (56, '2021-03-03 11:32:19.976058', '2021-03-03 11:32:19.976058', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (57, '2021-03-03 11:32:21.101309', '2021-03-03 11:32:21.101309', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (58, '2021-03-03 11:32:22.033932', '2021-03-03 11:32:22.033932', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (59, '2021-03-03 11:32:47.303710', '2021-03-03 11:32:47.303710', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (60, '2021-03-03 11:32:56.580349', '2021-03-03 11:32:56.580349', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (61, '2021-03-03 11:33:06.575952', '2021-03-03 11:33:06.575952', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (62, '2021-03-03 11:33:10.830279', '2021-03-03 11:33:10.830279', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (63, '2021-03-03 11:33:22.229699', '2021-03-03 11:33:22.229699', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (64, '2021-03-03 11:33:23.403796', '2021-03-03 11:33:23.403796', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (65, '2021-03-03 11:33:32.407775', '2021-03-03 11:33:32.407775', NULL, '/boaform/admin/formLogin', '47.95.11.84', '中国北京', '{\"username\":\"admin\",\"psd\":\"Feefifofum\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (66, '2021-03-03 11:35:54.537609', '2021-03-03 11:35:54.537609', NULL, '/admin/base/open/captcha', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (67, '2021-03-03 11:37:12.348080', '2021-03-03 11:37:12.348080', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (68, '2021-03-03 11:37:15.298912', '2021-03-03 11:37:15.298912', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"bd8cba70-7bd1-11eb-bb57-df42a45b522d\",\"verifyCode\":\"3047\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (69, '2021-03-03 11:37:15.615344', '2021-03-03 11:37:15.615344', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (70, '2021-03-03 11:37:15.952380', '2021-03-03 11:37:15.952380', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (71, '2021-03-03 11:37:18.939883', '2021-03-03 11:37:18.939883', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (72, '2021-03-03 11:37:20.314878', '2021-03-03 11:37:20.314878', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (73, '2021-03-03 11:37:38.934250', '2021-03-03 11:37:38.934250', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (74, '2021-03-03 11:37:58.180313', '2021-03-03 11:37:58.180313', NULL, '/admin/base/open/captcha', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (75, '2021-03-03 11:38:02.697943', '2021-03-03 11:38:02.697943', NULL, '/admin/base/open/login', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"d8de4a00-7bd1-11eb-bb57-df42a45b522d\",\"verifyCode\":\"6074\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (76, '2021-03-03 11:38:02.975814', '2021-03-03 11:38:02.975814', 1, '/admin/base/comm/person', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (77, '2021-03-03 11:38:03.274356', '2021-03-03 11:38:03.274356', 1, '/admin/base/comm/permmenu', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (78, '2021-03-03 11:38:06.075150', '2021-03-03 11:38:06.075150', 1, '/admin/base/plugin/info/list', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (79, '2021-03-03 11:38:16.613655', '2021-03-03 11:38:16.613655', 1, '/admin/base/plugin/info/list', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (80, '2021-03-03 11:39:00.614923', '2021-03-03 11:39:00.614923', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (81, '2021-03-03 11:39:00.736069', '2021-03-03 11:39:00.736069', NULL, '/admin/base/open/captcha', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (82, '2021-03-03 11:39:08.454311', '2021-03-03 11:39:08.454311', NULL, '/admin/base/open/login', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"fe26a960-7bd1-11eb-9e02-41121c9cfb7c\",\"verifyCode\":\"1736\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (83, '2021-03-03 11:39:08.688300', '2021-03-03 11:39:08.688300', 1, '/admin/base/comm/person', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (84, '2021-03-03 11:39:08.883525', '2021-03-03 11:39:08.883525', 1, '/admin/base/comm/permmenu', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (85, '2021-03-03 11:39:10.260145', '2021-03-03 11:39:10.260145', NULL, '/login', '47.95.11.84', '中国北京', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (86, '2021-03-03 11:39:11.317263', '2021-03-03 11:39:11.317263', 1, '/admin/base/plugin/info/list', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (87, '2021-03-03 11:39:21.391086', '2021-03-03 11:39:21.391086', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"fe1432d0-7bd1-11eb-9e02-41121c9cfb7c\",\"verifyCode\":\"3634\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (88, '2021-03-03 11:39:21.674836', '2021-03-03 11:39:21.674836', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (89, '2021-03-03 11:39:21.952301', '2021-03-03 11:39:21.952301', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (90, '2021-03-03 11:39:28.095199', '2021-03-03 11:39:28.095199', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (91, '2021-03-03 11:39:34.789189', '2021-03-03 11:39:34.789189', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (92, '2021-03-03 11:41:55.815599', '2021-03-03 11:41:55.815599', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (93, '2021-03-03 11:42:00.780565', '2021-03-03 11:42:00.780565', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"66825c20-7bd2-11eb-b7aa-412782768324\",\"verifyCode\":\"7886\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (94, '2021-03-03 11:42:01.145319', '2021-03-03 11:42:01.145319', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (95, '2021-03-03 11:42:01.400070', '2021-03-03 11:42:01.400070', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (96, '2021-03-03 11:42:07.369861', '2021-03-03 11:42:07.369861', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (97, '2021-03-03 11:42:08.945867', '2021-03-03 11:42:08.945867', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (98, '2021-03-03 11:42:20.875388', '2021-03-03 11:42:20.875388', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"host\":\"127.0.0.1\",\"port\":\"6379\",\"db\":\"2\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (99, '2021-03-03 11:42:22.870484', '2021-03-03 11:42:22.870484', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (100, '2021-03-03 11:42:32.292481', '2021-03-03 11:42:32.292481', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (101, '2021-03-03 11:42:33.250487', '2021-03-03 11:42:33.250487', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (102, '2021-03-03 11:42:34.018262', '2021-03-03 11:42:34.018262', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (103, '2021-03-03 11:42:34.746348', '2021-03-03 11:42:34.746348', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (104, '2021-03-03 11:42:36.921924', '2021-03-03 11:42:36.921924', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (105, '2021-03-03 11:47:33.659450', '2021-03-03 11:47:33.659450', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (106, '2021-03-03 11:47:45.172766', '2021-03-03 11:47:45.172766', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"2fe0f540-7bd3-11eb-8187-376dd2397d55\",\"verifyCode\":\"0562\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (107, '2021-03-03 11:47:45.472994', '2021-03-03 11:47:45.472994', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (108, '2021-03-03 11:47:45.724668', '2021-03-03 11:47:45.724668', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (109, '2021-03-03 11:47:57.586997', '2021-03-03 11:47:57.586997', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (110, '2021-03-03 11:47:59.127194', '2021-03-03 11:47:59.127194', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (111, '2021-03-03 11:48:50.975533', '2021-03-03 11:48:50.975533', 1, '/admin/base/comm/permmenu', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (112, '2021-03-03 11:48:51.004121', '2021-03-03 11:48:51.004121', 1, '/admin/base/comm/uploadMode', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (113, '2021-03-03 11:48:51.012095', '2021-03-03 11:48:51.012095', 1, '/admin/base/comm/person', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (114, '2021-03-03 11:48:51.427097', '2021-03-03 11:48:51.427097', 1, '/admin/base/plugin/info/list', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (115, '2021-03-03 11:58:29.622254', '2021-03-03 11:58:29.622254', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (116, '2021-03-03 11:58:34.369532', '2021-03-03 11:58:34.369532', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"b6dcf7f0-7bd4-11eb-86a0-d32d1be593bd\",\"verifyCode\":\"8584\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (117, '2021-03-03 11:58:34.667743', '2021-03-03 11:58:34.667743', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (118, '2021-03-03 11:58:34.917021', '2021-03-03 11:58:34.917021', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (119, '2021-03-03 11:58:41.020338', '2021-03-03 11:58:41.020338', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (120, '2021-03-03 11:58:42.430400', '2021-03-03 11:58:42.430400', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (121, '2021-03-03 12:04:20.571276', '2021-03-03 12:04:20.571276', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (122, '2021-03-03 12:04:22.212959', '2021-03-03 12:04:22.212959', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (123, '2021-03-03 12:04:37.029554', '2021-03-03 12:04:37.029554', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"host\":\"127.0.0.1\",\"port\":\"6379\",\"db\":\"2\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (124, '2021-03-03 12:04:48.551840', '2021-03-03 12:04:48.551840', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (125, '2021-03-03 12:05:04.372712', '2021-03-03 12:05:04.372712', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"host\":\"127.0.0.1\",\"port\":\"6379\",\"db\":\"2\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (126, '2021-03-03 12:06:11.450124', '2021-03-03 12:06:11.450124', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (127, '2021-03-03 12:06:24.696765', '2021-03-03 12:06:24.696765', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"host\":\"127.0.0.1\",\"port\":\"6379\",\"db\":\"2\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (128, '2021-03-03 12:37:31.198824', '2021-03-03 12:37:31.198824', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (129, '2021-03-03 12:37:38.861065', '2021-03-03 12:37:38.861065', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"2a8d4380-7bda-11eb-a76f-79e6abdcdd4a\",\"verifyCode\":\"9856\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (130, '2021-03-03 12:37:39.235926', '2021-03-03 12:37:39.235926', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (131, '2021-03-03 12:37:39.527807', '2021-03-03 12:37:39.527807', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (132, '2021-03-03 12:37:47.654810', '2021-03-03 12:37:47.654810', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (133, '2021-03-03 12:37:49.672549', '2021-03-03 12:37:49.672549', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (134, '2021-03-03 12:37:59.866591', '2021-03-03 12:37:59.866591', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"host\":\"127.0.0.1\",\"port\":\"6379\",\"db\":\"2\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (135, '2021-03-03 12:38:20.054237', '2021-03-03 12:38:20.054237', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"host\":\"127.0.0.1\",\"port\":\"6379\",\"db\":\"2\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (136, '2021-03-03 12:38:56.833324', '2021-03-03 12:38:56.833324', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"host\":\"127.0.0.1\",\"port\":\"6379\",\"db\":\"2\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (137, '2021-03-03 12:39:27.831048', '2021-03-03 12:39:27.831048', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"host\":\"127.0.0.1\",\"port\":\"6379\",\"db\":\"2\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (138, '2021-03-03 12:40:07.033082', '2021-03-03 12:40:07.033082', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"host\":\"127.0.0.1\",\"port\":\"6379\",\"db\":\"2\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (139, '2021-03-03 12:41:15.821481', '2021-03-03 12:41:15.821481', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"host\":\"127.0.0.1\",\"port\":\"6379\",\"db\":\"2\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (140, '2021-03-03 12:41:33.562859', '2021-03-03 12:41:33.562859', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (141, '2021-03-03 12:41:45.720085', '2021-03-03 12:41:45.720085', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (142, '2021-03-03 12:43:00.529503', '2021-03-03 12:43:00.529503', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (143, '2021-03-03 12:43:21.070988', '2021-03-03 12:43:21.070988', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (144, '2021-03-03 12:43:22.084730', '2021-03-03 12:43:22.084730', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (145, '2021-03-03 12:43:22.920935', '2021-03-03 12:43:22.920935', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (146, '2021-03-03 12:43:44.176126', '2021-03-03 12:43:44.176126', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (147, '2021-03-03 12:43:45.221684', '2021-03-03 12:43:45.221684', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (148, '2021-03-03 12:44:07.927725', '2021-03-03 12:44:07.927725', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (149, '2021-03-03 12:44:08.858782', '2021-03-03 12:44:08.858782', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (150, '2021-03-03 12:47:16.342583', '2021-03-03 12:47:16.342583', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (151, '2021-03-03 12:47:19.227135', '2021-03-03 12:47:19.227135', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (152, '2021-03-03 12:47:21.756207', '2021-03-03 12:47:21.756207', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (153, '2021-03-03 12:47:21.869090', '2021-03-03 12:47:21.869090', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (154, '2021-03-03 12:48:10.311379', '2021-03-03 12:48:10.311379', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (155, '2021-03-03 12:51:49.992017', '2021-03-03 12:51:49.992017', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (156, '2021-03-03 12:54:07.485374', '2021-03-03 12:54:07.485374', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (157, '2021-03-03 12:54:11.304156', '2021-03-03 12:54:11.304156', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"7c629870-7bdc-11eb-979a-233990c34665\",\"verifyCode\":\"3162\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (158, '2021-03-03 12:54:11.671938', '2021-03-03 12:54:11.671938', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (159, '2021-03-03 12:54:11.941651', '2021-03-03 12:54:11.941651', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (160, '2021-03-03 13:01:47.877004', '2021-03-03 13:01:47.877004', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (161, '2021-03-03 13:01:51.535379', '2021-03-03 13:01:51.535379', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"8eccafe0-7bdd-11eb-8ecb-43e1335af481\",\"verifyCode\":\"4597\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (162, '2021-03-03 13:01:51.848700', '2021-03-03 13:01:51.848700', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (163, '2021-03-03 13:01:52.122302', '2021-03-03 13:01:52.122302', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (164, '2021-03-03 13:02:19.199818', '2021-03-03 13:02:19.199818', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (165, '2021-03-03 13:02:24.358942', '2021-03-03 13:02:24.358942', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"a17880b0-7bdd-11eb-8ecb-43e1335af481\",\"verifyCode\":\"4271\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (166, '2021-03-03 13:02:24.687777', '2021-03-03 13:02:24.687777', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (167, '2021-03-03 13:02:24.994263', '2021-03-03 13:02:24.994263', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (168, '2021-03-03 13:02:48.525879', '2021-03-03 13:02:48.525879', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (169, '2021-03-03 13:03:01.846832', '2021-03-03 13:03:01.846832', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"b2f372a0-7bdd-11eb-8ecb-43e1335af481\",\"verifyCode\":\"4384\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (170, '2021-03-03 13:03:02.189527', '2021-03-03 13:03:02.189527', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (171, '2021-03-03 13:03:02.538320', '2021-03-03 13:03:02.538320', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (172, '2021-03-03 13:03:35.610808', '2021-03-03 13:03:35.610808', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (173, '2021-03-03 13:03:46.164586', '2021-03-03 13:03:46.164586', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"cf043380-7bdd-11eb-8ecb-43e1335af481\",\"verifyCode\":\"8135\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (174, '2021-03-03 13:03:46.590367', '2021-03-03 13:03:46.590367', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (175, '2021-03-03 13:03:46.935747', '2021-03-03 13:03:46.935747', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (176, '2021-03-03 13:46:07.088906', '2021-03-03 13:46:07.088906', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (177, '2021-03-03 13:46:18.224914', '2021-03-03 13:46:18.224914', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"bfd08ac0-7be3-11eb-8eba-296fb5f7e688\",\"verifyCode\":\"3286\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (178, '2021-03-03 13:46:18.520641', '2021-03-03 13:46:18.520641', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (179, '2021-03-03 13:46:18.846884', '2021-03-03 13:46:18.846884', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (180, '2021-03-03 13:47:57.814435', '2021-03-03 13:47:57.814435', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (181, '2021-03-03 13:48:07.439695', '2021-03-03 13:48:07.439695', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"01ce7680-7be4-11eb-8eba-296fb5f7e688\",\"verifyCode\":\"3516\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (182, '2021-03-03 13:48:09.068841', '2021-03-03 13:48:09.068841', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (183, '2021-03-03 13:48:09.884418', '2021-03-03 13:48:09.884418', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (184, '2021-03-03 13:48:38.057723', '2021-03-03 13:48:38.057723', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (185, '2021-03-03 13:48:51.418051', '2021-03-03 13:48:51.418051', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"19ccbc60-7be4-11eb-8eba-296fb5f7e688\",\"verifyCode\":\"7312\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (186, '2021-03-03 13:48:53.069038', '2021-03-03 13:48:53.069038', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (187, '2021-03-03 13:48:54.215294', '2021-03-03 13:48:54.215294', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (188, '2021-03-03 13:49:20.944801', '2021-03-03 13:49:20.944801', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (189, '2021-03-03 13:49:53.967375', '2021-03-03 13:49:53.967375', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"335cece0-7be4-11eb-8eba-296fb5f7e688\",\"verifyCode\":\"2866\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (190, '2021-03-03 13:49:54.291343', '2021-03-03 13:49:54.291343', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (191, '2021-03-03 13:49:54.558646', '2021-03-03 13:49:54.558646', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (192, '2021-03-03 13:50:18.735987', '2021-03-03 13:50:18.735987', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (193, '2021-03-03 13:50:22.500920', '2021-03-03 13:50:22.500920', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"55ced3b0-7be4-11eb-8eba-296fb5f7e688\",\"verifyCode\":\"1828\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (194, '2021-03-03 13:50:22.806705', '2021-03-03 13:50:22.806705', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (195, '2021-03-03 13:50:23.050103', '2021-03-03 13:50:23.050103', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (196, '2021-03-03 13:51:23.961285', '2021-03-03 13:51:23.961285', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (197, '2021-03-03 13:51:59.630060', '2021-03-03 13:51:59.630060', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"7caf5f40-7be4-11eb-b619-479bbbd00e34\",\"verifyCode\":\"0497\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (198, '2021-03-03 13:51:59.941572', '2021-03-03 13:51:59.941572', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (199, '2021-03-03 13:52:00.203939', '2021-03-03 13:52:00.203939', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (200, '2021-03-03 13:52:32.266845', '2021-03-03 13:52:32.266845', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (201, '2021-03-03 13:53:28.989190', '2021-03-03 13:53:28.989190', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"a5665880-7be4-11eb-b619-479bbbd00e34\",\"verifyCode\":\"7220\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (202, '2021-03-03 13:53:29.313387', '2021-03-03 13:53:29.313387', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (203, '2021-03-03 13:53:32.913177', '2021-03-03 13:53:32.913177', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"c766dfe0-7be4-11eb-b619-479bbbd00e34\",\"verifyCode\":\"3887\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (204, '2021-03-03 13:53:33.208015', '2021-03-03 13:53:33.208015', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (205, '2021-03-03 13:53:33.474156', '2021-03-03 13:53:33.474156', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (206, '2021-03-03 13:54:03.695568', '2021-03-03 13:54:03.695568', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (207, '2021-03-03 16:32:52.521369', '2021-03-03 16:32:52.521369', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (208, '2021-03-03 16:32:55.554472', '2021-03-03 16:32:55.554472', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"0b84c370-7bfb-11eb-8872-09e1840c83f5\",\"verifyCode\":\"6250\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (209, '2021-03-03 16:32:55.857952', '2021-03-03 16:32:55.857952', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (210, '2021-03-03 16:32:56.142812', '2021-03-03 16:32:56.142812', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (211, '2021-03-03 16:33:21.732921', '2021-03-03 16:33:21.732921', NULL, '/admin/base/open/captcha', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (212, '2021-03-03 16:48:53.060307', '2021-03-03 16:48:53.060307', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (213, '2021-03-03 16:48:58.736081', '2021-03-03 16:48:58.736081', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"480b1400-7bfd-11eb-8e22-e1f0ce2028ec\",\"verifyCode\":\"6072\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (214, '2021-03-03 16:48:59.053596', '2021-03-03 16:48:59.053596', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (215, '2021-03-03 16:48:59.322111', '2021-03-03 16:48:59.322111', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (216, '2021-03-03 16:49:03.571630', '2021-03-03 16:49:03.571630', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (217, '2021-03-03 16:49:14.033261', '2021-03-03 16:49:14.033261', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"4e4eedf0-7bfd-11eb-8e22-e1f0ce2028ec\",\"verifyCode\":\"6688\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (218, '2021-03-03 16:49:14.337858', '2021-03-03 16:49:14.337858', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (219, '2021-03-03 16:49:14.604046', '2021-03-03 16:49:14.604046', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (220, '2021-03-03 16:49:38.447620', '2021-03-03 16:49:38.447620', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (221, '2021-03-03 16:56:23.715159', '2021-03-03 16:56:23.715159', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"63186ea0-7bfd-11eb-8e22-e1f0ce2028ec\",\"verifyCode\":\"8878\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (222, '2021-03-03 16:56:23.998791', '2021-03-03 16:56:23.998791', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (223, '2021-03-03 16:56:24.271864', '2021-03-03 16:56:24.271864', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (224, '2021-03-03 16:56:26.677296', '2021-03-03 16:56:26.677296', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (225, '2021-03-03 16:56:27.853918', '2021-03-03 16:56:27.853918', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (226, '2021-03-03 16:56:28.564355', '2021-03-03 16:56:28.564355', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (227, '2021-03-03 16:56:29.531484', '2021-03-03 16:56:29.531484', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (228, '2021-03-03 16:58:35.343023', '2021-03-03 16:58:35.343023', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (229, '2021-03-03 16:58:36.436697', '2021-03-03 16:58:36.436697', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (230, '2021-03-03 16:58:38.446528', '2021-03-03 16:58:38.446528', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (231, '2021-03-03 16:58:40.823075', '2021-03-03 16:58:40.823075', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (232, '2021-03-03 16:58:41.458627', '2021-03-03 16:58:41.458627', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (233, '2021-03-03 17:04:11.431666', '2021-03-03 17:04:11.431666', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (234, '2021-03-03 17:04:12.437287', '2021-03-03 17:04:12.437287', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (235, '2021-03-03 17:04:44.304084', '2021-03-03 17:04:44.304084', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (236, '2021-03-03 17:04:46.242201', '2021-03-03 17:04:46.242201', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (237, '2021-03-03 17:06:22.669104', '2021-03-03 17:06:22.669104', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (238, '2021-03-03 17:06:24.524643', '2021-03-03 17:06:24.524643', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (239, '2021-03-03 17:09:08.448245', '2021-03-03 17:09:08.448245', 1, '/admin/base/sys/param/page', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20}');
|
||||
INSERT INTO `base_sys_log` VALUES (240, '2021-03-03 17:09:09.258562', '2021-03-03 17:09:09.258562', 1, '/admin/space/type/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (241, '2021-03-03 17:09:09.529127', '2021-03-03 17:09:09.529127', 1, '/admin/space/info/page', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":12,\"total\":0,\"classifyId\":null}');
|
||||
INSERT INTO `base_sys_log` VALUES (242, '2021-03-03 17:09:47.152943', '2021-03-03 17:09:47.152943', NULL, '/admin/base/open/login', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"1ced8cf0-7bfb-11eb-8872-09e1840c83f5\",\"verifyCode\":\"6438\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (243, '2021-03-03 17:09:47.427300', '2021-03-03 17:09:47.427300', NULL, '/admin/base/open/captcha', '127.0.0.1, 117.30.114.56', '本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (244, '2021-03-03 17:10:06.718584', '2021-03-03 17:10:06.718584', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (245, '2021-03-03 17:10:08.392878', '2021-03-03 17:10:08.392878', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (246, '2021-03-03 17:12:38.771099', '2021-03-03 17:12:38.771099', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (247, '2021-03-03 17:12:41.510661', '2021-03-03 17:12:41.510661', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (248, '2021-03-03 17:12:43.314389', '2021-03-03 17:12:43.314389', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (249, '2021-03-03 17:13:03.242506', '2021-03-03 17:13:03.242506', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (250, '2021-03-03 17:13:09.862915', '2021-03-03 17:13:09.862915', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (251, '2021-03-03 17:13:13.522996', '2021-03-03 17:13:13.522996', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (252, '2021-03-03 17:22:08.108223', '2021-03-03 17:22:08.108223', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (253, '2021-03-03 17:22:13.484492', '2021-03-03 17:22:13.484492', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"ed2f6590-7c01-11eb-82c8-c5878b78cfda\",\"verifyCode\":\"3233\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (254, '2021-03-03 17:22:13.757471', '2021-03-03 17:22:13.757471', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (255, '2021-03-03 17:22:14.011915', '2021-03-03 17:22:14.011915', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (256, '2021-03-03 17:22:21.779030', '2021-03-03 17:22:21.779030', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (257, '2021-03-03 17:22:25.192213', '2021-03-03 17:22:25.192213', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (258, '2021-03-03 17:22:48.679544', '2021-03-03 17:22:48.679544', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (259, '2021-03-03 17:22:50.750458', '2021-03-03 17:22:50.750458', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"redis\":\"{\\n \\\"host\\\": \\\"127.0.0.1\\\",\\n \\\"password\\\": \\\"\\\",\\n \\\"port\\\": 6379,\\n \\\"db\\\": 2\\n}\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (260, '2021-03-03 17:23:13.972800', '2021-03-03 17:23:13.972800', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (261, '2021-03-03 17:23:15.076655', '2021-03-03 17:23:15.076655', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (262, '2021-03-03 17:23:39.536115', '2021-03-03 17:23:39.536115', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (263, '2021-03-03 17:23:51.472687', '2021-03-03 17:23:51.472687', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (264, '2021-03-03 17:23:54.293333', '2021-03-03 17:23:54.293333', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"2acb56c0-7c02-11eb-98b7-792421c267c8\",\"verifyCode\":\"2399\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (265, '2021-03-03 17:23:54.569564', '2021-03-03 17:23:54.569564', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (266, '2021-03-03 17:23:54.831497', '2021-03-03 17:23:54.831497', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (267, '2021-03-03 17:23:59.135326', '2021-03-03 17:23:59.135326', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (268, '2021-03-03 17:24:00.094109', '2021-03-03 17:24:00.094109', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (269, '2021-03-03 17:24:12.141484', '2021-03-03 17:24:12.141484', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (270, '2021-03-03 17:30:48.462329', '2021-03-03 17:30:48.462329', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"redis\":\"{\\n \\\"host\\\": \\\"127.0.0.1\\\",\\n \\\"password\\\": \\\"\\\",\\n \\\"port\\\": 6379,\\n \\\"db\\\": 2\\n}\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (271, '2021-03-03 17:31:12.708111', '2021-03-03 17:31:12.708111', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"reds\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (272, '2021-03-03 17:31:14.924360', '2021-03-03 17:31:14.924360', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"red\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (273, '2021-03-03 17:31:17.324613', '2021-03-03 17:31:17.324613', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (274, '2021-03-03 17:31:20.737629', '2021-03-03 17:31:20.737629', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"Redi\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (275, '2021-03-03 17:31:21.858243', '2021-03-03 17:31:21.858243', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (276, '2021-03-03 17:31:27.643338', '2021-03-03 17:31:27.643338', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (277, '2021-03-03 17:31:28.377406', '2021-03-03 17:31:28.377406', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (278, '2021-03-03 17:31:28.883226', '2021-03-03 17:31:28.883226', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (279, '2021-03-03 17:31:29.310141', '2021-03-03 17:31:29.310141', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (280, '2021-03-03 17:31:29.585430', '2021-03-03 17:31:29.585430', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (281, '2021-03-03 17:31:29.985625', '2021-03-03 17:31:29.985625', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (282, '2021-03-03 17:31:30.324320', '2021-03-03 17:31:30.324320', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (283, '2021-03-03 17:31:47.080049', '2021-03-03 17:31:47.080049', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (284, '2021-03-03 17:31:47.835452', '2021-03-03 17:31:47.835452', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (285, '2021-03-03 17:31:48.437822', '2021-03-03 17:31:48.437822', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (286, '2021-03-03 17:31:49.016782', '2021-03-03 17:31:49.016782', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (287, '2021-03-03 17:31:49.588644', '2021-03-03 17:31:49.588644', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (288, '2021-03-03 17:31:50.071995', '2021-03-03 17:31:50.071995', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (289, '2021-03-03 17:31:50.635501', '2021-03-03 17:31:50.635501', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (290, '2021-03-03 17:31:51.049890', '2021-03-03 17:31:51.049890', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (291, '2021-03-03 17:31:51.898896', '2021-03-03 17:31:51.898896', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (292, '2021-03-03 17:31:52.386029', '2021-03-03 17:31:52.386029', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (293, '2021-03-03 17:31:53.388626', '2021-03-03 17:31:53.388626', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (294, '2021-03-03 17:31:56.685032', '2021-03-03 17:31:56.685032', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (295, '2021-03-03 17:31:58.994081', '2021-03-03 17:31:58.994081', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (296, '2021-03-03 17:32:02.135990', '2021-03-03 17:32:02.135990', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (297, '2021-03-03 17:32:04.360170', '2021-03-03 17:32:04.360170', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (298, '2021-03-03 17:32:30.308714', '2021-03-03 17:32:30.308714', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (299, '2021-03-03 17:38:04.680237', '2021-03-03 17:38:04.680237', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (300, '2021-03-03 17:38:05.835226', '2021-03-03 17:38:05.835226', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"keyWord\":\"\",\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (301, '2021-03-03 17:38:06.726026', '2021-03-03 17:38:06.726026', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (302, '2021-03-03 17:38:12.920429', '2021-03-03 17:38:12.920429', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"redis\":\"[{\\n \\\"host\\\": \\\"127.0.0.1\\\",\\n \\\"password\\\": \\\"\\\",\\n \\\"port\\\": 6379,\\n \\\"db\\\": 2\\n}]\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (303, '2021-03-03 17:38:46.740764', '2021-03-03 17:38:46.740764', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (304, '2021-03-03 17:38:52.715618', '2021-03-03 17:38:52.715618', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"406ab320-7c04-11eb-be2d-811a65c83598\",\"verifyCode\":\"6183\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (305, '2021-03-03 17:38:53.072073', '2021-03-03 17:38:53.072073', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (306, '2021-03-03 17:38:53.372572', '2021-03-03 17:38:53.372572', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (307, '2021-03-03 17:38:56.500039', '2021-03-03 17:38:56.500039', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (308, '2021-03-03 17:38:57.927997', '2021-03-03 17:38:57.927997', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (309, '2021-03-03 17:39:02.997722', '2021-03-03 17:39:02.997722', 1, '/admin/base/plugin/info/config', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"config\":{\"redis\":\"{\\n \\\"host\\\": \\\"127.0.0.1\\\",\\n \\\"password\\\": \\\"\\\",\\n \\\"port\\\": 6379,\\n \\\"db\\\": 2\\n}\"}}');
|
||||
INSERT INTO `base_sys_log` VALUES (310, '2021-03-03 17:39:15.317374', '2021-03-03 17:39:15.317374', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (311, '2021-03-03 17:39:16.339704', '2021-03-03 17:39:16.339704', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (312, '2021-03-03 17:39:17.490028', '2021-03-03 17:39:17.490028', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (313, '2021-03-03 17:45:05.721620', '2021-03-03 17:45:05.721620', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (314, '2021-03-03 17:48:37.705498', '2021-03-03 17:48:37.705498', 1, '/admin/base/plugin/info/enable', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\",\"enable\":0}');
|
||||
INSERT INTO `base_sys_log` VALUES (315, '2021-03-03 17:48:48.106098', '2021-03-03 17:48:48.106098', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (316, '2021-03-03 17:48:50.939509', '2021-03-03 17:48:50.939509', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (317, '2021-03-03 17:48:51.024888', '2021-03-03 17:48:51.024888', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (318, '2021-03-03 17:49:21.259342', '2021-03-03 17:49:21.259342', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (319, '2021-03-03 17:49:22.306161', '2021-03-03 17:49:22.306161', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (320, '2021-03-03 17:49:23.790581', '2021-03-03 17:49:23.790581', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (321, '2021-03-03 17:49:31.851339', '2021-03-03 17:49:31.851339', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (322, '2021-03-03 17:49:33.912464', '2021-03-03 17:49:33.912464', 1, '/admin/base/sys/param/page', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20}');
|
||||
INSERT INTO `base_sys_log` VALUES (323, '2021-03-03 17:49:35.748862', '2021-03-03 17:49:35.748862', 1, '/admin/base/sys/param/page', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true}');
|
||||
INSERT INTO `base_sys_log` VALUES (324, '2021-03-03 17:49:38.321481', '2021-03-03 17:49:38.321481', 1, '/admin/base/sys/param/info', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"id\":\"2\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (325, '2021-03-03 17:49:51.142980', '2021-03-03 17:49:51.142980', 1, '/admin/base/sys/param/update', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"name\":\"JSON参数\",\"keyName\":\"json\",\"data\":\"{\\n code: 111\\n}\",\"remark\":null,\"id\":2,\"createTime\":\"2021-02-26 13:53:18\",\"updateTime\":\"2021-02-26 13:53:18\",\"dataType\":0}');
|
||||
INSERT INTO `base_sys_log` VALUES (326, '2021-03-03 17:49:51.883958', '2021-03-03 17:49:51.883958', 1, '/admin/base/sys/param/page', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true}');
|
||||
INSERT INTO `base_sys_log` VALUES (327, '2021-03-03 17:49:54.834253', '2021-03-03 17:49:54.834253', 1, '/admin/base/sys/param/info', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"id\":\"1\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (328, '2021-03-03 17:49:55.590512', '2021-03-03 17:49:55.590512', 1, '/admin/space/type/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (329, '2021-03-03 17:49:55.856996', '2021-03-03 17:49:55.856996', 1, '/admin/space/info/page', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":12,\"total\":0,\"classifyId\":null}');
|
||||
INSERT INTO `base_sys_log` VALUES (330, '2021-03-03 17:50:04.485964', '2021-03-03 17:50:04.485964', 1, '/admin/base/sys/param/update', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"name\":\"富文本参数\",\"keyName\":\"text\",\"data\":\"<p><strong class=\\\"ql-size-huge\\\">111xxxxx2222<span class=\\\"ql-cursor\\\"></span></strong></p>\",\"remark\":null,\"id\":1,\"createTime\":\"2021-02-26 13:53:05\",\"updateTime\":\"2021-02-26 13:53:05\",\"dataType\":0}');
|
||||
INSERT INTO `base_sys_log` VALUES (331, '2021-03-03 17:50:04.860012', '2021-03-03 17:50:04.860012', 1, '/admin/base/sys/param/page', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true}');
|
||||
INSERT INTO `base_sys_log` VALUES (332, '2021-03-03 17:51:02.244290', '2021-03-03 17:51:02.244290', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (333, '2021-03-03 17:51:03.016750', '2021-03-03 17:51:03.016750', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (334, '2021-03-03 17:51:33.635048', '2021-03-03 17:51:33.635048', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (335, '2021-03-03 17:51:34.778061', '2021-03-03 17:51:34.778061', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (336, '2021-03-03 17:51:35.607713', '2021-03-03 17:51:35.607713', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (337, '2021-03-03 17:51:36.557430', '2021-03-03 17:51:36.557430', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (338, '2021-03-03 17:51:38.534901', '2021-03-03 17:51:38.534901', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (339, '2021-03-03 17:51:42.445085', '2021-03-03 17:51:42.445085', 1, '/admin/base/comm/uploadMode', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (340, '2021-03-03 17:51:42.688119', '2021-03-03 17:51:42.688119', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (341, '2021-03-03 17:51:42.723989', '2021-03-03 17:51:42.723989', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (342, '2021-03-03 17:51:43.263086', '2021-03-03 17:51:43.263086', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (343, '2021-03-03 17:51:45.870745', '2021-03-03 17:51:45.870745', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (344, '2021-03-03 17:51:45.915179', '2021-03-03 17:51:45.915179', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (345, '2021-03-03 17:51:45.918331', '2021-03-03 17:51:45.918331', 1, '/admin/base/comm/uploadMode', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (346, '2021-03-03 17:51:46.414446', '2021-03-03 17:51:46.414446', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (347, '2021-03-03 17:51:47.576265', '2021-03-03 17:51:47.576265', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (348, '2021-03-03 17:51:55.432795', '2021-03-03 17:51:55.432795', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (349, '2021-03-03 17:51:55.451780', '2021-03-03 17:51:55.451780', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (350, '2021-03-03 17:51:55.486381', '2021-03-03 17:51:55.486381', 1, '/admin/base/comm/uploadMode', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (351, '2021-03-03 17:51:55.994881', '2021-03-03 17:51:55.994881', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (352, '2021-03-03 17:51:57.484227', '2021-03-03 17:51:57.484227', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (353, '2021-03-03 17:52:12.979547', '2021-03-03 17:52:12.979547', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (354, '2021-03-03 17:52:13.744398', '2021-03-03 17:52:13.744398', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (355, '2021-03-03 17:53:46.349081', '2021-03-03 17:53:46.349081', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (356, '2021-03-03 17:53:48.376525', '2021-03-03 17:53:48.376525', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (357, '2021-03-03 18:06:23.394068', '2021-03-03 18:06:23.394068', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (358, '2021-03-03 18:06:26.477775', '2021-03-03 18:06:26.477775', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"1bdb94d0-7c08-11eb-8e14-a5ae9204e611\",\"verifyCode\":\"8136\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (359, '2021-03-03 18:06:26.749698', '2021-03-03 18:06:26.749698', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (360, '2021-03-03 18:06:27.028026', '2021-03-03 18:06:27.028026', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (361, '2021-03-03 18:06:31.426046', '2021-03-03 18:06:31.426046', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (362, '2021-03-03 18:06:34.296691', '2021-03-03 18:06:34.296691', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (363, '2021-03-03 18:06:35.209903', '2021-03-03 18:06:35.209903', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (364, '2021-03-03 18:06:55.955985', '2021-03-03 18:06:55.955985', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (365, '2021-03-03 18:10:56.466111', '2021-03-03 18:10:56.466111', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (366, '2021-03-03 18:11:28.996304', '2021-03-03 18:11:28.996304', NULL, '/admin/base/open/captcha', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"height\":\"36\",\"width\":\"110\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (367, '2021-03-03 18:12:01.521951', '2021-03-03 18:12:01.521951', NULL, '/admin/base/open/login', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"username\":\"admin\",\"password\":\"123456\",\"captchaId\":\"d201fba0-7c08-11eb-8bd3-15193791082f\",\"verifyCode\":\"3034\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (368, '2021-03-03 18:12:01.820231', '2021-03-03 18:12:01.820231', 1, '/admin/base/comm/person', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (369, '2021-03-03 18:12:02.067010', '2021-03-03 18:12:02.067010', 1, '/admin/base/comm/permmenu', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', NULL);
|
||||
INSERT INTO `base_sys_log` VALUES (370, '2021-03-03 18:12:35.151542', '2021-03-03 18:12:35.151542', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (371, '2021-03-03 18:12:36.936516', '2021-03-03 18:12:36.936516', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (372, '2021-03-03 18:12:39.078066', '2021-03-03 18:12:39.078066', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (373, '2021-03-03 18:12:45.957592', '2021-03-03 18:12:45.957592', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (374, '2021-03-03 18:12:47.062692', '2021-03-03 18:12:47.062692', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (375, '2021-03-03 18:12:47.852967', '2021-03-03 18:12:47.852967', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (376, '2021-03-03 18:12:48.452300', '2021-03-03 18:12:48.452300', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (377, '2021-03-03 18:12:50.109412', '2021-03-03 18:12:50.109412', 1, '/admin/base/plugin/info/list', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"isTrusted\":true,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (378, '2021-03-03 18:12:58.119556', '2021-03-03 18:12:58.119556', 1, '/admin/base/plugin/info/getConfig', '117.30.38.56,127.0.0.1, 117.30.114.56', '中国福建厦门,本机地址,中国福建厦门', '{\"namespace\":\"redis\"}');
|
||||
INSERT INTO `base_sys_log` VALUES (1, '2021-03-05 16:41:02.053440', '2021-03-05 16:41:02.053440', 1, '/admin/base/sys/log/page', '117.30.38.56,127.0.0.1, 117.30.115.254', '中国福建厦门,本机地址,中国福建厦门', '{\"page\":1,\"size\":20,\"sort\":\"desc\",\"order\":\"createTime\"}');
|
||||
COMMIT;
|
||||
|
||||
-- ----------------------------
|
||||
@ -533,7 +156,7 @@ CREATE TABLE `base_sys_menu` (
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `IDX_05e3d6a56604771a6da47ebf8e` (`createTime`),
|
||||
KEY `IDX_d5203f18daaf7c3fe0ab34497f` (`updateTime`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=117 DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=120 DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of base_sys_menu
|
||||
@ -590,6 +213,9 @@ INSERT INTO `base_sys_menu` VALUES (113, '2021-02-27 14:25:02.066000', '2021-02-
|
||||
INSERT INTO `base_sys_menu` VALUES (114, '2021-02-27 16:36:59.322000', '2021-02-27 16:36:59.322000', 110, '保存配置', NULL, 'base:plugin:info:config', 2, NULL, 0, NULL, 1, 1, NULL);
|
||||
INSERT INTO `base_sys_menu` VALUES (115, '2021-02-27 16:38:21.000000', '2021-02-27 18:18:22.000000', 110, '获取配置', NULL, 'base:plugin:info:getConfig', 2, NULL, 0, NULL, 1, 1, NULL);
|
||||
INSERT INTO `base_sys_menu` VALUES (116, '2021-02-27 17:57:42.000000', '2021-02-27 18:19:35.000000', 110, '开启、关闭', NULL, 'base:plugin:info:enable', 2, NULL, 0, NULL, 1, 1, NULL);
|
||||
INSERT INTO `base_sys_menu` VALUES (117, '2021-03-05 10:58:25.000000', '2021-03-05 10:58:25.000000', NULL, '任务管理', NULL, NULL, 0, 'icon-activity', 5, NULL, 1, 1, NULL);
|
||||
INSERT INTO `base_sys_menu` VALUES (118, '2021-03-05 10:59:42.113522', '2021-03-05 10:59:42.113522', 117, '任务列表', '/task', NULL, 1, 'icon-menu', 0, 'cool/modules/task/views/task.vue', 1, 1, 'task');
|
||||
INSERT INTO `base_sys_menu` VALUES (119, '2021-03-05 11:00:00.000000', '2021-03-05 11:00:00.000000', 118, '权限', NULL, 'task:info:page,task:info:list,task:info:info,task:info:add,task:info:delete,task:info:update,task:info:stop,task:info:start,task:info:once,task:info:log', 2, NULL, 0, NULL, 1, 1, NULL);
|
||||
COMMIT;
|
||||
|
||||
-- ----------------------------
|
||||
@ -1095,7 +721,6 @@ INSERT INTO `core_config` VALUES (2, '2021-02-26 17:58:48.970000', '2021-02-27 1
|
||||
INSERT INTO `core_config` VALUES (3, '2021-02-26 17:59:09.894000', '2021-02-27 11:50:00.921000', 'oss.bucket', '');
|
||||
INSERT INTO `core_config` VALUES (4, '2021-02-26 17:59:25.566000', '2021-02-27 11:50:03.167000', 'oss.endpoint', '');
|
||||
INSERT INTO `core_config` VALUES (5, '2021-02-26 18:00:06.396000', '2021-02-27 13:32:58.068000', 'oss.timeout', '3600s');
|
||||
INSERT INTO `core_config` VALUES (6, '2021-03-02 17:19:51.730160', '2021-03-02 17:19:51.730160', 'cool.core.init.db', 'init');
|
||||
INSERT INTO `core_config` VALUES (10, '2021-03-03 17:22:50.757000', '2021-03-03 17:22:50.757000', 'redis.redis', '{\n \"host\": \"127.0.0.1\",\n \"password\": \"\",\n \"port\": 6379,\n \"db\": 2\n}');
|
||||
COMMIT;
|
||||
|
||||
@ -1126,9 +751,9 @@ CREATE TABLE `core_plugin` (
|
||||
-- Records of core_plugin
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
INSERT INTO `core_plugin` VALUES (8, '2021-03-03 11:26:59.822415', '2021-03-04 18:40:31.000000', 'Redis缓存', 'cool官方', '邮箱:team@cool-js.com', '替换系统的默认缓存为redis', '1.0.0', 1, 1, 'redis', '[{\n \"label\": \"配置\",\n \"prop\": \"redis\",\n \"component\": {\n \"name\": \"cl-codemirror\",\n \"attrs\": {\n \"placeholder\": \"{\\\"host\\\":\\\"127.0.0.1\\\",\\\"password\\\":\\\"\\\",\\\"port\\\":6379,\\\"db\\\":2}\"\n },\n \"props\":{\n \"height\": \"200px\"\n }\n },\n \"value\": \"{\\\"host\\\":\\\"127.0.0.1\\\",\\\"password\\\":\\\"\\\",\\\"port\\\":6379,\\\"db\\\":2}\",\n \"props\": {\n \"label-width\": \"80px\"\n },\n \"rules\": {\n \"required\": true,\n \"message\": \"值不能为空\"\n }\n}]');
|
||||
INSERT INTO `core_plugin` VALUES (9, '2021-03-03 16:25:14.668900', '2021-03-04 18:40:31.000000', '阿里云OSS', 'cool官方', '邮箱:team@cool-js.com', '将文件上传到阿里云oss,前端签名直传方式', '1.0.0', 1, 0, 'oss', NULL);
|
||||
INSERT INTO `core_plugin` VALUES (14, '2021-03-04 16:28:00.891291', '2021-03-04 18:40:31.000000', '任务与队列', 'cool官方', '邮箱:team@cool-js.com', '替换系统的默认缓存为redis', '1.0.0', 1, 1, 'queue', NULL);
|
||||
INSERT INTO `core_plugin` VALUES (8, '2021-03-03 11:26:59.822415', '2021-03-05 16:34:25.000000', 'Redis缓存', 'cool官方', '邮箱:team@cool-js.com', '替换系统的默认缓存为redis', '1.0.0', 0, 1, 'redis', '[{\n \"label\": \"配置\",\n \"prop\": \"redis\",\n \"component\": {\n \"name\": \"cl-codemirror\",\n \"attrs\": {\n \"placeholder\": \"{\\\"host\\\":\\\"127.0.0.1\\\",\\\"password\\\":\\\"\\\",\\\"port\\\":6379,\\\"db\\\":2}\"\n },\n \"props\":{\n \"height\": \"200px\"\n }\n },\n \"value\": \"{\\\"host\\\":\\\"127.0.0.1\\\",\\\"password\\\":\\\"\\\",\\\"port\\\":6379,\\\"db\\\":2}\",\n \"props\": {\n \"label-width\": \"80px\"\n },\n \"rules\": {\n \"required\": true,\n \"message\": \"值不能为空\"\n }\n}]');
|
||||
INSERT INTO `core_plugin` VALUES (9, '2021-03-03 16:25:14.668900', '2021-03-05 16:35:24.000000', '阿里云OSS', 'cool官方', '邮箱:team@cool-js.com', '将文件上传到阿里云oss,前端签名直传方式', '1.0.2', 1, 0, 'oss', NULL);
|
||||
INSERT INTO `core_plugin` VALUES (14, '2021-03-04 16:28:00.891291', '2021-03-05 16:34:26.000000', '任务与队列', 'cool官方', '邮箱:team@cool-js.com', '基于bull的任务与队列,支持分布式任务', '1.0.0', 0, 1, 'queue', NULL);
|
||||
COMMIT;
|
||||
|
||||
-- ----------------------------
|
||||
@ -1154,4 +779,82 @@ BEGIN;
|
||||
INSERT INTO `demo_app_goods` VALUES (1, '2021-03-02 17:22:10.687462', '2021-03-02 17:22:10.687462', 'cool-mall商城', 'https://docs.cool-js.com/mall/show05.jpeg', 20.00);
|
||||
COMMIT;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for task_info
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `task_info`;
|
||||
CREATE TABLE `task_info` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
|
||||
`createTime` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) COMMENT '创建时间',
|
||||
`updateTime` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6) COMMENT '更新时间',
|
||||
`repeatConf` varchar(1000) DEFAULT NULL COMMENT '任务配置',
|
||||
`name` varchar(255) NOT NULL COMMENT '名称',
|
||||
`cron` varchar(255) DEFAULT NULL COMMENT 'cron',
|
||||
`limitCount` int(11) DEFAULT NULL COMMENT '最大执行次数 不传为无限次',
|
||||
`every` int(11) DEFAULT NULL COMMENT '每间隔多少毫秒执行一次 如果cron设置了 这项设置就无效',
|
||||
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
|
||||
`status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态 0:停止 1:运行',
|
||||
`startDate` datetime DEFAULT NULL COMMENT '开始时间',
|
||||
`endDate` datetime DEFAULT NULL COMMENT '结束时间',
|
||||
`data` varchar(255) DEFAULT NULL COMMENT '数据',
|
||||
`service` varchar(255) DEFAULT NULL COMMENT '执行的service实例ID',
|
||||
`type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '状态 0:系统 1:用户',
|
||||
`nextRunTime` datetime DEFAULT NULL COMMENT '下一次执行时间',
|
||||
`taskType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '状态 0:cron 1:时间间隔',
|
||||
`jobId` varchar(255) DEFAULT NULL COMMENT '任务ID',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `IDX_6ced02f467e59bd6306b549bb0` (`createTime`),
|
||||
KEY `IDX_2adc6f9c241391126f27dac145` (`updateTime`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of task_info
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
INSERT INTO `task_info` VALUES (1, '2021-03-05 11:46:24.000000', '2021-03-05 16:33:44.081230', '{\"count\":1,\"id\":1,\"createTime\":\"2021-03-05 11:46:24\",\"updateTime\":\"2021-03-05 16:33:37\",\"jobId\":1,\"name\":\"测试\",\"every\":1000,\"status\":1,\"service\":\"demoOrderService.test()\",\"type\":\"0\",\"taskType\":1}', '测试', NULL, NULL, 1000, NULL, 0, NULL, NULL, NULL, 'demoOrderService.test()', 0, NULL, 1, 'repeat:73bac7c57dd4c1ffd6dc41c3c3cb40e1:1614932670000');
|
||||
COMMIT;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for task_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `task_log`;
|
||||
CREATE TABLE `task_log` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
|
||||
`createTime` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) COMMENT '创建时间',
|
||||
`updateTime` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6) COMMENT '更新时间',
|
||||
`taskId` bigint(20) DEFAULT NULL COMMENT '任务ID',
|
||||
`status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '状态 0:失败 1:成功',
|
||||
`detail` text COMMENT '详情描述',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `IDX_b9af0e100be034924b270aab31` (`createTime`),
|
||||
KEY `IDX_8857d8d43d38bebd7159af1fa6` (`updateTime`),
|
||||
KEY `IDX_1142dfec452e924b346f060fda` (`taskId`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=541 DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of task_log
|
||||
-- ----------------------------
|
||||
BEGIN;
|
||||
INSERT INTO `task_log` VALUES (521, '2021-03-05 16:32:09.017824', '2021-03-05 16:32:09.017824', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (522, '2021-03-05 16:32:10.015478', '2021-03-05 16:32:10.015478', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (523, '2021-03-05 16:32:11.017549', '2021-03-05 16:32:11.017549', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (524, '2021-03-05 16:32:12.015647', '2021-03-05 16:32:12.015647', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (525, '2021-03-05 16:32:35.349964', '2021-03-05 16:32:35.349964', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (526, '2021-03-05 16:33:22.020797', '2021-03-05 16:33:22.020797', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (527, '2021-03-05 16:33:23.015415', '2021-03-05 16:33:23.015415', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (528, '2021-03-05 16:33:24.013962', '2021-03-05 16:33:24.013962', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (529, '2021-03-05 16:33:29.017289', '2021-03-05 16:33:29.017289', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (530, '2021-03-05 16:33:30.014388', '2021-03-05 16:33:30.014388', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (531, '2021-03-05 16:33:31.019317', '2021-03-05 16:33:31.019317', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (532, '2021-03-05 16:33:32.016401', '2021-03-05 16:33:32.016401', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (533, '2021-03-05 16:33:33.014518', '2021-03-05 16:33:33.014518', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (534, '2021-03-05 16:33:38.019010', '2021-03-05 16:33:38.019010', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (535, '2021-03-05 16:33:39.015834', '2021-03-05 16:33:39.015834', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (536, '2021-03-05 16:33:40.015489', '2021-03-05 16:33:40.015489', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (537, '2021-03-05 16:33:41.013458', '2021-03-05 16:33:41.013458', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (538, '2021-03-05 16:33:42.015814', '2021-03-05 16:33:42.015814', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (539, '2021-03-05 16:33:43.014712', '2021-03-05 16:33:43.014712', 1, 1, '');
|
||||
INSERT INTO `task_log` VALUES (540, '2021-03-05 16:33:44.014487', '2021-03-05 16:33:44.014487', 1, 1, '');
|
||||
COMMIT;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user