diff --git a/ZR.Admin.Grpc/ZR.Admin.Grpc.csproj b/ZR.Admin.Grpc/ZR.Admin.Grpc.csproj
index dbd25e7..5ef8f5d 100644
--- a/ZR.Admin.Grpc/ZR.Admin.Grpc.csproj
+++ b/ZR.Admin.Grpc/ZR.Admin.Grpc.csproj
@@ -7,7 +7,7 @@
-
+
diff --git a/ZR.Admin.WebApi/Controllers/System/SysFieldController.cs b/ZR.Admin.WebApi/Controllers/System/SysFieldController.cs
index 6ca29b6..81085b0 100644
--- a/ZR.Admin.WebApi/Controllers/System/SysFieldController.cs
+++ b/ZR.Admin.WebApi/Controllers/System/SysFieldController.cs
@@ -1,4 +1,5 @@
using ZR.Admin.WebApi.Filters;
+using ZR.Model;
using ZR.ServiceCore.Model;
using ZR.ServiceCore.Model.Dto;
using ZR.ServiceCore.Services.IService;
@@ -19,21 +20,8 @@ public class SysFieldController : BaseController
}
[HttpGet("getModelList")]
- public IActionResult GetModelList()
- {
- var serviceCoreModels = AppDomain.CurrentDomain
- .GetAssemblies()
- .First(it => it.FullName.Contains("ZR.ServiceCore"))
- .ExportedTypes
- .Where(p => p.FullName.StartsWith("ZR.ServiceCore.Model"))
- .Select(it => new
- {
- it.FullName,
- // Properties = it.GetProperties()
- })
- .ToList();
- return SUCCESS(serviceCoreModels);
- }
+ public async Task GetModelList([FromQuery] PagerInfo pagerInfo)
+ => SUCCESS(await _sysFieldService.GetModelList(pagerInfo));
[HttpGet("getFields")]
public async Task GetFields([FromQuery] string fullName, long roleId)
diff --git a/ZR.Admin.WebApi/Program.cs b/ZR.Admin.WebApi/Program.cs
index dc77caa..d9beb7d 100644
--- a/ZR.Admin.WebApi/Program.cs
+++ b/ZR.Admin.WebApi/Program.cs
@@ -4,20 +4,14 @@ using Microsoft.AspNetCore.DataProtection;
using NLog.Web;
using System.Text.Json;
using BloomFilter.CSRedis.Configurations;
-using Grpc.Net.Client;
-using GrpcService1;
using Microsoft.Extensions.Caching.Distributed;
using Microsoft.Extensions.Caching.Redis;
using Microsoft.Extensions.Options;
-using Newtonsoft.Json;
-using Newtonsoft.Json.Linq;
using ZR.Admin.Grpc;
using ZR.Admin.Grpc.Extensions;
using ZR.Admin.WebApi.Extensions;
using ZR.Infrastructure.Cache;
-using ZR.Infrastructure.Resolver;
using ZR.Infrastructure.WebExtensions;
-using ZR.ServiceCore.Model;
using ZR.ServiceCore.Services.IService;
using ZR.ServiceCore.Signalr;
using ZR.ServiceCore.SqlSugar;
@@ -203,7 +197,7 @@ using (var serviceScope = app.Services.CreateScope())
{
Name = "gree"
});
- Console.WriteLine(helloReply);
+ // Console.WriteLine(helloReply);
}
app.Run();
\ No newline at end of file
diff --git a/ZR.ServiceCore/Model/Dto/SysModelDto.cs b/ZR.ServiceCore/Model/Dto/SysModelDto.cs
new file mode 100644
index 0000000..6ee752b
--- /dev/null
+++ b/ZR.ServiceCore/Model/Dto/SysModelDto.cs
@@ -0,0 +1,6 @@
+namespace ZR.ServiceCore.Model.Dto;
+
+public class SysModelDto
+{
+ public string FullName { get; set; }
+}
\ No newline at end of file
diff --git a/ZR.ServiceCore/Services/IService/ISysFieldService.cs b/ZR.ServiceCore/Services/IService/ISysFieldService.cs
index 1fb1d61..944f798 100644
--- a/ZR.ServiceCore/Services/IService/ISysFieldService.cs
+++ b/ZR.ServiceCore/Services/IService/ISysFieldService.cs
@@ -1,4 +1,5 @@
-using ZR.Service;
+using ZR.Model;
+using ZR.Service;
using ZR.ServiceCore.Model;
using ZR.ServiceCore.Model.Dto;
@@ -6,6 +7,7 @@ namespace ZR.ServiceCore.Services.IService;
public interface ISysFieldService : IBaseService
{
+ Task> GetModelList(PagerInfo pagerInfo);
Task> GetFields(string fullName, long roleId);
Task InitFields();
}
\ No newline at end of file
diff --git a/ZR.ServiceCore/Services/SysFieldService.cs b/ZR.ServiceCore/Services/SysFieldService.cs
index 01a4864..2d37df2 100644
--- a/ZR.ServiceCore/Services/SysFieldService.cs
+++ b/ZR.ServiceCore/Services/SysFieldService.cs
@@ -1,4 +1,7 @@
-using Infrastructure.Attribute;
+using Infrastructure;
+using Infrastructure.Attribute;
+using ZR.Infrastructure.Cache;
+using ZR.Model;
using ZR.Service;
using ZR.ServiceCore.Model;
using ZR.ServiceCore.Model.Dto;
@@ -15,6 +18,20 @@ public class SysFieldService : BaseService, ISysFieldService
_sysRoleFieldService = sysRoleFieldService;
}
+ public async Task> GetModelList(PagerInfo pagerInfo)
+ {
+ if (!await RedisServer.Cache.ExistsAsync("ModelList")) throw new CustomException("请先初始化,再配置");
+ var list = (await RedisServer.Cache.GetAsync>("ModelList")).ToList();
+ var skipCount = (pagerInfo.PageNum - 1) * pagerInfo.PageSize;
+ return new PagedInfo
+ {
+ PageSize = pagerInfo.PageSize,
+ PageIndex = pagerInfo.PageNum,
+ Result = list.Skip(skipCount).Take(pagerInfo.PageSize).ToList(),
+ TotalNum = list.Count
+ };
+ }
+
public async Task> GetFields(string fullName, long roleId)
{
var fields = await Queryable()
@@ -43,9 +60,9 @@ public class SysFieldService : BaseService, ISysFieldService
{
var serviceCoreModels = AppDomain.CurrentDomain
.GetAssemblies()
- .First(it => it.FullName.Contains("ZR.ServiceCore"))
+ .First(it => it.FullName != null && it.FullName.Contains("ZR.ServiceCore"))
.ExportedTypes
- .Where(p => p.FullName.StartsWith("ZR.ServiceCore.Model"))
+ .Where(p => p.FullName != null && p.FullName.StartsWith("ZR.ServiceCore.Model"))
.Select(it => new
{
it.FullName,
@@ -53,13 +70,16 @@ public class SysFieldService : BaseService, ISysFieldService
{
FieldName = pt.Name,
FieldType = pt.PropertyType.FullName,
- IsClass = pt.PropertyType.IsClass,
- IsArray = pt.PropertyType.IsArray,
+ // IsClass = pt.PropertyType.IsClass,
+ // IsArray = pt.PropertyType.IsArray,
// IsList = pt.PropertyType.IsClass ? pt.DeclaringType.FullName : string.Empty
}).ToList()
// Properties = it.GetProperties()
})
.ToList();
+ var modelList = serviceCoreModels.Select(it => new SysModelDto{ FullName = it.FullName }).ToList();
+ if (!await RedisServer.Cache.SetAsync("ModelList", modelList))
+ throw new CustomException("插入缓存失败,请联系管理员");
foreach (var serviceCoreModel in serviceCoreModels)
{
diff --git a/document/mysql/dump-zradmin-202310161631.sql b/document/mysql/dump-zradmin-202310161631.sql
new file mode 100644
index 0000000..70f39f2
--- /dev/null
+++ b/document/mysql/dump-zradmin-202310161631.sql
@@ -0,0 +1,1124 @@
+-- MySQL dump 10.13 Distrib 5.7.43, for Win64 (x86_64)
+--
+-- Host: 8.140.174.251 Database: zradmin
+-- ------------------------------------------------------
+-- Server version 8.0.31
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8 */;
+/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
+/*!40103 SET TIME_ZONE='+00:00' */;
+/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
+/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
+
+--
+-- Table structure for table `article`
+--
+
+DROP TABLE IF EXISTS `article`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `article` (
+ `cid` int NOT NULL AUTO_INCREMENT,
+ `title` varchar(254) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '文章标题',
+ `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '文章内容',
+ `userId` bigint DEFAULT NULL COMMENT '用户id',
+ `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '文章状态1、已发布 2、草稿',
+ `fmt_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '编辑器类型markdown,html',
+ `tags` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '文章标签',
+ `hits` int DEFAULT NULL COMMENT '点击量',
+ `category_id` int DEFAULT NULL COMMENT '目录id',
+ `createTime` datetime(6) DEFAULT NULL COMMENT '创建时间',
+ `updateTime` datetime(6) DEFAULT NULL COMMENT '修改时间',
+ `authorName` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '作者名',
+ `coverUrl` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '封面',
+ `isPublic` int DEFAULT '0' COMMENT '是否公开',
+ PRIMARY KEY (`cid`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `article`
+--
+
+LOCK TABLES `article` WRITE;
+/*!40000 ALTER TABLE `article` DISABLE KEYS */;
+INSERT INTO `article` VALUES (28,'23232','2大萨达',1,'1','markdown','223',0,1,'2023-09-27 15:59:21.269277',NULL,'admin',NULL,1);
+/*!40000 ALTER TABLE `article` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `articlecategory`
+--
+
+DROP TABLE IF EXISTS `articlecategory`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `articlecategory` (
+ `category_id` int NOT NULL AUTO_INCREMENT COMMENT '目录id',
+ `name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '目录名',
+ `create_time` datetime(6) DEFAULT NULL COMMENT '创建时间',
+ `parentId` int unsigned DEFAULT '0' COMMENT '父级ID',
+ PRIMARY KEY (`category_id`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `articlecategory`
+--
+
+LOCK TABLES `articlecategory` WRITE;
+/*!40000 ALTER TABLE `articlecategory` DISABLE KEYS */;
+INSERT INTO `articlecategory` VALUES (1,'C#','2021-08-13 00:00:00.000000',0),(2,'java','2021-08-18 00:00:00.000000',0),(3,'前端','2021-08-18 00:00:00.000000',0),(4,'数据库','2021-08-18 00:00:00.000000',0),(5,'其他','2021-08-19 00:00:00.000000',0),(6,'羽毛球','2021-08-19 00:00:00.000000',5),(7,'vue','2021-08-19 00:00:00.000000',3),(8,'sqlserver','2021-08-19 00:00:00.000000',4);
+/*!40000 ALTER TABLE `articlecategory` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `gen_demo`
+--
+
+DROP TABLE IF EXISTS `gen_demo`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `gen_demo` (
+ `id` int NOT NULL AUTO_INCREMENT COMMENT '自增id',
+ `name` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '名称',
+ `icon` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '图片',
+ `showStatus` int NOT NULL COMMENT '显示状态',
+ `addTime` datetime DEFAULT NULL COMMENT '添加时间',
+ `sex` int DEFAULT NULL COMMENT '用户性别',
+ `sort` int DEFAULT '0' COMMENT '排序',
+ `remark` varchar(200) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
+ `beginTime` datetime DEFAULT NULL COMMENT '开始时间',
+ `endTime` datetime DEFAULT NULL COMMENT '结束时间',
+ `feature` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '特征',
+ PRIMARY KEY (`id`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `gen_demo`
+--
+
+LOCK TABLES `gen_demo` WRITE;
+/*!40000 ALTER TABLE `gen_demo` DISABLE KEYS */;
+/*!40000 ALTER TABLE `gen_demo` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `gen_table`
+--
+
+DROP TABLE IF EXISTS `gen_table`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `gen_table` (
+ `tableId` bigint NOT NULL AUTO_INCREMENT COMMENT '编号',
+ `tableName` varchar(200) DEFAULT '' COMMENT '表名称',
+ `tableComment` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '表描述',
+ `subTableName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '关联子表的表名',
+ `subTableFkName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '子表关联的外键名',
+ `className` varchar(100) DEFAULT '' COMMENT '实体类名称',
+ `tplCategory` varchar(200) DEFAULT 'crud' COMMENT '使用的模板(crud单表操作 tree树表操作)',
+ `baseNameSpace` varchar(100) DEFAULT NULL COMMENT '生成命名空间前缀',
+ `moduleName` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生成模块名',
+ `businessName` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生成业务名',
+ `functionName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '生成功能名',
+ `functionAuthor` varchar(50) DEFAULT NULL COMMENT '生成功能作者',
+ `genType` char(1) DEFAULT '0' COMMENT '生成代码方式(0zip压缩包 1自定义路径)',
+ `genPath` varchar(200) DEFAULT '/' COMMENT '生成路径(不填默认项目路径)',
+ `OPTIONS` varchar(1000) DEFAULT NULL COMMENT '其它生成选项',
+ `create_by` bigint DEFAULT NULL COMMENT '创建者',
+ `create_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '创建者名称',
+ `create_time` datetime DEFAULT NULL COMMENT '创建时间',
+ `update_by` bigint DEFAULT NULL COMMENT '更新者',
+ `update_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '更新者名称',
+ `update_time` datetime DEFAULT NULL COMMENT '更新时间',
+ `remark` varchar(500) DEFAULT NULL COMMENT '备注',
+ `dbName` varchar(100) DEFAULT NULL COMMENT '数据库名',
+ PRIMARY KEY (`tableId`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='代码生成业务表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `gen_table`
+--
+
+LOCK TABLES `gen_table` WRITE;
+/*!40000 ALTER TABLE `gen_table` DISABLE KEYS */;
+/*!40000 ALTER TABLE `gen_table` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `gen_table_column`
+--
+
+DROP TABLE IF EXISTS `gen_table_column`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `gen_table_column` (
+ `columnId` bigint NOT NULL AUTO_INCREMENT COMMENT '编号',
+ `tableName` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '表名',
+ `tableId` bigint DEFAULT NULL COMMENT '归属表编号',
+ `columnName` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '列名称',
+ `columnComment` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '列描述',
+ `columnType` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '列类型',
+ `csharpType` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'C#类型',
+ `csharpField` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'C#字段名',
+ `isPk` tinyint(1) DEFAULT NULL COMMENT '是否主键(1是)',
+ `isIncrement` tinyint(1) DEFAULT NULL COMMENT '是否自增(1是)',
+ `isRequired` tinyint(1) DEFAULT NULL COMMENT '是否必填(1是)',
+ `isInsert` tinyint(1) DEFAULT NULL COMMENT '是否为插入字段(1是)',
+ `isEdit` tinyint(1) DEFAULT NULL COMMENT '是否编辑字段(1是)',
+ `isList` tinyint(1) DEFAULT NULL COMMENT '是否列表字段(1是)',
+ `isQuery` tinyint DEFAULT NULL COMMENT '是否查询字段(1是)',
+ `isSort` tinyint DEFAULT NULL COMMENT '是否排序字段(1是)',
+ `isExport` tinyint DEFAULT NULL COMMENT '是否导出字段(1是)',
+ `queryType` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'EQ' COMMENT '查询方式(等于、不等于、大于、小于、范围)',
+ `htmlType` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)',
+ `dictType` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典类型',
+ `sort` int DEFAULT NULL COMMENT '排序',
+ `create_by` bigint DEFAULT NULL COMMENT '创建者',
+ `create_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '创建者名称',
+ `create_time` datetime DEFAULT NULL COMMENT '创建时间',
+ `update_by` bigint DEFAULT NULL COMMENT '更新者',
+ `update_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '更新者名称',
+ `update_time` datetime DEFAULT NULL COMMENT '更新时间',
+ `remark` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
+ `autoFillType` int DEFAULT NULL COMMENT '自动填充类型',
+ PRIMARY KEY (`columnId`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='代码生成业务表字段';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `gen_table_column`
+--
+
+LOCK TABLES `gen_table_column` WRITE;
+/*!40000 ALTER TABLE `gen_table_column` DISABLE KEYS */;
+/*!40000 ALTER TABLE `gen_table_column` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `ip_rate_limit_log`
+--
+
+DROP TABLE IF EXISTS `ip_rate_limit_log`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `ip_rate_limit_log` (
+ `id` bigint NOT NULL COMMENT 'id',
+ `httpverb` varchar(100) CHARACTER SET utf8mb3 DEFAULT NULL COMMENT '请求方式',
+ `path` varchar(300) CHARACTER SET utf8mb3 DEFAULT NULL COMMENT '路径',
+ `clientip` varchar(200) CHARACTER SET utf8mb3 DEFAULT NULL COMMENT '客户端IP',
+ `limit` double(10,0) DEFAULT NULL COMMENT '限制',
+ `period` varchar(100) CHARACTER SET utf8mb3 DEFAULT NULL COMMENT '期间',
+ `exceeded` double(10,0) DEFAULT NULL COMMENT '超出次数',
+ `endpoint` varchar(100) CHARACTER SET utf8mb3 DEFAULT NULL COMMENT '终结点',
+ `createtime` datetime DEFAULT NULL COMMENT '时间',
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='IP速率限制日志';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `ip_rate_limit_log`
+--
+
+LOCK TABLES `ip_rate_limit_log` WRITE;
+/*!40000 ALTER TABLE `ip_rate_limit_log` DISABLE KEYS */;
+INSERT INTO `ip_rate_limit_log` VALUES (1699687636198887424,'get','/ip/route/limit/getipratelimitpolicypage','127.0.0.1',5,'3s',1,'*','2023-09-07 15:34:46'),(1699687636756729856,'get','/ip/route/limit/getipratelimitpolicypage','127.0.0.1',5,'3s',2,'*','2023-09-07 15:34:46'),(1699687637348126720,'get','/ip/route/limit/getipratelimitpolicypage','127.0.0.1',5,'3s',3,'*','2023-09-07 15:34:46'),(1699688200936755200,'get','/ip/route/limit/getipratelimitpolicypage','127.0.0.1',5,'3s',1,'*','2023-09-07 15:37:00'),(1699688201628815360,'get','/ip/route/limit/getipratelimitpolicypage','127.0.0.1',5,'3s',2,'*','2023-09-07 15:37:01'),(1699688202316681216,'get','/ip/route/limit/getipratelimitpolicypage','127.0.0.1',5,'3s',3,'*','2023-09-07 15:37:01'),(1699688202920660992,'get','/ip/route/limit/getipratelimitpolicypage','127.0.0.1',5,'3s',4,'*','2023-09-07 15:37:01'),(1699688203591749632,'get','/ip/route/limit/getipratelimitpolicypage','127.0.0.1',5,'3s',5,'*','2023-09-07 15:37:01'),(1699688204216700928,'get','/ip/route/limit/getipratelimitpolicypage','127.0.0.1',5,'3s',6,'*','2023-09-07 15:37:01'),(1699688204883595264,'get','/ip/route/limit/getipratelimitpolicypage','127.0.0.1',5,'3s',7,'*','2023-09-07 15:37:01'),(1699688205651152896,'get','/ip/route/limit/getipratelimitpolicypage','192.168.6.21',5,'3s',8,'*','2023-09-07 15:37:02'),(1699688206234161152,'get','/ip/route/limit/getipratelimitpolicypage','192.168.6.21',5,'3s',9,'*','2023-09-07 15:37:02'),(1699688206808780800,'get','/ip/route/limit/getipratelimitpolicypage','192.168.6.21',5,'3s',10,'*','2023-09-07 15:37:02'),(1699689587208753152,'get','/ip/route/limit/getipratelimitpolicypage','192.168.6.21',5,'3s',1,'*','2023-09-07 15:42:31'),(1699689587825315840,'get','/ip/route/limit/getipratelimitpolicypage','192.168.6.21',5,'3s',2,'*','2023-09-07 15:42:31'),(1699689588433489920,'get','/ip/route/limit/getipratelimitpolicypage','192.168.6.21',5,'3s',3,'*','2023-09-07 15:42:31');
+/*!40000 ALTER TABLE `ip_rate_limit_log` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `ip_rate_limit_policy`
+--
+
+DROP TABLE IF EXISTS `ip_rate_limit_policy`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `ip_rate_limit_policy` (
+ `id` bigint NOT NULL COMMENT 'id',
+ `ip` varchar(100) CHARACTER SET utf8mb3 DEFAULT NULL COMMENT 'ip',
+ `flag` varchar(1) CHARACTER SET utf8mb3 DEFAULT NULL COMMENT '启用标志(1代表启用,0代表停用)',
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='IP速率限制策略';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `ip_rate_limit_policy`
+--
+
+LOCK TABLES `ip_rate_limit_policy` WRITE;
+/*!40000 ALTER TABLE `ip_rate_limit_policy` DISABLE KEYS */;
+INSERT INTO `ip_rate_limit_policy` VALUES (1707297631916658688,'127.0.0.1','0'),(1707300981701742592,'192.168.6.21','1');
+/*!40000 ALTER TABLE `ip_rate_limit_policy` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `rate_limit_rule`
+--
+
+DROP TABLE IF EXISTS `rate_limit_rule`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `rate_limit_rule` (
+ `id` bigint NOT NULL COMMENT 'id',
+ `ipratelimitpolicyid` bigint DEFAULT NULL COMMENT 'IP速率限制策略ID',
+ `endpoint` varchar(100) CHARACTER SET utf8mb3 DEFAULT NULL COMMENT '终结点',
+ `period` varchar(100) CHARACTER SET utf8mb3 DEFAULT NULL COMMENT '期间',
+ `limit` double(10,0) DEFAULT NULL COMMENT '限制',
+ `flag` varchar(1) CHARACTER SET utf8mb3 DEFAULT NULL COMMENT '启用标志(1代表启用,0代表停用)',
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='速率限制规则';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `rate_limit_rule`
+--
+
+LOCK TABLES `rate_limit_rule` WRITE;
+/*!40000 ALTER TABLE `rate_limit_rule` DISABLE KEYS */;
+INSERT INTO `rate_limit_rule` VALUES (1707297632810045440,1707297631916658688,'*','1s',1,'0'),(1707300982762901504,1707300981701742592,'*','2s',12,'0');
+/*!40000 ALTER TABLE `rate_limit_rule` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sqldifflog`
+--
+
+DROP TABLE IF EXISTS `sqldifflog`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sqldifflog` (
+ `PId` bigint NOT NULL COMMENT '主键',
+ `TableName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '表名',
+ `BusinessData` varchar(4000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '业务数据内容',
+ `DiffType` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '差异类型insert,update,delete',
+ `Sql` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '执行sql语句',
+ `BeforeData` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '变更前数据',
+ `AfterData` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '变更后数据',
+ `UserName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '操作用户名',
+ `AddTime` datetime DEFAULT NULL,
+ `ConfigId` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '数据库配置id',
+ PRIMARY KEY (`PId`) USING BTREE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='数据差异日志';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sqldifflog`
+--
+
+LOCK TABLES `sqldifflog` WRITE;
+/*!40000 ALTER TABLE `sqldifflog` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sqldifflog` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_block`
+--
+
+DROP TABLE IF EXISTS `sys_block`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_block` (
+ `id` bigint NOT NULL,
+ `code` varchar(100) DEFAULT NULL,
+ `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_block`
+--
+
+LOCK TABLES `sys_block` WRITE;
+/*!40000 ALTER TABLE `sys_block` DISABLE KEYS */;
+INSERT INTO `sys_block` VALUES (1,'fieldDisplay',NULL);
+/*!40000 ALTER TABLE `sys_block` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_common_lang`
+--
+
+DROP TABLE IF EXISTS `sys_common_lang`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_common_lang` (
+ `id` bigint NOT NULL COMMENT 'id',
+ `lang_code` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '语言code eg:zh-cn',
+ `lang_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '翻译key值',
+ `lang_name` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '翻译内容',
+ `addtime` datetime DEFAULT NULL COMMENT '添加时间',
+ PRIMARY KEY (`id`) USING BTREE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_common_lang`
+--
+
+LOCK TABLES `sys_common_lang` WRITE;
+/*!40000 ALTER TABLE `sys_common_lang` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_common_lang` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_config`
+--
+
+DROP TABLE IF EXISTS `sys_config`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_config` (
+ `configId` int NOT NULL AUTO_INCREMENT COMMENT '参数主键',
+ `configName` varchar(100) DEFAULT '' COMMENT '参数名称',
+ `configKey` varchar(100) DEFAULT '' COMMENT '参数键名',
+ `configValue` varchar(500) DEFAULT '' COMMENT '参数键值',
+ `configType` varchar(1) DEFAULT 'N' COMMENT '系统内置(Y是 N否)',
+ `create_by` bigint DEFAULT NULL COMMENT '创建者',
+ `create_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '创建者名称',
+ `create_time` datetime DEFAULT NULL COMMENT '创建时间',
+ `update_by` bigint DEFAULT NULL COMMENT '更新者',
+ `update_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '更新者名称',
+ `update_time` datetime DEFAULT NULL COMMENT '更新时间',
+ `remark` varchar(500) DEFAULT NULL COMMENT '备注',
+ PRIMARY KEY (`configId`)
+) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='参数配置表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_config`
+--
+
+LOCK TABLES `sys_config` WRITE;
+/*!40000 ALTER TABLE `sys_config` DISABLE KEYS */;
+INSERT INTO `sys_config` VALUES (1,'主框架页-默认皮肤样式名称','sys.index.skinName','skin-blue','Y',NULL,'admin','2021-12-26 13:14:57',NULL,'',NULL,'蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow'),(2,'用户管理-账号初始密码','sys.user.initPassword','123456','Y',NULL,'admin','2021-12-26 13:14:57',NULL,'',NULL,'初始化密码 123456'),(3,'主框架页-侧边栏主题','sys.index.sideTheme','theme-dark','Y',NULL,'admin','2021-12-26 13:14:57',NULL,'',NULL,'深色主题theme-dark,浅色主题theme-light'),(4,'账号自助-验证码开关','sys.account.captchaOnOff','1','Y',NULL,'admin','2021-12-26 13:14:57',NULL,'admin','2022-03-30 12:43:48','是否开启验证码功能(off、关闭,1、动态验证码 2、动态gif泡泡 3、泡泡 4、静态验证码)'),(5,'本地文件上传访问域名','sys.file.uploadurl','http://localhost:8888','Y',NULL,'','2023-09-21 14:32:21',NULL,'',NULL,NULL),(6,'开启注册功能','sys.account.register','true','Y',NULL,'admin','2023-09-21 14:32:21',NULL,'admin',NULL,NULL),(7,'文章预览地址','sys.article.preview.url','http://www.izhaorui.cn/article/details/','Y',NULL,'admin','2023-09-21 14:32:21',NULL,'',NULL,'格式:http://www.izhaorui.cn/article/details/{aid},其中{aid}为文章的id');
+/*!40000 ALTER TABLE `sys_config` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_dept`
+--
+
+DROP TABLE IF EXISTS `sys_dept`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_dept` (
+ `deptId` bigint NOT NULL AUTO_INCREMENT COMMENT '部门id',
+ `parentId` bigint DEFAULT '0' COMMENT '父部门id',
+ `ancestors` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '祖级列表',
+ `deptName` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '部门名称',
+ `orderNum` int DEFAULT '0' COMMENT '显示顺序',
+ `leader` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '负责人',
+ `phone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '联系电话',
+ `email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '邮箱',
+ `status` int DEFAULT '0' COMMENT '部门状态(0正常 1停用)',
+ `delFlag` int DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
+ `create_by` bigint DEFAULT NULL COMMENT '创建者',
+ `create_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '创建者名称',
+ `create_time` datetime DEFAULT NULL COMMENT '创建时间',
+ `update_by` bigint DEFAULT NULL COMMENT '更新者',
+ `update_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '更新者名称',
+ `update_time` datetime DEFAULT NULL COMMENT '更新时间',
+ `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
+ PRIMARY KEY (`deptId`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=204 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='部门表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_dept`
+--
+
+LOCK TABLES `sys_dept` WRITE;
+/*!40000 ALTER TABLE `sys_dept` DISABLE KEYS */;
+INSERT INTO `sys_dept` VALUES (100,0,'0','A公司',0,'zr','','',0,0,NULL,'admin',NULL,NULL,'',NULL,NULL),(101,100,'0,100','研发部门',1,'zr','','',0,0,NULL,'admin',NULL,NULL,'',NULL,NULL),(102,100,'0,100','市场部门',2,'zr','','',0,0,NULL,'admin',NULL,NULL,'',NULL,NULL),(103,100,'0,100','测试部门',3,'zr','','',0,0,NULL,'admin',NULL,NULL,'',NULL,NULL),(104,100,'0,100','财务部门',4,'zr','','',0,0,NULL,'admin',NULL,NULL,'',NULL,NULL),(200,0,'0','B公司',0,'zr','','',0,0,NULL,'admin',NULL,NULL,'',NULL,NULL);
+/*!40000 ALTER TABLE `sys_dept` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_dict_data`
+--
+
+DROP TABLE IF EXISTS `sys_dict_data`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_dict_data` (
+ `dictCode` bigint NOT NULL AUTO_INCREMENT COMMENT '字典编码',
+ `dictSort` int DEFAULT '0' COMMENT '字典排序',
+ `dictLabel` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典标签',
+ `dictValue` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典键值',
+ `dictType` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典类型',
+ `cssClass` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '样式属性(其他样式扩展)',
+ `listClass` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '表格回显样式',
+ `isDefault` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'N' COMMENT '是否默认(Y是 N否)',
+ `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '状态(0正常 1停用)',
+ `create_by` bigint DEFAULT NULL COMMENT '创建者',
+ `create_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '创建者名称',
+ `create_time` datetime DEFAULT NULL COMMENT '创建时间',
+ `update_by` bigint DEFAULT NULL COMMENT '更新者',
+ `update_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '更新者名称',
+ `update_time` datetime DEFAULT NULL COMMENT '更新时间',
+ `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
+ `langKey` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '翻译key',
+ PRIMARY KEY (`dictCode`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='字典数据表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_dict_data`
+--
+
+LOCK TABLES `sys_dict_data` WRITE;
+/*!40000 ALTER TABLE `sys_dict_data` DISABLE KEYS */;
+INSERT INTO `sys_dict_data` VALUES (1,1,'男','0','sys_user_sex','','','Y','0',NULL,'admin','2021-02-24 10:56:21',NULL,'',NULL,'性别男',''),(2,2,'女','1','sys_user_sex','','','N','0',NULL,'admin','2021-02-24 10:56:21',NULL,'',NULL,'性别女',''),(3,3,'未知','2','sys_user_sex','','','N','0',NULL,'admin','2021-02-24 10:56:21',NULL,'',NULL,'性别未知',''),(4,1,'显示','0','sys_show_hide','','primary','Y','0',NULL,'admin','2021-02-24 10:56:21',NULL,'',NULL,'显示菜单',''),(5,2,'隐藏','1','sys_show_hide','','danger','N','0',NULL,'admin','2021-02-24 10:56:21',NULL,'',NULL,'隐藏菜单',''),(6,1,'正常','0','sys_normal_disable','','primary','Y','0',NULL,'admin','2021-02-24 10:56:21',NULL,'',NULL,'正常状态',''),(7,2,'停用','1','sys_normal_disable','','danger','N','0',NULL,'admin','2021-02-24 10:56:21',NULL,'',NULL,'停用状态',''),(8,1,'正常','0','sys_job_status','','primary','Y','0',NULL,'admin','2021-02-24 10:56:21',NULL,'',NULL,'正常状态',''),(9,2,'异常','1','sys_job_status','','danger','N','0',NULL,'admin','2021-02-24 10:56:21',NULL,'','2021-07-02 14:09:09','停用状态',''),(10,1,'默认','DEFAULT','sys_job_group','','','Y','0',NULL,'admin','2021-02-24 10:56:21',NULL,'',NULL,'默认分组',''),(11,2,'系统','SYSTEM','sys_job_group','','','N','0',NULL,'admin','2021-02-24 10:56:21',NULL,'',NULL,'系统分组',''),(12,1,'是','Y','sys_yes_no','','primary','Y','0',NULL,'admin','2021-02-24 10:56:21',NULL,'',NULL,'系统默认是',''),(13,2,'否','N','sys_yes_no','','danger','N','0',NULL,'admin','2021-02-24 10:56:21',NULL,'',NULL,'系统默认否',''),(14,1,'通知','1','sys_notice_type','','warning','Y','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'通知',''),(15,2,'公告','2','sys_notice_type','','success','N','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'公告',''),(16,1,'正常','0','sys_notice_status','','primary','Y','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'正常状态',''),(17,2,'关闭','1','sys_notice_status','','danger','N','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'关闭状态',''),(18,0,'其他','0','sys_oper_type','','info','N','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'其他操作',''),(19,1,'新增','1','sys_oper_type','','info','N','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'新增操作',''),(20,2,'修改','2','sys_oper_type','','info','N','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'修改操作',''),(21,3,'删除','3','sys_oper_type','','danger','N','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'删除操作',''),(22,4,'授权','4','sys_oper_type','','primary','N','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'授权操作',''),(23,5,'导出','5','sys_oper_type','','warning','N','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'导出操作',''),(24,6,'导入','6','sys_oper_type','','warning','N','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'导入操作',''),(25,7,'强退','7','sys_oper_type','','danger','N','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'强退操作',''),(26,8,'生成代码','8','sys_oper_type','','warning','N','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'生成操作',''),(27,9,'清空数据','9','sys_oper_type','','danger','N','0',NULL,'admin','2021-02-24 10:56:22',NULL,'',NULL,'清空操作',''),(28,1,'成功','0','sys_common_status','','primary','N','0',NULL,'admin','2021-02-24 10:56:23',NULL,'',NULL,'正常状态',''),(29,2,'失败','1','sys_common_status','','danger','N','0',NULL,'admin','2021-02-24 10:56:23',NULL,'',NULL,'停用状态',''),(30,1,'发布','1','sys_article_status',NULL,NULL,NULL,'0',NULL,'admin','2021-08-19 10:34:56',NULL,'',NULL,NULL,''),(31,2,'草稿','2','sys_article_status',NULL,NULL,NULL,'0',NULL,'admin','2021-08-19 10:35:06',NULL,'',NULL,NULL,''),(32,1,'中文','zh-cn','sys_lang_type',NULL,NULL,NULL,'0',NULL,'admin','2021-08-19 10:35:06',NULL,'',NULL,NULL,''),(33,2,'英文','en','sys_lang_type',NULL,NULL,NULL,'0',NULL,'admin','2021-08-19 10:35:06',NULL,'',NULL,NULL,''),(34,3,'繁体','zh-tw','sys_lang_type',NULL,NULL,NULL,'0',NULL,'admin','2021-08-19 10:35:06',NULL,'',NULL,NULL,'');
+/*!40000 ALTER TABLE `sys_dict_data` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_dict_type`
+--
+
+DROP TABLE IF EXISTS `sys_dict_type`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_dict_type` (
+ `dictId` bigint NOT NULL AUTO_INCREMENT COMMENT '字典主键',
+ `dictName` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典名称',
+ `dictType` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '字典类型',
+ `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '状态(0正常 1停用)',
+ `type` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT 'N' COMMENT '系统内置(Y是 N否)',
+ `create_by` bigint DEFAULT NULL COMMENT '创建者',
+ `create_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '创建者名称',
+ `create_time` datetime DEFAULT NULL COMMENT '创建时间',
+ `update_by` bigint DEFAULT NULL COMMENT '更新者',
+ `update_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '更新者名称',
+ `update_time` datetime DEFAULT NULL COMMENT '更新时间',
+ `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
+ `customSql` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '自定义sql语句',
+ PRIMARY KEY (`dictId`) USING BTREE,
+ UNIQUE KEY `dictType` (`dictType`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='字典类型表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_dict_type`
+--
+
+LOCK TABLES `sys_dict_type` WRITE;
+/*!40000 ALTER TABLE `sys_dict_type` DISABLE KEYS */;
+INSERT INTO `sys_dict_type` VALUES (1,'用户性别','sys_user_sex','0','Y',NULL,'admin','2023-09-21 14:32:16',NULL,'',NULL,'用户性别列表',NULL),(2,'菜单状态','sys_show_hide','0','Y',NULL,'admin','2023-09-21 14:32:16',NULL,'',NULL,'菜单状态列表',NULL),(3,'系统开关','sys_normal_disable','0','Y',NULL,'admin','2023-09-21 14:32:16',NULL,'',NULL,'系统开关列表',NULL),(4,'任务状态','sys_job_status','0','Y',NULL,'admin','2023-09-21 14:32:16',NULL,'',NULL,'任务状态列表',NULL),(5,'任务分组','sys_job_group','0','Y',NULL,'admin','2023-09-21 14:32:16',NULL,'',NULL,'任务分组列表',NULL),(6,'系统是否','sys_yes_no','0','Y',NULL,'admin','2023-09-21 14:32:16',NULL,'',NULL,'系统是否列表',NULL),(7,'通知类型','sys_notice_type','0','Y',NULL,'admin','2023-09-21 14:32:16',NULL,'',NULL,'通知类型列表',NULL),(8,'通知状态','sys_notice_status','0','Y',NULL,'admin','2023-09-21 14:32:16',NULL,'',NULL,'通知状态列表',NULL),(9,'操作类型','sys_oper_type','0','Y',NULL,'admin','2023-09-21 14:32:16',NULL,'',NULL,'操作类型列表',NULL),(10,'系统状态','sys_common_status','0','Y',NULL,'admin','2023-09-21 14:32:16',NULL,'',NULL,'登录状态列表',NULL),(11,'文章状态','sys_article_status','0','Y',NULL,'admin','2023-09-21 14:32:16',NULL,'',NULL,NULL,NULL),(12,'多语言类型','sys_lang_type','0','Y',NULL,'admin','2023-09-21 14:32:16',NULL,'',NULL,'多语言字典类型',NULL);
+/*!40000 ALTER TABLE `sys_dict_type` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_field`
+--
+
+DROP TABLE IF EXISTS `sys_field`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_field` (
+ `id` bigint NOT NULL,
+ `fieldname` varchar(100) DEFAULT NULL,
+ `fullname` varchar(300) DEFAULT NULL,
+ `fieldtype` varchar(300) DEFAULT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='系统字段';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_field`
+--
+
+LOCK TABLES `sys_field` WRITE;
+/*!40000 ALTER TABLE `sys_field` DISABLE KEYS */;
+INSERT INTO `sys_field` VALUES (1706931137387040768,'Cid','ZR.ServiceCore.Model.Article','System.Int32'),(1706931137391235072,'Title','ZR.ServiceCore.Model.Article','System.String'),(1706931137395429376,'CreateTime','ZR.ServiceCore.Model.Article','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931137395429377,'UpdateTime','ZR.ServiceCore.Model.Article','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931137395429378,'Content','ZR.ServiceCore.Model.Article','System.String'),(1706931137395429379,'AuthorName','ZR.ServiceCore.Model.Article','System.String'),(1706931137395429380,'UserId','ZR.ServiceCore.Model.Article','System.Int64'),(1706931137395429381,'Status','ZR.ServiceCore.Model.Article','System.String'),(1706931137395429382,'FmtType','ZR.ServiceCore.Model.Article','System.String'),(1706931137395429383,'Tags','ZR.ServiceCore.Model.Article','System.String'),(1706931137395429384,'Hits','ZR.ServiceCore.Model.Article','System.Int32'),(1706931137395429385,'CategoryId','ZR.ServiceCore.Model.Article','System.Int32'),(1706931137395429386,'CoverUrl','ZR.ServiceCore.Model.Article','System.String'),(1706931137395429387,'IsPublic','ZR.ServiceCore.Model.Article','System.Int32'),(1706931137395429388,'ArticleCategoryNav','ZR.ServiceCore.Model.Article','ZR.ServiceCore.Model.ArticleCategory'),(1706931138280427520,'CategoryId','ZR.ServiceCore.Model.ArticleCategory','System.Int32'),(1706931138280427521,'Name','ZR.ServiceCore.Model.ArticleCategory','System.String'),(1706931138280427522,'ParentId','ZR.ServiceCore.Model.ArticleCategory','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931138280427523,'CreateTime','ZR.ServiceCore.Model.ArticleCategory','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931138280427524,'Children','ZR.ServiceCore.Model.ArticleCategory','System.Collections.Generic.List`1[[ZR.ServiceCore.Model.ArticleCategory, ZR.ServiceCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'),(1706931139006042112,'Id','ZR.ServiceCore.Model.CommonLang','System.Int64'),(1706931139006042113,'LangCode','ZR.ServiceCore.Model.CommonLang','System.String'),(1706931139006042114,'LangKey','ZR.ServiceCore.Model.CommonLang','System.String'),(1706931139006042115,'LangName','ZR.ServiceCore.Model.CommonLang','System.String'),(1706931139006042116,'Addtime','ZR.ServiceCore.Model.CommonLang','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931139698102272,'Id','ZR.ServiceCore.Model.IpRateLimitLog','System.Int64'),(1706931139698102273,'HttpVerb','ZR.ServiceCore.Model.IpRateLimitLog','System.String'),(1706931139698102274,'Path','ZR.ServiceCore.Model.IpRateLimitLog','System.String'),(1706931139698102275,'ClientIp','ZR.ServiceCore.Model.IpRateLimitLog','System.String'),(1706931139698102276,'Limit','ZR.ServiceCore.Model.IpRateLimitLog','System.Double'),(1706931139698102277,'Period','ZR.ServiceCore.Model.IpRateLimitLog','System.String'),(1706931139698102278,'Exceeded','ZR.ServiceCore.Model.IpRateLimitLog','System.Double'),(1706931139698102279,'Endpoint','ZR.ServiceCore.Model.IpRateLimitLog','System.String'),(1706931139698102280,'CreateTime','ZR.ServiceCore.Model.IpRateLimitLog','System.DateTime'),(1706931140427911168,'Id','ZR.ServiceCore.Model.IpRateLimitPolicy','System.Int64'),(1706931140427911169,'Ip','ZR.ServiceCore.Model.IpRateLimitPolicy','System.String'),(1706931140427911170,'Rules','ZR.ServiceCore.Model.IpRateLimitPolicy','System.Collections.Generic.List`1[[ZR.ServiceCore.Model.RateLimitRule, ZR.ServiceCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'),(1706931140427911171,'Flag','ZR.ServiceCore.Model.IpRateLimitPolicy','System.Char'),(1706931141136748544,'Id','ZR.ServiceCore.Model.RateLimitRule','System.Int64'),(1706931141136748545,'IpRateLimitPolicyId','ZR.ServiceCore.Model.RateLimitRule','System.Int64'),(1706931141136748546,'Endpoint','ZR.ServiceCore.Model.RateLimitRule','System.String'),(1706931141136748547,'Period','ZR.ServiceCore.Model.RateLimitRule','System.String'),(1706931141136748548,'Limit','ZR.ServiceCore.Model.RateLimitRule','System.Double'),(1706931141136748549,'Flag','ZR.ServiceCore.Model.RateLimitRule','System.Char'),(1706931141799448576,'PId','ZR.ServiceCore.Model.SqlDiffLog','System.Int64'),(1706931141799448577,'TableName','ZR.ServiceCore.Model.SqlDiffLog','System.String'),(1706931141799448579,'DiffType','ZR.ServiceCore.Model.SqlDiffLog','System.String'),(1706931141799448580,'Sql','ZR.ServiceCore.Model.SqlDiffLog','System.String'),(1706931141799448581,'BeforeData','ZR.ServiceCore.Model.SqlDiffLog','System.String'),(1706931141799448582,'AfterData','ZR.ServiceCore.Model.SqlDiffLog','System.String'),(1706931141799448583,'UserName','ZR.ServiceCore.Model.SqlDiffLog','System.String'),(1706931141799448584,'AddTime','ZR.ServiceCore.Model.SqlDiffLog','System.DateTime'),(1706931141799448585,'ConfigId','ZR.ServiceCore.Model.SqlDiffLog','System.String'),(1706931142680252416,'Create_by','ZR.ServiceCore.Model.SysBase','System.Int64'),(1706931142680252417,'Create_name','ZR.ServiceCore.Model.SysBase','System.String'),(1706931142680252418,'Create_time','ZR.ServiceCore.Model.SysBase','System.DateTime'),(1706931142680252419,'Update_by','ZR.ServiceCore.Model.SysBase','System.Int64'),(1706931142680252420,'Update_name','ZR.ServiceCore.Model.SysBase','System.String'),(1706931142680252421,'Update_time','ZR.ServiceCore.Model.SysBase','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931142680252422,'Remark','ZR.ServiceCore.Model.SysBase','System.String'),(1706931143384895488,'ConfigId','ZR.ServiceCore.Model.SysConfig','System.Int32'),(1706931143384895489,'ConfigName','ZR.ServiceCore.Model.SysConfig','System.String'),(1706931143384895490,'ConfigKey','ZR.ServiceCore.Model.SysConfig','System.String'),(1706931143384895491,'ConfigValue','ZR.ServiceCore.Model.SysConfig','System.String'),(1706931143384895492,'ConfigType','ZR.ServiceCore.Model.SysConfig','System.String'),(1706931143384895493,'Create_by','ZR.ServiceCore.Model.SysConfig','System.Int64'),(1706931143384895494,'Create_name','ZR.ServiceCore.Model.SysConfig','System.String'),(1706931143384895495,'Create_time','ZR.ServiceCore.Model.SysConfig','System.DateTime'),(1706931143384895496,'Update_by','ZR.ServiceCore.Model.SysConfig','System.Int64'),(1706931143384895497,'Update_name','ZR.ServiceCore.Model.SysConfig','System.String'),(1706931143384895498,'Update_time','ZR.ServiceCore.Model.SysConfig','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931143384895499,'Remark','ZR.ServiceCore.Model.SysConfig','System.String'),(1706931144206979072,'DeptId','ZR.ServiceCore.Model.SysDept','System.Int64'),(1706931144206979073,'ParentId','ZR.ServiceCore.Model.SysDept','System.Int64'),(1706931144206979074,'Ancestors','ZR.ServiceCore.Model.SysDept','System.String'),(1706931144206979075,'DeptName','ZR.ServiceCore.Model.SysDept','System.String'),(1706931144206979076,'OrderNum','ZR.ServiceCore.Model.SysDept','System.Int32'),(1706931144206979077,'Leader','ZR.ServiceCore.Model.SysDept','System.String'),(1706931144206979078,'Phone','ZR.ServiceCore.Model.SysDept','System.String'),(1706931144206979079,'Email','ZR.ServiceCore.Model.SysDept','System.String'),(1706931144206979080,'Status','ZR.ServiceCore.Model.SysDept','System.Int32'),(1706931144206979081,'DelFlag','ZR.ServiceCore.Model.SysDept','System.Int32'),(1706931144206979082,'Create_by','ZR.ServiceCore.Model.SysDept','System.Int64'),(1706931144206979083,'Create_name','ZR.ServiceCore.Model.SysDept','System.String'),(1706931144206979084,'Create_time','ZR.ServiceCore.Model.SysDept','System.DateTime'),(1706931144206979085,'Update_by','ZR.ServiceCore.Model.SysDept','System.Int64'),(1706931144206979086,'Update_name','ZR.ServiceCore.Model.SysDept','System.String'),(1706931144206979087,'Update_time','ZR.ServiceCore.Model.SysDept','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931144206979088,'Remark','ZR.ServiceCore.Model.SysDept','System.String'),(1706931144991313920,'DictCode','ZR.ServiceCore.Model.SysDictData','System.Int64'),(1706931144991313921,'DictSort','ZR.ServiceCore.Model.SysDictData','System.Int32'),(1706931144991313922,'DictLabel','ZR.ServiceCore.Model.SysDictData','System.String'),(1706931144991313923,'DictValue','ZR.ServiceCore.Model.SysDictData','System.String'),(1706931144991313924,'DictType','ZR.ServiceCore.Model.SysDictData','System.String'),(1706931144991313925,'CssClass','ZR.ServiceCore.Model.SysDictData','System.String'),(1706931144991313926,'ListClass','ZR.ServiceCore.Model.SysDictData','System.String'),(1706931144991313927,'IsDefault','ZR.ServiceCore.Model.SysDictData','System.String'),(1706931144991313928,'Status','ZR.ServiceCore.Model.SysDictData','System.String'),(1706931144991313929,'LangKey','ZR.ServiceCore.Model.SysDictData','System.String'),(1706931144991313930,'Create_by','ZR.ServiceCore.Model.SysDictData','System.Int64'),(1706931144991313931,'Create_name','ZR.ServiceCore.Model.SysDictData','System.String'),(1706931144991313932,'Create_time','ZR.ServiceCore.Model.SysDictData','System.DateTime'),(1706931144991313933,'Update_by','ZR.ServiceCore.Model.SysDictData','System.Int64'),(1706931144991313934,'Update_name','ZR.ServiceCore.Model.SysDictData','System.String'),(1706931144991313935,'Update_time','ZR.ServiceCore.Model.SysDictData','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931144991313936,'Remark','ZR.ServiceCore.Model.SysDictData','System.String'),(1706931145792425984,'DictId','ZR.ServiceCore.Model.SysDictType','System.Int64'),(1706931145792425985,'DictName','ZR.ServiceCore.Model.SysDictType','System.String'),(1706931145792425986,'DictType','ZR.ServiceCore.Model.SysDictType','System.String'),(1706931145792425987,'Status','ZR.ServiceCore.Model.SysDictType','System.String'),(1706931145792425988,'Type','ZR.ServiceCore.Model.SysDictType','System.String'),(1706931145792425990,'Create_by','ZR.ServiceCore.Model.SysDictType','System.Int64'),(1706931145792425991,'Create_name','ZR.ServiceCore.Model.SysDictType','System.String'),(1706931145792425992,'Create_time','ZR.ServiceCore.Model.SysDictType','System.DateTime'),(1706931145792425993,'Update_by','ZR.ServiceCore.Model.SysDictType','System.Int64'),(1706931145792425994,'Update_name','ZR.ServiceCore.Model.SysDictType','System.String'),(1706931145792425995,'Update_time','ZR.ServiceCore.Model.SysDictType','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931145792425996,'Remark','ZR.ServiceCore.Model.SysDictType','System.String'),(1706931146459320320,'Id','ZR.ServiceCore.Model.SysField','System.Int64'),(1706931146459320321,'FieldName','ZR.ServiceCore.Model.SysField','System.String'),(1706931146459320322,'FullName','ZR.ServiceCore.Model.SysField','System.String'),(1706931146459320323,'FieldType','ZR.ServiceCore.Model.SysField','System.String'),(1706931147151380480,'Id','ZR.ServiceCore.Model.SysFile','System.Int64'),(1706931147151380481,'RealName','ZR.ServiceCore.Model.SysFile','System.String'),(1706931147151380482,'FileType','ZR.ServiceCore.Model.SysFile','System.String'),(1706931147151380483,'FileName','ZR.ServiceCore.Model.SysFile','System.String'),(1706931147151380484,'FileUrl','ZR.ServiceCore.Model.SysFile','System.String'),(1706931147151380485,'StorePath','ZR.ServiceCore.Model.SysFile','System.String'),(1706931147155574784,'FileSize','ZR.ServiceCore.Model.SysFile','System.String'),(1706931147155574785,'FileExt','ZR.ServiceCore.Model.SysFile','System.String'),(1706931147155574786,'Create_by','ZR.ServiceCore.Model.SysFile','System.String'),(1706931147155574787,'Create_time','ZR.ServiceCore.Model.SysFile','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931147155574788,'StoreType','ZR.ServiceCore.Model.SysFile','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931147155574789,'AccessUrl','ZR.ServiceCore.Model.SysFile','System.String'),(1706931147935715328,'InfoId','ZR.ServiceCore.Model.SysLogininfor','System.Int64'),(1706931147935715329,'UserName','ZR.ServiceCore.Model.SysLogininfor','System.String'),(1706931147935715330,'Status','ZR.ServiceCore.Model.SysLogininfor','System.String'),(1706931147935715331,'Ipaddr','ZR.ServiceCore.Model.SysLogininfor','System.String'),(1706931147935715332,'LoginLocation','ZR.ServiceCore.Model.SysLogininfor','System.String'),(1706931147935715333,'Browser','ZR.ServiceCore.Model.SysLogininfor','System.String'),(1706931147935715334,'Os','ZR.ServiceCore.Model.SysLogininfor','System.String'),(1706931147935715335,'Msg','ZR.ServiceCore.Model.SysLogininfor','System.String'),(1706931147935715336,'LoginTime','ZR.ServiceCore.Model.SysLogininfor','System.DateTime'),(1706931147935715337,'BeginTime','ZR.ServiceCore.Model.SysLogininfor','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931147935715338,'EndTime','ZR.ServiceCore.Model.SysLogininfor','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931148631969792,'Id','ZR.ServiceCore.Model.SysLoginLimit','System.Int64'),(1706931148631969793,'UserName','ZR.ServiceCore.Model.SysLoginLimit','System.String'),(1706931148631969794,'ErrorCount','ZR.ServiceCore.Model.SysLoginLimit','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931148631969795,'ErrorTime','ZR.ServiceCore.Model.SysLoginLimit','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931148631969796,'Ip','ZR.ServiceCore.Model.SysLoginLimit','System.String'),(1706931148631969797,'Flag','ZR.ServiceCore.Model.SysLoginLimit','System.Char'),(1706931149449859072,'MenuId','ZR.ServiceCore.Model.SysMenu','System.Int64'),(1706931149449859073,'MenuName','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931149449859074,'ParentId','ZR.ServiceCore.Model.SysMenu','System.Int64'),(1706931149449859075,'OrderNum','ZR.ServiceCore.Model.SysMenu','System.Int32'),(1706931149449859076,'Path','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931149449859077,'Component','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931149449859078,'IsCache','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931149449859079,'IsFrame','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931149449859080,'MenuType','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931149449859081,'Visible','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931149449859082,'Status','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931149449859083,'Perms','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931149449859084,'Icon','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931149449859085,'MenuNameKey','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931149449859086,'Children','ZR.ServiceCore.Model.SysMenu','System.Collections.Generic.List`1[[ZR.ServiceCore.Model.SysMenu, ZR.ServiceCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'),(1706931149449859087,'SubNum','ZR.ServiceCore.Model.SysMenu','System.Int32'),(1706931149449859088,'HasChildren','ZR.ServiceCore.Model.SysMenu','System.Boolean'),(1706931149449859089,'Create_by','ZR.ServiceCore.Model.SysMenu','System.Int64'),(1706931149449859090,'Create_name','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931149449859091,'Create_time','ZR.ServiceCore.Model.SysMenu','System.DateTime'),(1706931149449859092,'Update_by','ZR.ServiceCore.Model.SysMenu','System.Int64'),(1706931149449859093,'Update_name','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931149449859094,'Update_time','ZR.ServiceCore.Model.SysMenu','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931149449859095,'Remark','ZR.ServiceCore.Model.SysMenu','System.String'),(1706931150288719872,'NoticeId','ZR.ServiceCore.Model.SysNotice','System.Int64'),(1706931150288719873,'NoticeTitle','ZR.ServiceCore.Model.SysNotice','System.String'),(1706931150288719874,'NoticeType','ZR.ServiceCore.Model.SysNotice','System.Int32'),(1706931150288719875,'NoticeContent','ZR.ServiceCore.Model.SysNotice','System.String'),(1706931150288719876,'Status','ZR.ServiceCore.Model.SysNotice','System.Int32'),(1706931150288719877,'Create_by','ZR.ServiceCore.Model.SysNotice','System.Int64'),(1706931150288719878,'Create_name','ZR.ServiceCore.Model.SysNotice','System.String'),(1706931150288719879,'Create_time','ZR.ServiceCore.Model.SysNotice','System.DateTime'),(1706931150288719880,'Update_by','ZR.ServiceCore.Model.SysNotice','System.Int64'),(1706931150288719881,'Update_name','ZR.ServiceCore.Model.SysNotice','System.String'),(1706931150288719882,'Update_time','ZR.ServiceCore.Model.SysNotice','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931150288719883,'Remark','ZR.ServiceCore.Model.SysNotice','System.String'),(1706931151043694592,'OperId','ZR.ServiceCore.Model.SysOperLog','System.Int64'),(1706931151043694593,'Title','ZR.ServiceCore.Model.SysOperLog','System.String'),(1706931151043694596,'Method','ZR.ServiceCore.Model.SysOperLog','System.String'),(1706931151043694597,'RequestMethod','ZR.ServiceCore.Model.SysOperLog','System.String'),(1706931151043694598,'OperatorType','ZR.ServiceCore.Model.SysOperLog','System.Int32'),(1706931151043694599,'OperName','ZR.ServiceCore.Model.SysOperLog','System.String'),(1706931151043694600,'OperUrl','ZR.ServiceCore.Model.SysOperLog','System.String'),(1706931151043694601,'OperIp','ZR.ServiceCore.Model.SysOperLog','System.String'),(1706931151043694602,'OperLocation','ZR.ServiceCore.Model.SysOperLog','System.String'),(1706931151043694603,'OperParam','ZR.ServiceCore.Model.SysOperLog','System.String'),(1706931151043694604,'JsonResult','ZR.ServiceCore.Model.SysOperLog','System.String'),(1706931151043694605,'Status','ZR.ServiceCore.Model.SysOperLog','System.Int32'),(1706931151043694606,'ErrorMsg','ZR.ServiceCore.Model.SysOperLog','System.String'),(1706931151043694607,'OperTime','ZR.ServiceCore.Model.SysOperLog','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931151043694608,'Elapsed','ZR.ServiceCore.Model.SysOperLog','System.Int64'),(1706931151043694609,'DeptName','ZR.ServiceCore.Model.SysOperLog','System.String'),(1706931151802863616,'PostId','ZR.ServiceCore.Model.SysPost','System.Int64'),(1706931151802863617,'PostCode','ZR.ServiceCore.Model.SysPost','System.String'),(1706931151802863618,'PostName','ZR.ServiceCore.Model.SysPost','System.String'),(1706931151802863619,'PostSort','ZR.ServiceCore.Model.SysPost','System.Int32'),(1706931151802863620,'Status','ZR.ServiceCore.Model.SysPost','System.String'),(1706931151802863621,'Create_by','ZR.ServiceCore.Model.SysPost','System.Int64'),(1706931151802863622,'Create_name','ZR.ServiceCore.Model.SysPost','System.String'),(1706931151802863623,'Create_time','ZR.ServiceCore.Model.SysPost','System.DateTime'),(1706931151802863624,'Update_by','ZR.ServiceCore.Model.SysPost','System.Int64'),(1706931151802863625,'Update_name','ZR.ServiceCore.Model.SysPost','System.String'),(1706931151802863626,'Update_time','ZR.ServiceCore.Model.SysPost','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931151802863627,'Remark','ZR.ServiceCore.Model.SysPost','System.String'),(1706931152553644032,'RoleId','ZR.ServiceCore.Model.SysRole','System.Int64'),(1706931152553644033,'RoleName','ZR.ServiceCore.Model.SysRole','System.String'),(1706931152553644034,'RoleKey','ZR.ServiceCore.Model.SysRole','System.String'),(1706931152553644035,'RoleSort','ZR.ServiceCore.Model.SysRole','System.Int32'),(1706931152553644036,'Status','ZR.ServiceCore.Model.SysRole','System.Int32'),(1706931152553644037,'DelFlag','ZR.ServiceCore.Model.SysRole','System.Int32'),(1706931152553644038,'DataScope','ZR.ServiceCore.Model.SysRole','System.Int32'),(1706931152553644039,'MenuCheckStrictly','ZR.ServiceCore.Model.SysRole','System.Boolean'),(1706931152553644040,'DeptCheckStrictly','ZR.ServiceCore.Model.SysRole','System.Boolean'),(1706931152553644041,'MenuIds','ZR.ServiceCore.Model.SysRole','System.Int64[]'),(1706931152553644042,'DeptIds','ZR.ServiceCore.Model.SysRole','System.Int64[]'),(1706931152553644043,'UserNum','ZR.ServiceCore.Model.SysRole','System.Int32'),(1706931152553644044,'Create_by','ZR.ServiceCore.Model.SysRole','System.Int64'),(1706931152553644045,'Create_name','ZR.ServiceCore.Model.SysRole','System.String'),(1706931152553644046,'Create_time','ZR.ServiceCore.Model.SysRole','System.DateTime'),(1706931152553644047,'Update_by','ZR.ServiceCore.Model.SysRole','System.Int64'),(1706931152553644048,'Update_name','ZR.ServiceCore.Model.SysRole','System.String'),(1706931152553644049,'Update_time','ZR.ServiceCore.Model.SysRole','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931152553644050,'Remark','ZR.ServiceCore.Model.SysRole','System.String'),(1706931153308618752,'RoleId','ZR.ServiceCore.Model.SysRoleDept','System.Int64'),(1706931153308618753,'DeptId','ZR.ServiceCore.Model.SysRoleDept','System.Int64'),(1706931154004873216,'FieldId','ZR.ServiceCore.Model.SysRoleField','System.Int64'),(1706931154004873217,'RoleId','ZR.ServiceCore.Model.SysRoleField','System.Int64'),(1706931154701127680,'Role_id','ZR.ServiceCore.Model.SysRoleMenu','System.Int64'),(1706931154701127681,'Menu_id','ZR.ServiceCore.Model.SysRoleMenu','System.Int64'),(1706931155418353664,'ID','','System.String'),(1706931155418353665,'Name','','System.String'),(1706931155418353666,'JobGroup','','System.String'),(1706931155418353667,'Cron','','System.String'),(1706931155418353668,'AssemblyName','','System.String'),(1706931155418353669,'ClassName','','System.String'),(1706931155418353670,'RunTimes','','System.Int32'),(1706931155418353671,'BeginTime','','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931155418353672,'EndTime','','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931155418353673,'TriggerType','','System.Int32'),(1706931155418353674,'IntervalSecond','','System.Int32'),(1706931155418353675,'IsStart','','System.Int32'),(1706931155418353676,'JobParams','','System.String'),(1706931155418353677,'LastRunTime','','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931155418353678,'ApiUrl','','System.String'),(1706931155418353679,'TaskType','','System.Int32'),(1706931155418353680,'SqlText','','System.String'),(1706931155418353681,'RequestMethod','','System.String'),(1706931155418353682,'Create_by','','System.Int64'),(1706931155418353683,'Create_name','','System.String'),(1706931155418353684,'Create_time','','System.DateTime'),(1706931155418353685,'Update_by','','System.Int64'),(1706931155418353686,'Update_name','','System.String'),(1706931155418353687,'Update_time','','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931155418353688,'Remark','','System.String'),(1706931156177522688,'JobLogId','','System.Int64'),(1706931156177522689,'JobId','','System.String'),(1706931156177522690,'JobName','','System.String'),(1706931156177522691,'JobGroup','','System.String'),(1706931156177522692,'Status','','System.String'),(1706931156177522693,'Exception','','System.String'),(1706931156177522694,'JobMessage','','System.String'),(1706931156177522695,'InvokeTarget','','System.String'),(1706931156177522696,'CreateTime','','System.DateTime'),(1706931156177522697,'Elapsed','','System.Double'),(1706931156978634752,'UserId','ZR.ServiceCore.Model.SysUser','System.Int64'),(1706931156978634753,'UserName','ZR.ServiceCore.Model.SysUser','System.String'),(1706931156978634754,'NickName','ZR.ServiceCore.Model.SysUser','System.String'),(1706931156978634755,'UserType','ZR.ServiceCore.Model.SysUser','System.String'),(1706931156978634756,'Avatar','ZR.ServiceCore.Model.SysUser','System.String'),(1706931156978634757,'Email','ZR.ServiceCore.Model.SysUser','System.String'),(1706931156978634758,'Password','ZR.ServiceCore.Model.SysUser','System.String'),(1706931156978634759,'Phonenumber','ZR.ServiceCore.Model.SysUser','System.String'),(1706931156978634760,'Sex','ZR.ServiceCore.Model.SysUser','System.Int32'),(1706931156978634761,'Status','ZR.ServiceCore.Model.SysUser','System.Int32'),(1706931156978634762,'DelFlag','ZR.ServiceCore.Model.SysUser','System.Int32'),(1706931156978634763,'LoginIP','ZR.ServiceCore.Model.SysUser','System.String'),(1706931156978634764,'LoginDate','ZR.ServiceCore.Model.SysUser','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931156978634765,'DeptId','ZR.ServiceCore.Model.SysUser','System.Int64'),(1706931156978634766,'DeptName','ZR.ServiceCore.Model.SysUser','System.String'),(1706931156978634767,'RoleIds','ZR.ServiceCore.Model.SysUser','System.Int64[]'),(1706931156978634768,'PostIds','ZR.ServiceCore.Model.SysUser','System.Int32[]'),(1706931156978634769,'Roles','ZR.ServiceCore.Model.SysUser','System.Collections.Generic.List`1[[ZR.ServiceCore.Model.SysRole, ZR.ServiceCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'),(1706931156978634770,'WelcomeMessage','ZR.ServiceCore.Model.SysUser','System.String'),(1706931156978634771,'WelcomeContent','ZR.ServiceCore.Model.SysUser','System.String'),(1706931156978634772,'Create_by','ZR.ServiceCore.Model.SysUser','System.Int64'),(1706931156978634773,'Create_name','ZR.ServiceCore.Model.SysUser','System.String'),(1706931156978634774,'Create_time','ZR.ServiceCore.Model.SysUser','System.DateTime'),(1706931156978634775,'Update_by','ZR.ServiceCore.Model.SysUser','System.Int64'),(1706931156978634776,'Update_name','ZR.ServiceCore.Model.SysUser','System.String'),(1706931156978634777,'Update_time','ZR.ServiceCore.Model.SysUser','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931156978634778,'Remark','ZR.ServiceCore.Model.SysUser','System.String'),(1706931157725220864,'UserId','ZR.ServiceCore.Model.SysUserPost','System.Int64'),(1706931157725220865,'PostId','ZR.ServiceCore.Model.SysUserPost','System.Int64'),(1706931158446641152,'UserId','ZR.ServiceCore.Model.SysUserRole','System.Int64'),(1706931158446641153,'RoleId','ZR.ServiceCore.Model.SysUserRole','System.Int64'),(1706931159365193728,'AlwaysShow','ZR.ServiceCore.Model.Vo.RouterVo','System.Boolean'),(1706931159365193729,'Hidden','ZR.ServiceCore.Model.Vo.RouterVo','System.Boolean'),(1706931159365193730,'Name','ZR.ServiceCore.Model.Vo.RouterVo','System.String'),(1706931159365193731,'Path','ZR.ServiceCore.Model.Vo.RouterVo','System.String'),(1706931159365193732,'Redirect','ZR.ServiceCore.Model.Vo.RouterVo','System.String'),(1706931159365193733,'Meta','ZR.ServiceCore.Model.Vo.RouterVo','ZR.ServiceCore.Model.Vo.Meta'),(1706931159365193734,'Children','ZR.ServiceCore.Model.Vo.RouterVo','System.Collections.Generic.List`1[[ZR.ServiceCore.Model.Vo.RouterVo, ZR.ServiceCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'),(1706931159365193735,'Component','ZR.ServiceCore.Model.Vo.RouterVo','System.String'),(1706931160053059584,'Title','ZR.ServiceCore.Model.Vo.Meta','System.String'),(1706931160053059585,'Icon','ZR.ServiceCore.Model.Vo.Meta','System.String'),(1706931160053059586,'NoCache','ZR.ServiceCore.Model.Vo.Meta','System.Boolean'),(1706931160053059587,'TitleKey','ZR.ServiceCore.Model.Vo.Meta','System.String'),(1706931160053059588,'Link','ZR.ServiceCore.Model.Vo.Meta','System.String'),(1706931160053059589,'IsNew','ZR.ServiceCore.Model.Vo.Meta','System.Int32'),(1706931160745119744,'Id','ZR.ServiceCore.Model.Vo.TreeSelectVo','System.Int64'),(1706931160745119745,'Label','ZR.ServiceCore.Model.Vo.TreeSelectVo','System.String'),(1706931160745119746,'Status','ZR.ServiceCore.Model.Vo.TreeSelectVo','System.String'),(1706931160745119747,'MenuType','ZR.ServiceCore.Model.Vo.TreeSelectVo','System.String'),(1706931160745119748,'Children','ZR.ServiceCore.Model.Vo.TreeSelectVo','System.Collections.Generic.List`1[[ZR.ServiceCore.Model.Vo.TreeSelectVo, ZR.ServiceCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'),(1706931161445568512,'TableId','ZR.ServiceCore.Model.Generate.GenTable','System.Int64'),(1706931161445568513,'DbName','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568514,'TableName','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568515,'TableComment','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568516,'SubTableName','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568517,'SubTableFkName','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568518,'ClassName','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568519,'TplCategory','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568521,'ModuleName','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568523,'FunctionName','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568524,'FunctionAuthor','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568525,'GenType','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568526,'GenPath','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568527,'Options','ZR.ServiceCore.Model.Generate.GenTable','ZR.ServiceCore.Model.Generate.Options'),(1706931161445568528,'Columns','ZR.ServiceCore.Model.Generate.GenTable','System.Collections.Generic.List`1[[ZR.ServiceCore.Model.Generate.GenTableColumn, ZR.ServiceCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'),(1706931161445568529,'SubTable','ZR.ServiceCore.Model.Generate.GenTable','ZR.ServiceCore.Model.Generate.GenTable'),(1706931161445568530,'Create_by','ZR.ServiceCore.Model.Generate.GenTable','System.Int64'),(1706931161445568531,'Create_name','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568532,'Create_time','ZR.ServiceCore.Model.Generate.GenTable','System.DateTime'),(1706931161445568533,'Update_by','ZR.ServiceCore.Model.Generate.GenTable','System.Int64'),(1706931161445568534,'Update_name','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931161445568535,'Update_time','ZR.ServiceCore.Model.Generate.GenTable','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931161445568536,'Remark','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1706931162154405888,'ParentMenuId','ZR.ServiceCore.Model.Generate.Options','System.Int64'),(1706931162154405889,'SortType','ZR.ServiceCore.Model.Generate.Options','System.String'),(1706931162154405890,'SortField','ZR.ServiceCore.Model.Generate.Options','System.String'),(1706931162154405891,'TreeCode','ZR.ServiceCore.Model.Generate.Options','System.String'),(1706931162154405892,'TreeName','ZR.ServiceCore.Model.Generate.Options','System.String'),(1706931162154405893,'TreeParentCode','ZR.ServiceCore.Model.Generate.Options','System.String'),(1706931162154405894,'PermissionPrefix','ZR.ServiceCore.Model.Generate.Options','System.String'),(1706931162154405895,'CheckedBtn','ZR.ServiceCore.Model.Generate.Options','System.Int32[]'),(1706931162154405896,'ColNum','ZR.ServiceCore.Model.Generate.Options','System.Int32'),(1706931162154405897,'GenerateRepo','ZR.ServiceCore.Model.Generate.Options','System.Int32'),(1706931162154405898,'GenerateMenu','ZR.ServiceCore.Model.Generate.Options','System.Boolean'),(1706931162154405899,'OperBtnStyle','ZR.ServiceCore.Model.Generate.Options','System.Int32'),(1706931162880020480,'ColumnId','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Int64'),(1706931162880020481,'ColumnName','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020482,'TableId','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Int64'),(1706931162880020483,'TableName','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020484,'ColumnComment','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020485,'ColumnType','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020486,'CsharpType','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020487,'CsharpField','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020488,'IsPk','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Boolean'),(1706931162880020489,'IsRequired','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Boolean'),(1706931162880020490,'IsIncrement','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Boolean'),(1706931162880020491,'IsInsert','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Boolean'),(1706931162880020492,'IsEdit','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Boolean'),(1706931162880020493,'IsList','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Boolean'),(1706931162880020494,'IsQuery','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Boolean'),(1706931162880020495,'IsSort','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Boolean'),(1706931162880020496,'IsExport','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Boolean'),(1706931162880020497,'HtmlType','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020498,'QueryType','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020499,'Sort','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Int32'),(1706931162880020500,'DictType','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020501,'AutoFillType','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Int32'),(1706931162880020502,'RequiredStr','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020503,'SortStr','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020504,'CsharpFieldFl','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020506,'Create_by','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Int64'),(1706931162880020507,'Create_name','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020508,'Create_time','ZR.ServiceCore.Model.Generate.GenTableColumn','System.DateTime'),(1706931162880020509,'Update_by','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Int64'),(1706931162880020510,'Update_name','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931162880020511,'Update_time','ZR.ServiceCore.Model.Generate.GenTableColumn','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931162880020512,'Remark','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1706931163836321792,'CategoryId','ZR.ServiceCore.Model.Dto.ArticleCategoryDto','System.Int32'),(1706931163836321793,'Name','ZR.ServiceCore.Model.Dto.ArticleCategoryDto','System.String'),(1706931163836321794,'CreateTime','ZR.ServiceCore.Model.Dto.ArticleCategoryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931163836321795,'ParentId','ZR.ServiceCore.Model.Dto.ArticleCategoryDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931164507410432,'PageNum','ZR.ServiceCore.Model.Dto.ArticleCategoryQueryDto','System.Int32'),(1706931164507410433,'PageSize','ZR.ServiceCore.Model.Dto.ArticleCategoryQueryDto','System.Int32'),(1706931164507410434,'TotalNum','ZR.ServiceCore.Model.Dto.ArticleCategoryQueryDto','System.Int32'),(1706931164507410435,'Sort','ZR.ServiceCore.Model.Dto.ArticleCategoryQueryDto','System.String'),(1706931164507410436,'SortType','ZR.ServiceCore.Model.Dto.ArticleCategoryQueryDto','System.String'),(1706931165216247808,'UserId','ZR.ServiceCore.Model.Dto.ArticleQueryDto','System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931165216247809,'Status','ZR.ServiceCore.Model.Dto.ArticleQueryDto','System.String'),(1706931165216247810,'Title','ZR.ServiceCore.Model.Dto.ArticleQueryDto','System.String'),(1706931165216247811,'BeginTime','ZR.ServiceCore.Model.Dto.ArticleQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931165216247812,'EndTime','ZR.ServiceCore.Model.Dto.ArticleQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931165216247813,'PageNum','ZR.ServiceCore.Model.Dto.ArticleQueryDto','System.Int32'),(1706931165216247814,'PageSize','ZR.ServiceCore.Model.Dto.ArticleQueryDto','System.Int32'),(1706931165216247815,'TotalNum','ZR.ServiceCore.Model.Dto.ArticleQueryDto','System.Int32'),(1706931165216247816,'Sort','ZR.ServiceCore.Model.Dto.ArticleQueryDto','System.String'),(1706931165216247817,'SortType','ZR.ServiceCore.Model.Dto.ArticleQueryDto','System.String'),(1706931165912502272,'Cid','ZR.ServiceCore.Model.Dto.ArticleDto','System.Int32'),(1706931165912502273,'Title','ZR.ServiceCore.Model.Dto.ArticleDto','System.String'),(1706931165912502274,'Content','ZR.ServiceCore.Model.Dto.ArticleDto','System.String'),(1706931165912502275,'UserId','ZR.ServiceCore.Model.Dto.ArticleDto','System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931165912502276,'Status','ZR.ServiceCore.Model.Dto.ArticleDto','System.String'),(1706931165912502277,'FmtType','ZR.ServiceCore.Model.Dto.ArticleDto','System.String'),(1706931165912502278,'Tags','ZR.ServiceCore.Model.Dto.ArticleDto','System.String'),(1706931165912502279,'Hits','ZR.ServiceCore.Model.Dto.ArticleDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931165912502280,'CategoryId','ZR.ServiceCore.Model.Dto.ArticleDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931165912502281,'CreateTime','ZR.ServiceCore.Model.Dto.ArticleDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931165912502282,'UpdateTime','ZR.ServiceCore.Model.Dto.ArticleDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931165912502283,'AuthorName','ZR.ServiceCore.Model.Dto.ArticleDto','System.String'),(1706931165912502284,'CoverUrl','ZR.ServiceCore.Model.Dto.ArticleDto','System.String'),(1706931165912502285,'ArticleCategoryNav','ZR.ServiceCore.Model.Dto.ArticleDto','ZR.ServiceCore.Model.ArticleCategory'),(1706931165912502286,'TagList','ZR.ServiceCore.Model.Dto.ArticleDto','System.String[]'),(1706931165912502287,'IsPublic','ZR.ServiceCore.Model.Dto.ArticleDto','System.Int32'),(1706931166600368128,'Id','ZR.ServiceCore.Model.Dto.CommonLangDto','System.Int64'),(1706931166600368129,'LangCode','ZR.ServiceCore.Model.Dto.CommonLangDto','System.String'),(1706931166600368130,'LangKey','ZR.ServiceCore.Model.Dto.CommonLangDto','System.String'),(1706931166600368131,'LangName','ZR.ServiceCore.Model.Dto.CommonLangDto','System.String'),(1706931166600368132,'LangList','ZR.ServiceCore.Model.Dto.CommonLangDto','System.Collections.Generic.List`1[[ZR.ServiceCore.Model.Dto.CommonLangDto, ZR.ServiceCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'),(1706931167296622592,'LangCode','ZR.ServiceCore.Model.Dto.CommonLangQueryDto','System.String'),(1706931167296622593,'LangKey','ZR.ServiceCore.Model.Dto.CommonLangQueryDto','System.String'),(1706931167296622594,'BeginAddtime','ZR.ServiceCore.Model.Dto.CommonLangQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931167296622595,'EndAddtime','ZR.ServiceCore.Model.Dto.CommonLangQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931167296622596,'ShowMode','ZR.ServiceCore.Model.Dto.CommonLangQueryDto','System.Int32'),(1706931167296622597,'PageNum','ZR.ServiceCore.Model.Dto.CommonLangQueryDto','System.Int32'),(1706931167296622598,'PageSize','ZR.ServiceCore.Model.Dto.CommonLangQueryDto','System.Int32'),(1706931167296622599,'TotalNum','ZR.ServiceCore.Model.Dto.CommonLangQueryDto','System.Int32'),(1706931167296622600,'Sort','ZR.ServiceCore.Model.Dto.CommonLangQueryDto','System.String'),(1706931167296622601,'SortType','ZR.ServiceCore.Model.Dto.CommonLangQueryDto','System.String'),(1706931168005459968,'TableId','ZR.ServiceCore.Model.Dto.GenTableDto','System.Int32'),(1706931168005459969,'TableName','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1706931168005459970,'TableComment','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1706931168005459971,'SubTableName','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1706931168005459972,'SubTableFkName','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1706931168005459973,'ClassName','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1706931168005459974,'TplCategory','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1706931168005459976,'ModuleName','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1706931168005459978,'FunctionName','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1706931168005459979,'FunctionAuthor','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1706931168005459980,'GenType','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1706931168005459981,'GenPath','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1706931168005459982,'Remark','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1706931168005459983,'Params','ZR.ServiceCore.Model.Dto.GenTableDto','ZR.ServiceCore.Model.Generate.Options'),(1706931168005459984,'Columns','ZR.ServiceCore.Model.Dto.GenTableDto','System.Collections.Generic.List`1[[ZR.ServiceCore.Model.Dto.GenTableColumnDto, ZR.ServiceCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'),(1706931168710103040,'TreeCode','ZR.ServiceCore.Model.Dto.Params','System.String'),(1706931168710103041,'TreeName','ZR.ServiceCore.Model.Dto.Params','System.String'),(1706931168710103042,'TreeParentCode','ZR.ServiceCore.Model.Dto.Params','System.String'),(1706931168710103043,'ParentMenuId','ZR.ServiceCore.Model.Dto.Params','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931168710103044,'SortField','ZR.ServiceCore.Model.Dto.Params','System.String'),(1706931168710103045,'SortType','ZR.ServiceCore.Model.Dto.Params','System.String'),(1706931168710103046,'CheckedBtn','ZR.ServiceCore.Model.Dto.Params','System.String'),(1706931168710103047,'PermissionPrefix','ZR.ServiceCore.Model.Dto.Params','System.String'),(1706931169431523328,'ColumnId','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.Int32'),(1706931169431523329,'TableId','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.Int32'),(1706931169431523330,'ColumnComment','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.String'),(1706931169431523331,'CsharpType','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.String'),(1706931169431523332,'CsharpField','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.String'),(1706931169431523333,'IsInsert','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.Boolean'),(1706931169431523334,'IsEdit','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.Boolean'),(1706931169431523335,'IsList','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.Boolean'),(1706931169431523336,'IsQuery','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.Boolean'),(1706931169431523337,'IsSort','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.Boolean'),(1706931169431523338,'IsRequired','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.Boolean'),(1706931169431523339,'IsExport','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.Boolean'),(1706931169431523340,'HtmlType','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.String'),(1706931169431523341,'QueryType','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.String'),(1706931169431523342,'Sort','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.Int32'),(1706931169431523343,'DictType','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.String'),(1706931169431523344,'Remark','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.String'),(1706931169431523345,'AutoFillType','ZR.ServiceCore.Model.Dto.GenTableColumnDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931170333298688,'Name','ZR.ServiceCore.Model.Dto.LockUserDto','System.String'),(1706931170333298689,'ClientId','ZR.ServiceCore.Model.Dto.LockUserDto','System.String'),(1706931170333298690,'ConnnectionId','ZR.ServiceCore.Model.Dto.LockUserDto','System.String'),(1706931170333298691,'Reason','ZR.ServiceCore.Model.Dto.LockUserDto','System.String'),(1706931170333298692,'Time','ZR.ServiceCore.Model.Dto.LockUserDto','System.Int32'),(1706931171222491136,'Username','ZR.ServiceCore.Model.Dto.LoginBodyDto','System.String'),(1706931171222491137,'Password','ZR.ServiceCore.Model.Dto.LoginBodyDto','System.String'),(1706931171222491138,'Code','ZR.ServiceCore.Model.Dto.LoginBodyDto','System.String'),(1706931171222491139,'Uuid','ZR.ServiceCore.Model.Dto.LoginBodyDto','System.String'),(1706931171222491140,'LoginIP','ZR.ServiceCore.Model.Dto.LoginBodyDto','System.String'),(1706931171222491141,'ClientId','ZR.ServiceCore.Model.Dto.LoginBodyDto','System.String'),(1706931172002631680,'MenuId','ZR.ServiceCore.Model.Dto.MenuDto','System.Int32'),(1706931172002631681,'MenuName','ZR.ServiceCore.Model.Dto.MenuDto','System.String'),(1706931172002631682,'ParentId','ZR.ServiceCore.Model.Dto.MenuDto','System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931172002631683,'OrderNum','ZR.ServiceCore.Model.Dto.MenuDto','System.Int32'),(1706931172002631684,'Path','ZR.ServiceCore.Model.Dto.MenuDto','System.String'),(1706931172002631685,'Component','ZR.ServiceCore.Model.Dto.MenuDto','System.String'),(1706931172002631686,'IsCache','ZR.ServiceCore.Model.Dto.MenuDto','System.Int32'),(1706931172002631687,'IsFrame','ZR.ServiceCore.Model.Dto.MenuDto','System.Int32'),(1706931172002631688,'MenuType','ZR.ServiceCore.Model.Dto.MenuDto','System.String'),(1706931172002631689,'Visible','ZR.ServiceCore.Model.Dto.MenuDto','System.String'),(1706931172002631690,'Status','ZR.ServiceCore.Model.Dto.MenuDto','System.String'),(1706931172002631691,'Perms','ZR.ServiceCore.Model.Dto.MenuDto','System.String'),(1706931172002631692,'Icon','ZR.ServiceCore.Model.Dto.MenuDto','System.String'),(1706931172002631693,'MenuNameKey','ZR.ServiceCore.Model.Dto.MenuDto','System.String'),(1706931172002631694,'Children','ZR.ServiceCore.Model.Dto.MenuDto','System.Collections.Generic.List`1[[ZR.ServiceCore.Model.Dto.MenuDto, ZR.ServiceCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'),(1706931172740829184,'MenuName','ZR.ServiceCore.Model.Dto.MenuQueryDto','System.String'),(1706931172740829185,'Visible','ZR.ServiceCore.Model.Dto.MenuQueryDto','System.String'),(1706931172740829186,'Status','ZR.ServiceCore.Model.Dto.MenuQueryDto','System.String'),(1706931172740829187,'MenuTypeIds','ZR.ServiceCore.Model.Dto.MenuQueryDto','System.String'),(1706931172740829188,'ParentId','ZR.ServiceCore.Model.Dto.MenuQueryDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931172740829189,'MenuTypeIdArr','ZR.ServiceCore.Model.Dto.MenuQueryDto','System.String[]'),(1706931173483220992,'Username','ZR.ServiceCore.Model.Dto.RegisterDto','System.String'),(1706931173483220993,'Password','ZR.ServiceCore.Model.Dto.RegisterDto','System.String'),(1706931173483220994,'ConfirmPassword','ZR.ServiceCore.Model.Dto.RegisterDto','System.String'),(1706931173483220995,'Code','ZR.ServiceCore.Model.Dto.RegisterDto','System.String'),(1706931173483220996,'Uuid','ZR.ServiceCore.Model.Dto.RegisterDto','System.String'),(1706931173483220997,'Photo','ZR.ServiceCore.Model.Dto.RegisterDto','System.String'),(1706931174250778624,'MenuName','ZR.ServiceCore.Model.Dto.RoleMenuExportDto','System.String'),(1706931174250778625,'Path','ZR.ServiceCore.Model.Dto.RoleMenuExportDto','System.String'),(1706931174250778626,'Component','ZR.ServiceCore.Model.Dto.RoleMenuExportDto','System.String'),(1706931174250778627,'Perms','ZR.ServiceCore.Model.Dto.RoleMenuExportDto','System.String'),(1706931174250778628,'MenuType','ZR.ServiceCore.Model.Dto.RoleMenuExportDto','ZR.Model.System.Enums.MenuType'),(1706931174250778629,'Status','ZR.ServiceCore.Model.Dto.RoleMenuExportDto','ZR.ServiceCore.Model.Enums.MenuStatus'),(1706931174993170432,'RoleId','ZR.ServiceCore.Model.Dto.RoleUserQueryDto','System.Int64'),(1706931174993170433,'UserName','ZR.ServiceCore.Model.Dto.RoleUserQueryDto','System.String'),(1706931174993170434,'PageNum','ZR.ServiceCore.Model.Dto.RoleUserQueryDto','System.Int32'),(1706931174993170435,'PageSize','ZR.ServiceCore.Model.Dto.RoleUserQueryDto','System.Int32'),(1706931174993170436,'TotalNum','ZR.ServiceCore.Model.Dto.RoleUserQueryDto','System.Int32'),(1706931174993170437,'Sort','ZR.ServiceCore.Model.Dto.RoleUserQueryDto','System.String'),(1706931174993170438,'SortType','ZR.ServiceCore.Model.Dto.RoleUserQueryDto','System.String'),(1706931175718785024,'RoleId','','System.Int64'),(1706931175718785025,'UserIds','','System.Collections.Generic.List`1[[System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931176419233792,'Uuid','ZR.ServiceCore.Model.Dto.ScanDto','System.String'),(1706931176419233793,'State','ZR.ServiceCore.Model.Dto.ScanDto','System.String'),(1706931176419233794,'DeviceId','ZR.ServiceCore.Model.Dto.ScanDto','System.String'),(1706931177178402816,'TableName','ZR.ServiceCore.Model.Dto.SqlDiffLogQueryDto','System.String'),(1706931177178402817,'DiffType','ZR.ServiceCore.Model.Dto.SqlDiffLogQueryDto','System.String'),(1706931177178402818,'UserName','ZR.ServiceCore.Model.Dto.SqlDiffLogQueryDto','System.String'),(1706931177178402819,'BeginAddTime','ZR.ServiceCore.Model.Dto.SqlDiffLogQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931177178402820,'EndAddTime','ZR.ServiceCore.Model.Dto.SqlDiffLogQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931177178402821,'PageNum','ZR.ServiceCore.Model.Dto.SqlDiffLogQueryDto','System.Int32'),(1706931177178402822,'PageSize','ZR.ServiceCore.Model.Dto.SqlDiffLogQueryDto','System.Int32'),(1706931177178402823,'TotalNum','ZR.ServiceCore.Model.Dto.SqlDiffLogQueryDto','System.Int32'),(1706931177178402824,'Sort','ZR.ServiceCore.Model.Dto.SqlDiffLogQueryDto','System.String'),(1706931177178402825,'SortType','ZR.ServiceCore.Model.Dto.SqlDiffLogQueryDto','System.String'),(1706931177912406016,'PId','ZR.ServiceCore.Model.Dto.SqlDiffLogDto','System.Int64'),(1706931177912406017,'TableName','ZR.ServiceCore.Model.Dto.SqlDiffLogDto','System.String'),(1706931177912406019,'DiffType','ZR.ServiceCore.Model.Dto.SqlDiffLogDto','System.String'),(1706931177912406020,'Sql','ZR.ServiceCore.Model.Dto.SqlDiffLogDto','System.String'),(1706931177912406021,'BeforeData','ZR.ServiceCore.Model.Dto.SqlDiffLogDto','System.String'),(1706931177912406022,'AfterData','ZR.ServiceCore.Model.Dto.SqlDiffLogDto','System.String'),(1706931177912406023,'UserName','ZR.ServiceCore.Model.Dto.SqlDiffLogDto','System.String'),(1706931177912406024,'AddTime','ZR.ServiceCore.Model.Dto.SqlDiffLogDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931177912406025,'ConfigId','ZR.ServiceCore.Model.Dto.SqlDiffLogDto','System.String'),(1706931178684157952,'ConfigId','ZR.ServiceCore.Model.Dto.SysConfigDto','System.Int32'),(1706931178688352256,'ConfigName','ZR.ServiceCore.Model.Dto.SysConfigDto','System.String'),(1706931178688352257,'ConfigKey','ZR.ServiceCore.Model.Dto.SysConfigDto','System.String'),(1706931178688352258,'ConfigValue','ZR.ServiceCore.Model.Dto.SysConfigDto','System.String'),(1706931178688352259,'ConfigType','ZR.ServiceCore.Model.Dto.SysConfigDto','System.String'),(1706931178688352260,'Remark','ZR.ServiceCore.Model.Dto.SysConfigDto','System.String'),(1706931179460104192,'ConfigName','ZR.ServiceCore.Model.Dto.SysConfigQueryDto','System.String'),(1706931179460104193,'ConfigKey','ZR.ServiceCore.Model.Dto.SysConfigQueryDto','System.String'),(1706931179460104194,'ConfigValue','ZR.ServiceCore.Model.Dto.SysConfigQueryDto','System.String'),(1706931179460104195,'ConfigType','ZR.ServiceCore.Model.Dto.SysConfigQueryDto','System.String'),(1706931179460104196,'BeginTime','ZR.ServiceCore.Model.Dto.SysConfigQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931179460104197,'EndTime','ZR.ServiceCore.Model.Dto.SysConfigQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931179460104198,'PageNum','ZR.ServiceCore.Model.Dto.SysConfigQueryDto','System.Int32'),(1706931179460104199,'PageSize','ZR.ServiceCore.Model.Dto.SysConfigQueryDto','System.Int32'),(1706931179460104200,'TotalNum','ZR.ServiceCore.Model.Dto.SysConfigQueryDto','System.Int32'),(1706931179460104201,'Sort','ZR.ServiceCore.Model.Dto.SysConfigQueryDto','System.String'),(1706931179460104202,'SortType','ZR.ServiceCore.Model.Dto.SysConfigQueryDto','System.String'),(1706931180164747264,'Status','ZR.ServiceCore.Model.Dto.SysDeptQueryDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931180164747265,'DelFlag','ZR.ServiceCore.Model.Dto.SysDeptQueryDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931180164747266,'DeptName','ZR.ServiceCore.Model.Dto.SysDeptQueryDto','System.String'),(1706931180164747267,'PageNum','ZR.ServiceCore.Model.Dto.SysDeptQueryDto','System.Int32'),(1706931180164747268,'PageSize','ZR.ServiceCore.Model.Dto.SysDeptQueryDto','System.Int32'),(1706931180164747269,'TotalNum','ZR.ServiceCore.Model.Dto.SysDeptQueryDto','System.Int32'),(1706931180164747270,'Sort','ZR.ServiceCore.Model.Dto.SysDeptQueryDto','System.String'),(1706931180164747271,'SortType','ZR.ServiceCore.Model.Dto.SysDeptQueryDto','System.String'),(1706931180957470720,'DeptId','ZR.ServiceCore.Model.Dto.SysDeptDto','System.Int64'),(1706931180957470721,'ParentId','ZR.ServiceCore.Model.Dto.SysDeptDto','System.Int64'),(1706931180957470722,'Ancestors','ZR.ServiceCore.Model.Dto.SysDeptDto','System.String'),(1706931180957470723,'DeptName','ZR.ServiceCore.Model.Dto.SysDeptDto','System.String'),(1706931180957470724,'OrderNum','ZR.ServiceCore.Model.Dto.SysDeptDto','System.Int32'),(1706931180957470725,'Leader','ZR.ServiceCore.Model.Dto.SysDeptDto','System.String'),(1706931180957470726,'Phone','ZR.ServiceCore.Model.Dto.SysDeptDto','System.String'),(1706931180957470727,'Email','ZR.ServiceCore.Model.Dto.SysDeptDto','System.String'),(1706931180957470728,'Status','ZR.ServiceCore.Model.Dto.SysDeptDto','System.Int32'),(1706931180957470729,'DelFlag','ZR.ServiceCore.Model.Dto.SysDeptDto','System.Int32'),(1706931180957470730,'Create_by','ZR.ServiceCore.Model.Dto.SysDeptDto','System.Int64'),(1706931180957470731,'Create_name','ZR.ServiceCore.Model.Dto.SysDeptDto','System.String'),(1706931180957470732,'Create_time','ZR.ServiceCore.Model.Dto.SysDeptDto','System.DateTime'),(1706931180957470733,'Update_by','ZR.ServiceCore.Model.Dto.SysDeptDto','System.Int64'),(1706931180957470734,'Update_name','ZR.ServiceCore.Model.Dto.SysDeptDto','System.String'),(1706931180957470735,'Update_time','ZR.ServiceCore.Model.Dto.SysDeptDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931180957470736,'Remark','ZR.ServiceCore.Model.Dto.SysDeptDto','System.String'),(1706931181687279616,'DictType','ZR.ServiceCore.Model.Dto.SysDictDataDto','System.String'),(1706931181687279617,'ColumnName','ZR.ServiceCore.Model.Dto.SysDictDataDto','System.String'),(1706931181687279618,'List','ZR.ServiceCore.Model.Dto.SysDictDataDto','System.Collections.Generic.List`1[[ZR.ServiceCore.Model.SysDictData, ZR.ServiceCore, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'),(1706931182433865728,'DictId','ZR.ServiceCore.Model.Dto.SysDictTypeDto','System.Int64'),(1706931182433865729,'DictName','ZR.ServiceCore.Model.Dto.SysDictTypeDto','System.String'),(1706931182433865730,'DictType','ZR.ServiceCore.Model.Dto.SysDictTypeDto','System.String'),(1706931182433865731,'Status','ZR.ServiceCore.Model.Dto.SysDictTypeDto','System.String'),(1706931182433865732,'Type','ZR.ServiceCore.Model.Dto.SysDictTypeDto','System.String'),(1706931183184646144,'Id','ZR.ServiceCore.Model.Dto.SysFieldDto','System.Int64'),(1706931183184646145,'FieldName','ZR.ServiceCore.Model.Dto.SysFieldDto','System.String'),(1706931183184646146,'FullName','ZR.ServiceCore.Model.Dto.SysFieldDto','System.String'),(1706931183184646147,'FieldType','ZR.ServiceCore.Model.Dto.SysFieldDto','System.String'),(1706931183184646148,'IsClass','ZR.ServiceCore.Model.Dto.SysFieldDto','System.String'),(1706931183184646149,'IsPermission','ZR.ServiceCore.Model.Dto.SysFieldDto','System.Boolean'),(1706931183948009472,'Id','ZR.ServiceCore.Model.Dto.SysFileDto','System.Int64'),(1706931183948009473,'RealName','ZR.ServiceCore.Model.Dto.SysFileDto','System.String'),(1706931183948009474,'FileType','ZR.ServiceCore.Model.Dto.SysFileDto','System.String'),(1706931183948009475,'FileName','ZR.ServiceCore.Model.Dto.SysFileDto','System.String'),(1706931183948009476,'FileUrl','ZR.ServiceCore.Model.Dto.SysFileDto','System.String'),(1706931183948009477,'StorePath','ZR.ServiceCore.Model.Dto.SysFileDto','System.String'),(1706931183948009478,'FileSize','ZR.ServiceCore.Model.Dto.SysFileDto','System.String'),(1706931183948009479,'FileExt','ZR.ServiceCore.Model.Dto.SysFileDto','System.String'),(1706931183948009480,'Create_by','ZR.ServiceCore.Model.Dto.SysFileDto','System.String'),(1706931183948009481,'Create_time','ZR.ServiceCore.Model.Dto.SysFileDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931183948009482,'StoreType','ZR.ServiceCore.Model.Dto.SysFileDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931183948009483,'AccessUrl','ZR.ServiceCore.Model.Dto.SysFileDto','System.String'),(1706931184698789888,'BeginCreate_time','ZR.ServiceCore.Model.Dto.SysFileQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931184698789889,'EndCreate_time','ZR.ServiceCore.Model.Dto.SysFileQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931184698789890,'StoreType','ZR.ServiceCore.Model.Dto.SysFileQueryDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931184698789891,'FileId','ZR.ServiceCore.Model.Dto.SysFileQueryDto','System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931184698789892,'PageNum','ZR.ServiceCore.Model.Dto.SysFileQueryDto','System.Int32'),(1706931184698789893,'PageSize','ZR.ServiceCore.Model.Dto.SysFileQueryDto','System.Int32'),(1706931184698789894,'TotalNum','ZR.ServiceCore.Model.Dto.SysFileQueryDto','System.Int32'),(1706931184698789895,'Sort','ZR.ServiceCore.Model.Dto.SysFileQueryDto','System.String'),(1706931184698789896,'SortType','ZR.ServiceCore.Model.Dto.SysFileQueryDto','System.String'),(1706931185390850048,'PageNum','ZR.ServiceCore.Model.Dto.SysLogininfoDto','System.Int32'),(1706931185390850049,'Ipaddr','ZR.ServiceCore.Model.Dto.SysLogininfoDto','System.String'),(1706931185390850050,'Status','ZR.ServiceCore.Model.Dto.SysLogininfoDto','System.String'),(1706931185390850051,'UserName','ZR.ServiceCore.Model.Dto.SysLogininfoDto','System.String'),(1706931185390850052,'Create_by','ZR.ServiceCore.Model.Dto.SysLogininfoDto','System.Int64'),(1706931185390850053,'Create_name','ZR.ServiceCore.Model.Dto.SysLogininfoDto','System.String'),(1706931185390850054,'Create_time','ZR.ServiceCore.Model.Dto.SysLogininfoDto','System.DateTime'),(1706931185390850055,'Update_by','ZR.ServiceCore.Model.Dto.SysLogininfoDto','System.Int64'),(1706931185390850056,'Update_name','ZR.ServiceCore.Model.Dto.SysLogininfoDto','System.String'),(1706931185390850057,'Update_time','ZR.ServiceCore.Model.Dto.SysLogininfoDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931185390850058,'Remark','ZR.ServiceCore.Model.Dto.SysLogininfoDto','System.String'),(1706931186074521600,'NoticeId','ZR.ServiceCore.Model.Dto.SysNoticeDto','System.String'),(1706931186074521601,'NoticeTitle','ZR.ServiceCore.Model.Dto.SysNoticeDto','System.String'),(1706931186074521602,'NoticeType','ZR.ServiceCore.Model.Dto.SysNoticeDto','System.Int32'),(1706931186074521603,'NoticeContent','ZR.ServiceCore.Model.Dto.SysNoticeDto','System.String'),(1706931186074521604,'Status','ZR.ServiceCore.Model.Dto.SysNoticeDto','System.Int32'),(1706931186074521605,'Remark','ZR.ServiceCore.Model.Dto.SysNoticeDto','System.String'),(1706931186787553280,'NoticeTitle','ZR.ServiceCore.Model.Dto.SysNoticeQueryDto','System.String'),(1706931186787553281,'NoticeType','ZR.ServiceCore.Model.Dto.SysNoticeQueryDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931186787553282,'CreateName','ZR.ServiceCore.Model.Dto.SysNoticeQueryDto','System.String'),(1706931186787553283,'Status','ZR.ServiceCore.Model.Dto.SysNoticeQueryDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931186787553284,'PageNum','ZR.ServiceCore.Model.Dto.SysNoticeQueryDto','System.Int32'),(1706931186787553285,'PageSize','ZR.ServiceCore.Model.Dto.SysNoticeQueryDto','System.Int32'),(1706931186787553286,'TotalNum','ZR.ServiceCore.Model.Dto.SysNoticeQueryDto','System.Int32'),(1706931186787553287,'Sort','ZR.ServiceCore.Model.Dto.SysNoticeQueryDto','System.String'),(1706931186787553288,'SortType','ZR.ServiceCore.Model.Dto.SysNoticeQueryDto','System.String'),(1706931187483807744,'OperName','ZR.ServiceCore.Model.Dto.SysOperLogQueryDto','System.String'),(1706931187483807746,'Status','ZR.ServiceCore.Model.Dto.SysOperLogQueryDto','System.Int32'),(1706931187483807747,'Title','ZR.ServiceCore.Model.Dto.SysOperLogQueryDto','System.String'),(1706931187483807748,'OperParam','ZR.ServiceCore.Model.Dto.SysOperLogQueryDto','System.String'),(1706931187483807749,'BeginTime','ZR.ServiceCore.Model.Dto.SysOperLogQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931187483807750,'EndTime','ZR.ServiceCore.Model.Dto.SysOperLogQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931187483807751,'PageNum','ZR.ServiceCore.Model.Dto.SysOperLogQueryDto','System.Int32'),(1706931187483807752,'PageSize','ZR.ServiceCore.Model.Dto.SysOperLogQueryDto','System.Int32'),(1706931187483807753,'TotalNum','ZR.ServiceCore.Model.Dto.SysOperLogQueryDto','System.Int32'),(1706931187483807754,'Sort','ZR.ServiceCore.Model.Dto.SysOperLogQueryDto','System.String'),(1706931187483807755,'SortType','ZR.ServiceCore.Model.Dto.SysOperLogQueryDto','System.String'),(1706931188192645120,'PageNum','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.Int32'),(1706931188192645121,'PageSize','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.Int32'),(1706931188192645122,'OperName','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.String'),(1706931188192645124,'Status','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.Int32'),(1706931188192645125,'Title','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.String'),(1706931188192645126,'OperParam','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.String'),(1706931188192645127,'Create_by','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.Int64'),(1706931188192645128,'Create_name','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.String'),(1706931188192645129,'Create_time','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.DateTime'),(1706931188192645130,'Update_by','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.Int64'),(1706931188192645131,'Update_name','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.String'),(1706931188192645132,'Update_time','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931188192645133,'Remark','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.String'),(1706931188914065408,'RoleId','ZR.ServiceCore.Model.Dto.SysRoleDto','System.Int64'),(1706931188914065409,'MenuIds','ZR.ServiceCore.Model.Dto.SysRoleDto','System.Collections.Generic.List`1[[System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931188914065410,'RoleName','ZR.ServiceCore.Model.Dto.SysRoleDto','System.String'),(1706931188914065411,'RoleKey','ZR.ServiceCore.Model.Dto.SysRoleDto','System.String'),(1706931188914065412,'RoleSort','ZR.ServiceCore.Model.Dto.SysRoleDto','System.Int32'),(1706931188914065413,'Status','ZR.ServiceCore.Model.Dto.SysRoleDto','System.Int32'),(1706931188914065414,'DataScope','ZR.ServiceCore.Model.Dto.SysRoleDto','System.Int32'),(1706931188914065415,'DeptIds','ZR.ServiceCore.Model.Dto.SysRoleDto','System.Int32[]'),(1706931188914065416,'DelMenuIds','ZR.ServiceCore.Model.Dto.SysRoleDto','System.Collections.Generic.List`1[[System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931188914065417,'MenuCheckStrictly','ZR.ServiceCore.Model.Dto.SysRoleDto','System.Boolean'),(1706931188914065418,'DeptCheckStrictly','ZR.ServiceCore.Model.Dto.SysRoleDto','System.Boolean'),(1706931188914065419,'Create_by','ZR.ServiceCore.Model.Dto.SysRoleDto','System.Int64'),(1706931188914065420,'Create_name','ZR.ServiceCore.Model.Dto.SysRoleDto','System.String'),(1706931188914065421,'Create_time','ZR.ServiceCore.Model.Dto.SysRoleDto','System.DateTime'),(1706931188914065422,'Update_by','ZR.ServiceCore.Model.Dto.SysRoleDto','System.Int64'),(1706931188914065423,'Update_name','ZR.ServiceCore.Model.Dto.SysRoleDto','System.String'),(1706931188914065424,'Update_time','ZR.ServiceCore.Model.Dto.SysRoleDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931188914065425,'Remark','ZR.ServiceCore.Model.Dto.SysRoleDto','System.String'),(1706931189635485696,'RoleId','ZR.ServiceCore.Model.Dto.SysRoleMenuDto','System.Int64'),(1706931189635485697,'MenuIds','ZR.ServiceCore.Model.Dto.SysRoleMenuDto','System.Collections.Generic.List`1[[System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931189635485698,'RoleName','ZR.ServiceCore.Model.Dto.SysRoleMenuDto','System.String'),(1706931189635485699,'RoleKey','ZR.ServiceCore.Model.Dto.SysRoleMenuDto','System.String'),(1706931189635485700,'Create_by','ZR.ServiceCore.Model.Dto.SysRoleMenuDto','System.String'),(1706931189635485701,'Create_time','ZR.ServiceCore.Model.Dto.SysRoleMenuDto','System.DateTime'),(1706931190319157248,'UserId','ZR.ServiceCore.Model.Dto.SysUserDto','System.Int64'),(1706931190319157249,'UserName','ZR.ServiceCore.Model.Dto.SysUserDto','System.String'),(1706931190319157250,'NickName','ZR.ServiceCore.Model.Dto.SysUserDto','System.String'),(1706931190319157251,'Email','ZR.ServiceCore.Model.Dto.SysUserDto','System.String'),(1706931190319157252,'Remark','ZR.ServiceCore.Model.Dto.SysUserDto','System.String'),(1706931190319157253,'Phonenumber','ZR.ServiceCore.Model.Dto.SysUserDto','System.String'),(1706931190319157254,'Sex','ZR.ServiceCore.Model.Dto.SysUserDto','System.Int32'),(1706931190319157255,'Password','ZR.ServiceCore.Model.Dto.SysUserDto','System.String'),(1706931191036383232,'UserId','ZR.ServiceCore.Model.Dto.SysUserQueryDto','System.Nullable`1[[System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931191036383233,'UserName','ZR.ServiceCore.Model.Dto.SysUserQueryDto','System.String'),(1706931191036383234,'NickName','ZR.ServiceCore.Model.Dto.SysUserQueryDto','System.String'),(1706931191036383235,'Email','ZR.ServiceCore.Model.Dto.SysUserQueryDto','System.String'),(1706931191036383236,'Remark','ZR.ServiceCore.Model.Dto.SysUserQueryDto','System.String'),(1706931191036383237,'Phonenumber','ZR.ServiceCore.Model.Dto.SysUserQueryDto','System.String'),(1706931191036383238,'Sex','ZR.ServiceCore.Model.Dto.SysUserQueryDto','System.Int32'),(1706931191036383239,'BeginTime','ZR.ServiceCore.Model.Dto.SysUserQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931191036383240,'EndTime','ZR.ServiceCore.Model.Dto.SysUserQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931191036383241,'Status','ZR.ServiceCore.Model.Dto.SysUserQueryDto','System.Int32'),(1706931191036383242,'DeptId','ZR.ServiceCore.Model.Dto.SysUserQueryDto','System.Int64'),(1706931191761997824,'QueryText','ZR.ServiceCore.Model.Dto.TasksQueryDto','System.String'),(1706931191761997825,'TaskType','ZR.ServiceCore.Model.Dto.TasksQueryDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931191761997826,'TriggerType','ZR.ServiceCore.Model.Dto.TasksQueryDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931191761997827,'IsStart','ZR.ServiceCore.Model.Dto.TasksQueryDto','System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931191761997828,'PageNum','ZR.ServiceCore.Model.Dto.TasksQueryDto','System.Int32'),(1706931191761997829,'PageSize','ZR.ServiceCore.Model.Dto.TasksQueryDto','System.Int32'),(1706931191761997830,'TotalNum','ZR.ServiceCore.Model.Dto.TasksQueryDto','System.Int32'),(1706931191761997831,'Sort','ZR.ServiceCore.Model.Dto.TasksQueryDto','System.String'),(1706931191761997832,'SortType','ZR.ServiceCore.Model.Dto.TasksQueryDto','System.String'),(1706931192529555456,'ID','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.String'),(1706931192529555457,'Name','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.String'),(1706931192529555458,'JobGroup','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.String'),(1706931192529555459,'Cron','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.String'),(1706931192529555460,'AssemblyName','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.String'),(1706931192529555461,'ClassName','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.String'),(1706931192529555462,'Remark','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.String'),(1706931192529555463,'BeginTime','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931192529555464,'EndTime','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931192529555465,'TriggerType','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.Int32'),(1706931192529555466,'IntervalSecond','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.Int32'),(1706931192529555467,'JobParams','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.String'),(1706931192529555468,'ApiUrl','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.String'),(1706931192529555469,'TaskType','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.Int32'),(1706931192529555470,'SqlText','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.String'),(1706931192529555471,'RequestMethod','ZR.ServiceCore.Model.Dto.TasksCreateDto','System.String'),(1706931193259364352,'Name','ZR.ServiceCore.Model.Dto.TasksLogQueryDto','System.String'),(1706931193259364353,'JobName','ZR.ServiceCore.Model.Dto.TasksLogQueryDto','System.String'),(1706931193259364354,'JobId','ZR.ServiceCore.Model.Dto.TasksLogQueryDto','System.String'),(1706931193259364355,'JobGroup','ZR.ServiceCore.Model.Dto.TasksLogQueryDto','System.String'),(1706931193259364356,'Status','ZR.ServiceCore.Model.Dto.TasksLogQueryDto','System.String'),(1706931193259364357,'BeginTime','ZR.ServiceCore.Model.Dto.TasksLogQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706931193259364358,'EndTime','ZR.ServiceCore.Model.Dto.TasksLogQueryDto','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1706941220175089664,'IsPaa','ZR.ServiceCore.Model.Article','System.String'),(1713779149828657152,'Id','ZR.ServiceCore.Model.SysBlock','System.Int64'),(1713779149832851456,'Code','ZR.ServiceCore.Model.SysBlock','System.String'),(1713779149832851457,'Name','ZR.ServiceCore.Model.SysBlock','System.String'),(1713779155381915648,'BlockId','ZR.ServiceCore.Model.SysFieldBlock','System.Int64'),(1713779155381915649,'FieldId','ZR.ServiceCore.Model.SysFieldBlock','System.Int64'),(1713779201443762176,'FullName','ZR.ServiceCore.Model.Dto.SysModelDto','System.String'),(1713779202421035008,'Create_time','ZR.ServiceCore.Model.Dto.SysNoticeDto','System.DateTime'),(1713827571268980736,'BusinessData','ZR.ServiceCore.Model.SqlDiffLog','System.String'),(1713827575995961344,'CustomSql','ZR.ServiceCore.Model.SysDictType','System.String'),(1713827582207725568,'BusinessType','ZR.ServiceCore.Model.SysOperLog','System.Int32'),(1713827582207725569,'BusinessTypes','ZR.ServiceCore.Model.SysOperLog','System.Int32[]'),(1713827586901151744,'ID','ZR.ServiceCore.Model.SysTasks','System.String'),(1713827586901151745,'Name','ZR.ServiceCore.Model.SysTasks','System.String'),(1713827586901151746,'JobGroup','ZR.ServiceCore.Model.SysTasks','System.String'),(1713827586901151747,'Cron','ZR.ServiceCore.Model.SysTasks','System.String'),(1713827586901151748,'AssemblyName','ZR.ServiceCore.Model.SysTasks','System.String'),(1713827586901151749,'ClassName','ZR.ServiceCore.Model.SysTasks','System.String'),(1713827586901151750,'RunTimes','ZR.ServiceCore.Model.SysTasks','System.Int32'),(1713827586901151751,'BeginTime','ZR.ServiceCore.Model.SysTasks','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1713827586901151752,'EndTime','ZR.ServiceCore.Model.SysTasks','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1713827586901151753,'TriggerType','ZR.ServiceCore.Model.SysTasks','System.Int32'),(1713827586901151754,'IntervalSecond','ZR.ServiceCore.Model.SysTasks','System.Int32'),(1713827586901151755,'IsStart','ZR.ServiceCore.Model.SysTasks','System.Int32'),(1713827586901151756,'JobParams','ZR.ServiceCore.Model.SysTasks','System.String'),(1713827586901151757,'LastRunTime','ZR.ServiceCore.Model.SysTasks','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1713827586901151758,'ApiUrl','ZR.ServiceCore.Model.SysTasks','System.String'),(1713827586901151759,'TaskType','ZR.ServiceCore.Model.SysTasks','System.Int32'),(1713827586901151760,'SqlText','ZR.ServiceCore.Model.SysTasks','System.String'),(1713827586901151761,'RequestMethod','ZR.ServiceCore.Model.SysTasks','System.String'),(1713827586901151762,'Create_by','ZR.ServiceCore.Model.SysTasks','System.Int64'),(1713827586901151763,'Create_name','ZR.ServiceCore.Model.SysTasks','System.String'),(1713827586901151764,'Create_time','ZR.ServiceCore.Model.SysTasks','System.DateTime'),(1713827586901151765,'Update_by','ZR.ServiceCore.Model.SysTasks','System.Int64'),(1713827586901151766,'Update_name','ZR.ServiceCore.Model.SysTasks','System.String'),(1713827586901151767,'Update_time','ZR.ServiceCore.Model.SysTasks','System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1713827586901151768,'Remark','ZR.ServiceCore.Model.SysTasks','System.String'),(1713827587689680896,'JobLogId','ZR.ServiceCore.Model.SysTasksLog','System.Int64'),(1713827587689680897,'JobId','ZR.ServiceCore.Model.SysTasksLog','System.String'),(1713827587689680898,'JobName','ZR.ServiceCore.Model.SysTasksLog','System.String'),(1713827587689680899,'JobGroup','ZR.ServiceCore.Model.SysTasksLog','System.String'),(1713827587689680900,'Status','ZR.ServiceCore.Model.SysTasksLog','System.String'),(1713827587689680901,'Exception','ZR.ServiceCore.Model.SysTasksLog','System.String'),(1713827587689680902,'JobMessage','ZR.ServiceCore.Model.SysTasksLog','System.String'),(1713827587689680903,'InvokeTarget','ZR.ServiceCore.Model.SysTasksLog','System.String'),(1713827587689680904,'CreateTime','ZR.ServiceCore.Model.SysTasksLog','System.DateTime'),(1713827587689680905,'Elapsed','ZR.ServiceCore.Model.SysTasksLog','System.Double'),(1713827592802537472,'BaseNameSpace','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1713827592802537473,'BusinessName','ZR.ServiceCore.Model.Generate.GenTable','System.String'),(1713827594589310976,'DisabledStr','ZR.ServiceCore.Model.Generate.GenTableColumn','System.String'),(1713827600121597952,'BaseNameSpace','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1713827600121597953,'BusinessName','ZR.ServiceCore.Model.Dto.GenTableDto','System.String'),(1713827608048832512,'RoleId','ZR.ServiceCore.Model.Dto.RoleUsersCreateDto','System.Int64'),(1713827608048832513,'UserIds','ZR.ServiceCore.Model.Dto.RoleUsersCreateDto','System.Collections.Generic.List`1[[System.Int64, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'),(1713827610150178816,'BusinessData','ZR.ServiceCore.Model.Dto.SqlDiffLogDto','System.String'),(1713827614667444224,'CustomSql','ZR.ServiceCore.Model.Dto.SysDictTypeDto','System.String'),(1713827621239918592,'BusinessType','ZR.ServiceCore.Model.Dto.SysOperLogQueryDto','System.Int32'),(1713827622171054080,'BusinessType','ZR.ServiceCore.Model.Dto.SysOperLogDto','System.Int32');
+/*!40000 ALTER TABLE `sys_field` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_field_block`
+--
+
+DROP TABLE IF EXISTS `sys_field_block`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_field_block` (
+ `blockid` bigint DEFAULT NULL,
+ `fieldid` bigint DEFAULT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_field_block`
+--
+
+LOCK TABLES `sys_field_block` WRITE;
+/*!40000 ALTER TABLE `sys_field_block` DISABLE KEYS */;
+INSERT INTO `sys_field_block` VALUES (1,1706931137387040768);
+/*!40000 ALTER TABLE `sys_field_block` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_file`
+--
+
+DROP TABLE IF EXISTS `sys_file`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_file` (
+ `id` bigint NOT NULL,
+ `realName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '文件真实名',
+ `fileName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '文件名',
+ `fileUrl` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '文件存储地址',
+ `storePath` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '仓库位置',
+ `accessUrl` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '访问路径',
+ `fileSize` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '文件大小',
+ `fileType` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '文件类型',
+ `fileExt` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '文件扩展名',
+ `create_by` bigint DEFAULT NULL COMMENT '创建者',
+ `create_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '创建者名称',
+ `create_time` datetime DEFAULT NULL COMMENT '上传时间',
+ `storeType` int DEFAULT NULL COMMENT '存储类型',
+ PRIMARY KEY (`id`) USING BTREE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_file`
+--
+
+LOCK TABLES `sys_file` WRITE;
+/*!40000 ALTER TABLE `sys_file` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_file` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_login_limit`
+--
+
+DROP TABLE IF EXISTS `sys_login_limit`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_login_limit` (
+ `id` bigint NOT NULL COMMENT 'id',
+ `username` varchar(200) DEFAULT NULL COMMENT '用户名',
+ `errorcount` int DEFAULT NULL COMMENT '出错次数',
+ `errortime` datetime DEFAULT NULL COMMENT '出错时间',
+ `ip` varchar(100) DEFAULT NULL COMMENT 'IP',
+ `flag` varchar(1) DEFAULT NULL COMMENT '启用标志(1代表启用,0代表停用)',
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='系统登录限制';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_login_limit`
+--
+
+LOCK TABLES `sys_login_limit` WRITE;
+/*!40000 ALTER TABLE `sys_login_limit` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_login_limit` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_logininfor`
+--
+
+DROP TABLE IF EXISTS `sys_logininfor`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_logininfor` (
+ `infoId` bigint NOT NULL AUTO_INCREMENT COMMENT '访问ID',
+ `userName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '用户账号',
+ `ipaddr` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '登录IP地址',
+ `loginLocation` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '登录地点',
+ `browser` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '浏览器类型',
+ `os` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '操作系统',
+ `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '登录状态(0成功 1失败)',
+ `msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '提示消息',
+ `loginTime` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT '访问时间',
+ PRIMARY KEY (`infoId`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='系统访问记录';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_logininfor`
+--
+
+LOCK TABLES `sys_logininfor` WRITE;
+/*!40000 ALTER TABLE `sys_logininfor` DISABLE KEYS */;
+INSERT INTO `sys_logininfor` VALUES (17,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','1','用户名或密码错误','2023-09-21 23:49:02'),(18,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-09-22 00:01:19'),(19,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-09-22 00:02:05'),(20,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-09-22 16:35:30'),(21,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-09-22 16:40:03'),(22,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-09-22 16:41:05'),(23,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-09-22 16:42:24'),(24,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-09-25 09:47:33'),(25,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-09-25 09:50:30'),(26,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-09-25 12:56:01'),(27,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-09-25 23:39:34'),(28,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-09-26 09:51:19'),(29,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-09-26 21:40:47'),(30,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Chrome 117.0.0','Windows 10','0','登录成功','2023-09-27 09:09:20'),(31,'user','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Chrome 117.0.0','Windows 10','0','登录成功','2023-09-27 16:00:56'),(32,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Chrome 117.0.0','Windows 10','0','登录成功','2023-09-27 16:01:26'),(33,'user','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Chrome 117.0.0','Windows 10','0','登录成功','2023-09-27 16:02:02'),(34,'user','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Chrome 117.0.0','Windows 10','0','登录成功','2023-09-27 16:09:59'),(35,'user','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Chrome 117.0.0','Windows 10','0','登录成功','2023-09-27 16:12:40'),(36,'user','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Chrome 117.0.0','Windows 10','0','登录成功','2023-09-27 16:14:34'),(37,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Chrome 117.0.0','Windows 10','0','登录成功','2023-09-27 16:16:04'),(38,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Chrome 117.0.0','Windows 10','0','登录成功','2023-09-27 16:17:39'),(39,'user','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Chrome 117.0.0','Windows 10','0','登录成功','2023-09-27 16:17:53'),(40,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Chrome 117.0.0','Windows 10','0','登录成功','2023-09-27 16:21:44'),(41,'user','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Chrome 117.0.0','Windows 10','0','登录成功','2023-09-27 16:22:33'),(42,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-09-28 11:05:47'),(43,'user','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-10-07 09:51:21'),(44,'user','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-10-07 15:31:55'),(45,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-10-07 15:42:21'),(46,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-10-08 08:38:51'),(47,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-10-09 10:35:32'),(48,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-10-10 23:28:48'),(49,'admin','127.0.0.1','0-内网IP-内网IP','Other Other Other','Other','0','登录成功','2023-10-11 14:41:03'),(50,'admin','127.0.0.1','0-内网IP-内网IP','Other Other Other','Other','0','登录成功','2023-10-11 14:41:20'),(51,'admin','127.0.0.1','0-内网IP-内网IP','Other Other Other','Other','0','登录成功','2023-10-11 14:42:52'),(52,'admin','127.0.0.1','0-内网IP-内网IP','Other Other Other','Other','0','登录成功','2023-10-11 14:51:18'),(53,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-10-11 14:52:03'),(54,'admin','127.0.0.1','0-内网IP-内网IP','Other Other Other','Other','0','登录成功','2023-10-11 16:37:32'),(55,'admin','127.0.0.1','0-内网IP-内网IP','Other Other Other','Other','0','登录成功','2023-10-11 16:41:02'),(56,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-10-13 15:48:01'),(57,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-10-13 15:48:08'),(58,'admin','127.0.0.1','0-内网IP-内网IP','Windows 10 Other Edge 117.0.2045','Windows 10','0','登录成功','2023-10-13 15:51:40');
+/*!40000 ALTER TABLE `sys_logininfor` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_menu`
+--
+
+DROP TABLE IF EXISTS `sys_menu`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_menu` (
+ `menuId` bigint NOT NULL AUTO_INCREMENT COMMENT '菜单ID',
+ `menuName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '菜单名称',
+ `parentId` bigint DEFAULT '0' COMMENT '父菜单ID',
+ `orderNum` int DEFAULT '0' COMMENT '显示顺序',
+ `path` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '路由地址',
+ `component` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '组件路径',
+ `isFrame` int DEFAULT '0' COMMENT '是否外链(0 否 1 是)',
+ `isCache` int DEFAULT '0' COMMENT '是否缓存(0缓存 1不缓存)',
+ `menuType` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '菜单类型(M目录 C菜单 F按钮 L链接)',
+ `visible` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '菜单状态(0显示 1隐藏)',
+ `status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '菜单状态(0正常 1停用)',
+ `perms` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '权限标识',
+ `icon` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '#' COMMENT '菜单图标',
+ `create_by` bigint DEFAULT NULL COMMENT '创建者',
+ `create_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '创建者名称',
+ `create_time` datetime DEFAULT NULL COMMENT '创建时间',
+ `update_by` bigint DEFAULT NULL COMMENT '更新者',
+ `update_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '更新者名称',
+ `update_time` datetime DEFAULT NULL COMMENT '更新时间',
+ `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '备注',
+ `menuName_key` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '菜单名翻译字典名',
+ PRIMARY KEY (`menuId`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=2020 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='菜单权限表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_menu`
+--
+
+LOCK TABLES `sys_menu` WRITE;
+/*!40000 ALTER TABLE `sys_menu` DISABLE KEYS */;
+INSERT INTO `sys_menu` VALUES (1,'系统管理',0,1,'system',NULL,0,0,'M','0','0','','system',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'系统管理目录','menu.system'),(2,'系统监控',0,2,'monitor',NULL,0,0,'M','0','0','','monitor',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'系统监控目录','menu.monitoring'),(3,'系统工具',0,3,'tool',NULL,0,0,'M','0','0','','tool',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'系统工具目录','menu.systemTools'),(6,'控制台',0,0,'dashboard','index_v1',0,0,'C','0','0','','dashboard',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'','menu.dashboard'),(100,'用户管理',1,1,'user','system/user/index',0,0,'C','0','0','system:user:list','user',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'用户管理菜单','menu.systemUser'),(101,'角色管理',1,2,'role','system/role/index',0,0,'C','0','0','system:role:list','peoples',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'角色管理菜单','menu.systemRole'),(102,'菜单管理',1,3,'menu','system/menu/index',0,0,'C','0','0','system:menu:list','tree-table',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'菜单管理菜单','menu.systemMenu'),(103,'部门管理',1,4,'dept','system/dept/index',0,0,'C','0','0','system:dept:list','tree',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'部门管理菜单','menu.systemDept'),(104,'岗位管理',1,5,'post','system/post/index',0,0,'C','0','0','system:post:list','post',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'岗位管理菜单','menu.systemPost'),(105,'字典管理',1,6,'dict','system/dict/index',0,0,'C','0','0','system:dict:list','dict',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'','menu.systemDic'),(106,'角色分配',1,2,'roleusers','system/roleusers/index',0,0,'C','1','0','system:roleusers:list','people',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,NULL,''),(107,'参数设置',1,8,'config','system/config/index',0,0,'C','0','0','system:config:list','edit',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'','menu.systemParam'),(108,'日志管理',1,10,'log','',0,0,'M','0','0','','log',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'日志管理菜单','menu.systemLog'),(109,'通知公告',1,9,'notice','system/notice/index',0,0,'C','0','0','system:notice:list','message',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'通知公告菜单','menu.systemNotice'),(110,'定时任务',2,10,'job','monitor/job/index',0,0,'C','0','0','','job',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'定时任务菜单','menu.timedTask'),(111,'在线用户',2,10,'onlineusers','monitor/onlineuser/index',0,0,'C','0','0','','online',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'在线用户','layout.onlineUsers'),(112,'服务监控',2,11,'server','monitor/server/index',0,0,'C','0','0','monitor:server:list','server',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'服务监控菜单','menu.serviceMonitor'),(113,'缓存监控',2,12,'cache','monitor/cache/index',0,0,'C','1','1','monitor:cache:list','redis',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'缓存监控菜单','menu.cacheMonitor'),(114,'表单构建',3,13,'build','tool/build/index',0,0,'C','0','0','tool:build:list','build',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'表单构建菜单','menu.formBuild'),(115,'代码生成',3,14,'gen','tool/gen/index',0,0,'C','0','0','tool:gen:list','code',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'代码生成菜单','menu.codeGeneration'),(116,'系统接口',3,15,'swagger','tool/swagger/index',0,0,'C','0','0','tool:swagger:list','swagger',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'系统接口菜单','menu.systemInterface'),(117,'发送邮件',3,16,'sendEmail','tool/email/sendEmail',0,0,'C','0','0','tool:email:send','email',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'发送邮件菜单','menu.sendEmail'),(118,'文章管理',3,18,'article',NULL,0,0,'M','0','0',NULL,'documentation',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,NULL,'menu.systemArticle'),(119,'文章列表',118,1,'index','system/article/manager',0,0,'C','0','0','system:article:list','list',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,NULL,'menu.articleList'),(500,'操作日志',108,1,'operlog','monitor/operlog/index',0,0,'C','0','0','monitor:operlog:list','form',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'操作日志菜单','menu.operLog'),(501,'登录日志',108,2,'logininfor','monitor/logininfor/index',0,0,'C','0','0','monitor:logininfor:list','logininfor',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'登录日志菜单','menu.loginLog'),(1001,'用户查询',100,1,'','',0,0,'F','0','0','system:user:query','',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'',NULL),(1002,'用户添加',100,2,'','',0,0,'F','0','0','system:user:add','',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'',NULL),(1003,'用户修改',100,3,'','',0,0,'F','0','0','system:user:edit','',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,NULL,NULL),(1004,'用户删除',100,4,'','',0,0,'F','0','0','system:user:remove','',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'',NULL),(1005,'用户导出',100,5,'','',0,0,'F','0','0','system:user:export','#',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,'',NULL),(1006,'用户导入',100,6,'','',0,0,'F','0','0','system:user:import','#',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,'',NULL),(1007,'重置密码',100,7,'','',0,0,'F','0','0','system:user:resetPwd','#',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,'',NULL),(1008,'角色查询',101,1,'','',0,0,'F','0','0','system:role:query','#',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,'',NULL),(1009,'角色新增',101,2,'','',0,0,'F','0','0','system:role:add','#',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,'',NULL),(1010,'角色修改',101,3,'','',0,0,'F','0','0','system:role:edit','#',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,'',NULL),(1011,'角色删除',101,4,'','',0,0,'F','0','0','system:role:remove','#',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,'',NULL),(1012,'角色授权',101,5,'','',0,0,'F','0','0','system:role:authorize','#',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,'',NULL),(1013,'菜单查询',102,1,'','',0,0,'F','0','0','system:menu:query','#',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,'',NULL),(1014,'菜单新增',102,2,'','',0,0,'F','0','0','system:menu:add','#',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,'',NULL),(1015,'菜单修改',102,3,'','',0,0,'F','0','0','system:menu:edit','#',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,'',NULL),(1016,'菜单删除',102,4,'','',0,0,'F','0','0','system:menu:remove','#',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,'',NULL),(1017,'修改排序',102,5,'','',0,0,'F','0','0','system:menu:changeSort','',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1018,'部门查询',103,1,'','',0,0,'F','0','0','system:dept:query','',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1019,'部门新增',103,2,'','',0,0,'F','0','0','system:dept:add',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1020,'部门修改',103,3,'','',0,0,'F','0','0','system:dept:update',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1021,'部门删除',103,4,'','',0,0,'F','0','0','system:dept:remove',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1022,'岗位查询',104,1,'','',0,0,'F','0','0','system:post:list',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1023,'岗位添加',104,2,'','',0,0,'F','0','0','system:post:add',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1024,'岗位删除',104,3,'','',0,0,'F','0','0','system:post:remove',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1025,'岗位编辑',104,4,'','',0,0,'F','0','0','system:post:edit','',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1026,'字典新增',105,1,'','',0,0,'F','0','0','system:dict:add',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1027,'字典修改',105,2,'','',0,0,'F','0','0','system:dict:edit',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1028,'字典删除',105,3,'','',0,0,'F','0','0','system:dict:remove',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1029,'新增用户',106,2,'','',0,0,'F','0','0','system:roleusers:add',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1030,'删除用户',106,3,'','',0,0,'F','0','0','system:roleusers:remove',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1031,'字典查询',105,1,'','',0,0,'F','0','0','system:dict:query',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1032,'任务查询',110,1,'#',NULL,0,0,'F','0','0','monitor:job:list','#',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,'',NULL),(1033,'任务新增',110,2,'#',NULL,0,0,'F','0','0','monitor:job:add','',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1034,'任务删除',110,3,'#',NULL,0,0,'F','0','0','monitor:job:delete','',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1035,'任务修改',110,4,'#',NULL,0,0,'F','0','0','monitor:job:edit','',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1036,'任务启动',110,5,'#',NULL,0,0,'F','0','0','monitor:job:start','',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1037,'任务运行',110,7,'#',NULL,0,0,'F','0','0','monitor:job:run',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1038,'任务停止',110,8,'#',NULL,0,0,'F','0','0','monitor:job:stop',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1039,'任务日志',2,0,'job/log','monitor/job/log',0,0,'C','1','0','monitor:job:query','log',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1040,'任务导出',110,10,'#',NULL,0,0,'F','0','0','monitor:job:export',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1041,'操作查询',500,1,'#',NULL,0,0,'F','0','0','monitor:operlog:query','',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1042,'操作删除',500,2,'#',NULL,0,0,'F','0','0','monitor:operlog:remove','',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1043,'操作日志导出',500,3,'#',NULL,0,0,'F','0','0','monitor:operlog:export','',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1044,'登录查询',501,1,'#',NULL,0,0,'F','0','0','monitor:logininfor:query','',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1045,'登录删除',501,1,'#',NULL,0,0,'F','0','0','monitor:logininfor:remove','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1046,'登录日志导出',501,1,'#',NULL,0,0,'F','0','0','monitor:logininfor:export','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1047,'发布文章',3,2,'/article/publish','system/article/publish',0,0,'C','1','0','system:article:publish','log',NULL,'','2023-09-21 14:32:17',NULL,'',NULL,NULL,''),(1048,'文章新增',118,3,'#',NULL,0,0,'F','0','0','system:article:add','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1049,'文章修改',118,4,'#',NULL,0,0,'F','0','0','system:article:update','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1050,'文章删除',118,5,'#',NULL,0,0,'F','0','0','system:article:delete','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1051,'查询公告',109,1,'#',NULL,0,0,'F','0','0','system:notice:query','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1052,'新增公告',109,2,'#',NULL,0,0,'F','0','0','system:notice:add','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1053,'删除公告',109,3,'#',NULL,0,0,'F','0','0','system:notice:delete','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1054,'修改公告',109,4,'#',NULL,0,0,'F','0','0','system:notice:update','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1055,'导出公告',109,5,'#',NULL,0,0,'F','0','0','system:notice:export','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1060,'生成修改',3,1,'/gen/editTable','tool/gen/editTable',0,0,'C','1','0','tool:gen:edit','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1061,'生成查询',115,1,'#',NULL,0,0,'F','0','0','tool:gen:query','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1062,'生成删除',115,1,'#',NULL,0,0,'F','0','0','tool:gen:remove','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1063,'导入代码',115,1,'#',NULL,0,0,'F','0','0','tool:gen:import','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1064,'生成代码',115,1,'#',NULL,0,0,'F','0','0','tool:gen:code','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1065,'预览代码',115,1,'#',NULL,0,0,'F','0','0','tool:gen:preview','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,NULL,NULL),(1070,'岗位导出',104,4,'','',0,0,'F','0','0','system:post:export','',NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(1071,'字典导出',105,3,'','',0,0,'F','0','0','system:dict:export',NULL,NULL,'','2023-09-21 14:32:18',NULL,'',NULL,NULL,NULL),(2000,'文件存储',3,17,'file','tool/file/index',0,0,'C','0','0','tool:file:list','upload',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,'文件存储菜单','menu.fileStorage'),(2001,'查询',2000,1,'#',NULL,0,0,'F','0','0','tool:file:query','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2002,'新增',2000,2,'#',NULL,0,0,'F','0','0','tool:file:add','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2003,'删除',2000,3,'#',NULL,0,0,'F','0','0','tool:file:delete','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2004,'修改',2000,4,'#',NULL,0,0,'F','0','0','tool:file:update','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2005,'导出',2000,5,'#',NULL,0,0,'F','0','0','tool:file:export','',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2006,'多语言配置',1,20,'CommonLang','system/commonLang/index',0,0,'C','0','0','system:lang:list','language',NULL,'system','2023-09-21 14:32:19',NULL,'',NULL,'','menu.systemLang'),(2007,'查询',2006,1,'#',NULL,0,0,'F','0','0','system:lang:query','',NULL,'system','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2008,'新增',2006,2,'#',NULL,0,0,'F','0','0','system:lang:add','',NULL,'system','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2009,'删除',2006,3,'#',NULL,0,0,'F','0','0','system:lang:delete','',NULL,'system','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2010,'修改',2006,4,'#',NULL,0,0,'F','0','0','system:lang:edit','',NULL,'system','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2011,'文章目录',118,999,'ArticleCategory','system/article/articleCategory',0,0,'C','0','0','articlecategory:list','tree-table',NULL,'system','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2012,'查询',2011,1,'#',NULL,0,0,'F','0','0','articlecategory:query','',NULL,'system','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2013,'新增',2011,2,'#',NULL,0,0,'F','0','0','articlecategory:add','',NULL,'system','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2014,'删除',2011,3,'#',NULL,0,0,'F','0','0','articlecategory:delete','',NULL,'system','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2015,'修改',2011,4,'#',NULL,0,0,'F','0','0','articlecategory:edit','',NULL,'system','2023-09-21 14:32:19',NULL,'',NULL,'',NULL),(2016,'速率限制',2,13,'ipratelimit','monitor/ipratelimit/index',0,0,'C','0','0',NULL,'dashboard',1,'管理员','2023-09-22 14:41:22',NULL,'',NULL,NULL,NULL),(2017,'速率限制日志',2,14,'ipratelimitlog','monitor/ipratelimit/ipratelimitlog/index',0,0,'C','1','0',NULL,'',1,'管理员','2023-09-22 14:41:54',NULL,'',NULL,NULL,NULL),(2018,'字段分配',1,2,'rolefields','system/rolefields/index',0,0,'C','1','0','','build',1,'管理员','2023-09-25 14:25:32',NULL,'',NULL,NULL,NULL),(2019,'图标icon',0,4,'icons','components/icons/index',0,0,'C','0','0',NULL,'icon1',1,'管理员','2023-09-25 14:54:55',NULL,'',NULL,NULL,NULL);
+/*!40000 ALTER TABLE `sys_menu` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_notice`
+--
+
+DROP TABLE IF EXISTS `sys_notice`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_notice` (
+ `notice_id` bigint NOT NULL COMMENT '公告ID',
+ `notice_title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '公告标题',
+ `notice_type` int NOT NULL COMMENT '公告类型(1通知 2公告)',
+ `notice_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '公告内容',
+ `status` int DEFAULT '0' COMMENT '公告状态(0正常 1关闭)',
+ `create_by` bigint DEFAULT NULL COMMENT '创建者',
+ `create_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '创建者名称',
+ `create_time` datetime DEFAULT NULL COMMENT '创建时间',
+ `update_by` bigint DEFAULT NULL COMMENT '更新者',
+ `update_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '更新者名称',
+ `update_time` datetime DEFAULT NULL COMMENT '更新时间',
+ `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
+ PRIMARY KEY (`notice_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='通知公告表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_notice`
+--
+
+LOCK TABLES `sys_notice` WRITE;
+/*!40000 ALTER TABLE `sys_notice` DISABLE KEYS */;
+INSERT INTO `sys_notice` VALUES (1,'22',1,'`22
',0,NULL,'admin','2023-09-22 00:02:16',NULL,'',NULL,NULL),(1707232004640215040,'232',1,'2332
',0,1,'管理员','2023-09-28 11:13:23',NULL,'',NULL,NULL);
+/*!40000 ALTER TABLE `sys_notice` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_notice_log`
+--
+
+DROP TABLE IF EXISTS `sys_notice_log`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_notice_log` (
+ `noticeid` bigint DEFAULT NULL COMMENT '公告ID',
+ `userid` bigint DEFAULT NULL COMMENT '用户ID',
+ `status` varchar(1) CHARACTER SET utf8mb3 DEFAULT NULL COMMENT '公告状态'
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='通知公告日志表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_notice_log`
+--
+
+LOCK TABLES `sys_notice_log` WRITE;
+/*!40000 ALTER TABLE `sys_notice_log` DISABLE KEYS */;
+INSERT INTO `sys_notice_log` VALUES (1,1,'1'),(1707232004640215040,1,'1'),(1707232004640215040,2,'1'),(1,2,'1');
+/*!40000 ALTER TABLE `sys_notice_log` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_oper_log`
+--
+
+DROP TABLE IF EXISTS `sys_oper_log`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_oper_log` (
+ `operId` bigint NOT NULL AUTO_INCREMENT COMMENT '日志主键',
+ `title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '模块标题',
+ `businessType` int DEFAULT '0' COMMENT '业务类型(0其它 1新增 2修改 3删除)',
+ `method` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '方法名称',
+ `requestMethod` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '请求方式',
+ `operatorType` int DEFAULT '0' COMMENT '操作类别(0其它 1后台用户 2手机端用户)',
+ `operName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '操作人员',
+ `deptName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '部门名称',
+ `operUrl` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '请求URL',
+ `operIP` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '主机地址',
+ `operLocation` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '操作地点',
+ `operParam` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '请求参数',
+ `jsonResult` varchar(5000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '返回参数',
+ `status` int DEFAULT '0' COMMENT '操作状态(0正常 1异常)',
+ `errorMsg` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '错误消息',
+ `operTime` datetime DEFAULT NULL COMMENT '操作时间',
+ `elapsed` bigint DEFAULT NULL COMMENT '请求用时',
+ PRIMARY KEY (`operId`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=113 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='操作日志记录';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_oper_log`
+--
+
+LOCK TABLES `sys_oper_log` WRITE;
+/*!40000 ALTER TABLE `sys_oper_log` DISABLE KEYS */;
+INSERT INTO `sys_oper_log` VALUES (1,'登录',0,'','POST',0,'','','/login','127.0.0.1','0 内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"3sr5\",\"uuid\":\"456c83d6a9e7407ba79f52d264bb49cf\"}','{\r\n \"code\": 105,\r\n \"msg\": \"用户名或密码错误\"\r\n}',1,'用户名或密码错误','2023-09-21 23:49:09',0),(2,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"khoa\",\"uuid\":\"68af37f400584afd9a9cc052509fcc25\"}','{ \"code\": 103, \"msg\": \"验证码错误\"}',0,'','2023-09-22 00:01:14',0),(3,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"hpzb\",\"uuid\":\"52464413b22f4c62b63eae9bbb119817\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIkF1ZGllbmNlIjoiWlJBZG1pbi5ORVQiLCJJc3N1ZXIiOiJaUkFkbWluLk5FVCIsIm5iZiI6MTY5NTMxMjA3OSwiZXhwIjoxNjk1Mzk4NDc5LCJpYXQiOjE2OTUzMTIwNzksImlzcyI6IlpSQWRtaW4uTkVUIiwiYXVkIjoiWlJBZG1pbi5ORVQifQ.KH3XeVsKUYn25bXiQTytFjNRzuAPzj00bEgwRV04Ymg\"}',0,'','2023-09-22 00:01:20',0),(4,'注销',0,'SysLogin.LogOut()','POST',0,'admin','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"admin\", \"id\": 1 }}',0,'','2023-09-22 00:01:59',0),(5,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"xgrg\",\"uuid\":\"b905826a954c491a8b97a9d614b0d7c0\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIkF1ZGllbmNlIjoiWlJBZG1pbi5ORVQiLCJJc3N1ZXIiOiJaUkFkbWluLk5FVCIsIm5iZiI6MTY5NTMxMjEyNSwiZXhwIjoxNjk1Mzk4NTI1LCJpYXQiOjE2OTUzMTIxMjUsImlzcyI6IlpSQWRtaW4uTkVUIiwiYXVkIjoiWlJBZG1pbi5ORVQifQ.A-28lhgxnRyGxTh_kiybwlzAUKGrs2XTDj4p3FirpTM\"}',0,'','2023-09-22 00:02:05',0),(6,'发布通告',1,'SysNotice.AddSysNotice()','POST',0,'admin','','/system/notice','127.0.0.1','0-内网IP-内网IP','{\"noticeTitle\":\"22\",\"noticeType\":1,\"noticeContent\":\"`22
\",\"status\":0}','{ \"code\": 200, \"msg\": \"success\", \"data\": 1}',0,'','2023-09-22 00:02:16',0),(7,'发送通知公告',0,'SysNotice.SendNotice()','PUT',0,'admin','','/system/notice/send/1','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"noticeId\": 1, \"noticeTitle\": \"22\", \"noticeType\": 1, \"noticeContent\": \"`22
\", \"status\": 0, \"createBy\": \"admin\", \"createTime\": \"2023-09-22 00:02:16\", \"updateTime\": null, \"remark\": null }}',0,'','2023-09-22 00:02:17',0),(8,'发送通知公告',0,'SysNotice.SendNotice()','PUT',0,'admin','','/system/notice/send/1','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"noticeId\": 1, \"noticeTitle\": \"22\", \"noticeType\": 1, \"noticeContent\": \"`22
\", \"status\": 0, \"createBy\": \"admin\", \"createTime\": \"2023-09-22 00:02:16\", \"updateTime\": null, \"remark\": null }}',0,'','2023-09-22 00:02:22',0),(9,'注销',0,'SysLogin.LogOut()','POST',0,'admin','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"admin\", \"id\": 1 }}',0,'','2023-09-22 00:57:45',0),(10,'菜单管理',1,'SysMenu.MenuAdd()','PUT',0,'admin','','/system/menu/add','127.0.0.1','0-内网IP-内网IP','{\"parentId\":2,\"menuName\":\"速率限制\",\"icon\":\"dashboard\",\"menuType\":\"C\",\"orderNum\":13,\"isFrame\":\"0\",\"isCache\":\"0\",\"visible\":\"0\",\"status\":\"0\",\"component\":\"monitor/ipratelimit/index\",\"path\":\"ipratelimit\"}','{ \"code\": 200, \"msg\": \"success\"}',0,'','2023-09-22 14:41:23',0),(11,'菜单管理',1,'SysMenu.MenuAdd()','PUT',0,'admin','','/system/menu/add','127.0.0.1','0-内网IP-内网IP','{\"parentId\":2,\"menuName\":\"速率限制日志\",\"menuType\":\"C\",\"orderNum\":14,\"isFrame\":\"0\",\"isCache\":\"0\",\"visible\":\"1\",\"status\":\"0\",\"component\":\"monitor/ipratelimit/ipratelimitlog/index\",\"path\":\"ipratelimitlog\"}','{ \"code\": 200, \"msg\": \"success\"}',0,'','2023-09-22 14:41:54',0),(12,'',0,'','GET',0,'admin','','/system/tasks/list','127.0.0.1','0 内网IP','?PageNum=1&pageSize=10&orderby=&sort=','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'Unknown column \'Create_name\' in \'field list\'','2023-09-22 15:35:52',0),(13,'',0,'','GET',0,'admin','','/system/tasks/list','127.0.0.1','0 内网IP','?PageNum=1&pageSize=10&orderby=&sort=','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'Unknown column \'Create_name\' in \'field list\'','2023-09-22 15:36:02',0),(14,'注销',0,'SysLogin.LogOut()','POST',0,'admin','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"admin\", \"id\": 1 }}',0,'','2023-09-22 16:35:18',0),(15,'登录',0,'','POST',0,'','','/login','127.0.0.1','0 内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"apng\",\"uuid\":\"2f3d92489dce4d2ca388b9e06a251ed6\"}','{\r\n \"code\": 101,\r\n \"msg\": \"Value cannot be null. (Parameter \'value\')\"\r\n}',1,'Value cannot be null. (Parameter \'value\')','2023-09-22 16:39:45',0),(16,'登录',0,'','POST',0,'','','/login','127.0.0.1','0 内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"46cn\",\"uuid\":\"2e77fe9cdc4543fcbffa6dc184802efb\"}','{\r\n \"code\": 101,\r\n \"msg\": \"Value cannot be null. (Parameter \'value\')\"\r\n}',1,'Value cannot be null. (Parameter \'value\')','2023-09-22 16:40:54',0),(17,'登录',0,'','POST',0,'','','/login','127.0.0.1','0 内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"uukq\",\"uuid\":\"bc832919e8144e548edb4c542986f0d7\"}','{\r\n \"code\": 101,\r\n \"msg\": \"Value cannot be null. (Parameter \'value\')\"\r\n}',1,'Value cannot be null. (Parameter \'value\')','2023-09-22 16:42:44',0),(18,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"qpwn\",\"uuid\":\"e0d99098d3e749e0a33f82732ef7ea51\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1NjA2NjMwLCJleHAiOjE2OTU2OTMwMzAsImlhdCI6MTY5NTYwNjYzMCwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.j_aMRb0gUQzu9x2m76LKcaTmzLSKqHde82-2YXXqwBE\"}',0,'','2023-09-25 09:50:31',0),(19,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"gas0\",\"uuid\":\"6964e39e82c741beba65ee8d4bab3873\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1NjE3NzYxLCJleHAiOjE2OTU3MDQxNjEsImlhdCI6MTY5NTYxNzc2MSwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.QPJBuPWMkFEionckHnfxwse5NvPegWHpUYmWvGoDT58\"}',0,'','2023-09-25 12:56:01',0),(20,'菜单管理',1,'SysMenu.MenuAdd()','PUT',0,'admin','','/system/menu/add','127.0.0.1','0-内网IP-内网IP','{\"parentId\":1,\"menuName\":\"字段分配\",\"icon\":\"build\",\"menuType\":\"C\",\"orderNum\":2,\"isFrame\":\"0\",\"isCache\":\"0\",\"visible\":\"1\",\"status\":\"0\",\"component\":\"system/rolefields/index\",\"path\":\"rolefields\",\"perms\":\"\"}','{ \"code\": 200, \"msg\": \"success\"}',0,'','2023-09-25 14:25:32',0),(21,'菜单管理',1,'SysMenu.MenuAdd()','PUT',0,'admin','','/system/menu/add','127.0.0.1','0-内网IP-内网IP','{\"parentId\":0,\"menuName\":\"图标icon\",\"icon\":\"icon1\",\"menuType\":\"C\",\"orderNum\":4,\"isFrame\":\"0\",\"isCache\":\"0\",\"visible\":\"0\",\"status\":\"0\",\"path\":\"icons\",\"component\":\"components/icons/index\"}','{ \"code\": 200, \"msg\": \"success\"}',0,'','2023-09-25 14:54:55',0),(22,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"e9dy\",\"uuid\":\"7ef0b0ddfa764162804411ca6be6fb3c\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1NjU2Mzc0LCJleHAiOjE2OTU3NDI3NzQsImlhdCI6MTY5NTY1NjM3NCwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.k2Kpcm40D6h82aa42joH6FXBk1q4Lrj1p2aHjYHc--o\"}',0,'','2023-09-25 23:39:35',0),(23,'注销',0,'SysLogin.LogOut()','POST',0,'','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": null, \"id\": 0 }}',0,'','2023-09-26 09:51:10',0),(24,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"e6dm\",\"uuid\":\"c9df3c31bdab4d338e77f1870e21eb9e\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1NjkzMDc5LCJleHAiOjE2OTU3Nzk0NzksImlhdCI6MTY5NTY5MzA3OSwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.MHw-Ms9wHMa0oZnga3IL0CIllOPxiaXo3r2LyYHpQTM\"}',0,'','2023-09-26 09:51:19',0),(25,'',0,'','GET',0,'admin','','/system/field/getModelList','127.0.0.1','0 内网IP','','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'Self referencing loop detected for property \'manifestModule\' with type \'System.Reflection.RuntimeModule\'. Path \'data[0].properties[0].module.assembly\'.','2023-09-26 14:24:19',0),(26,'',0,'','GET',0,'admin','','/system/field/getModelList','127.0.0.1','0 内网IP','','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'Self referencing loop detected for property \'manifestModule\' with type \'System.Reflection.RuntimeModule\'. Path \'data[0].properties[0].module.assembly\'.','2023-09-26 14:24:30',0),(27,'',0,'','GET',0,'admin','','/system/field/getModelList','127.0.0.1','0 内网IP','','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'','2023-09-26 16:09:55',0),(28,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"enps\",\"uuid\":\"1d08ce7a6b924e439681338d2592620e\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1NzM1NjQ3LCJleHAiOjE2OTU4MjIwNDcsImlhdCI6MTY5NTczNTY0NywiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.3pdkN1jmor_Fyc5TzXYdXn_ZpEx1k9FXIf81q5k6MwY\"}',0,'','2023-09-26 21:40:48',0),(29,'',0,'','GET',0,'admin','','/system/field/getFields','127.0.0.1','0 内网IP','?fullName=ZR.ServiceCore.Model.IpRateLimitLog','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'Unable to resolve service for type \'ZR.ServiceCore.Services.IService.ISysRoleFieldService\' while attempting to activate \'ZR.Admin.WebApi.Controllers.System.SysFieldController\'.','2023-09-26 22:12:32',0),(30,'',0,'','GET',0,'admin','','/system/field/getFields','127.0.0.1','0 内网IP','?fullName=ZR.ServiceCore.Model.ArticleCategory','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'Unable to resolve service for type \'ZR.ServiceCore.Services.IService.ISysRoleFieldService\' while attempting to activate \'ZR.Admin.WebApi.Controllers.System.SysFieldController\'.','2023-09-26 22:12:33',0),(31,'注销',0,'SysLogin.LogOut()','POST',0,'','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": null, \"id\": 0 }}',0,'','2023-09-27 09:09:11',0),(32,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"myxv\",\"uuid\":\"93828fb6ffd8497fb39d74d42c1bd192\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1Nzc2OTYwLCJleHAiOjE2OTU4NjMzNjAsImlhdCI6MTY5NTc3Njk2MCwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.CiDgr7E1miDSqYGKdZvbfMT0wZcCrcVf6OQAkphmxDg\"}',0,'','2023-09-27 09:09:21',0),(33,'',0,'','PUT',0,'admin','','/system/field/addOrUpdateSysRoleField/2','127.0.0.1','0 内网IP','[{\"id\":\"1706589411656994816\",\"fieldName\":\"Cid\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Int32\",\"isClass\":\"0\",\"isPermission\":true},{\"id\":\"1706589411656994817\",\"fieldName\":\"Title\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.String\",\"isClass\":\"1\",\"isPermission\":false},{\"id\":\"1706589411656994818\",\"fieldName\":\"CreateTime\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]\",\"isClass\":\"0\",\"isPermission\":true},{\"id\":\"1706589411656994819\",\"fieldName\":\"UpdateTime\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]\",\"isClass\":\"0\",\"isPermission\":false},{\"id\":\"1706589411656994820\",\"fieldName\":\"Content\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.String\",\"isClass\":\"1\",\"isPermission\":f','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 9','2023-09-27 09:24:23',0),(34,'',0,'','PUT',0,'admin','','/system/field/addOrUpdateSysRoleField/2','127.0.0.1','0 内网IP','[{\"id\":\"1706589411656994816\",\"fieldName\":\"Cid\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Int32\",\"isClass\":\"0\",\"isPermission\":true},{\"id\":\"1706589411656994817\",\"fieldName\":\"Title\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.String\",\"isClass\":\"1\",\"isPermission\":false},{\"id\":\"1706589411656994818\",\"fieldName\":\"CreateTime\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]\",\"isClass\":\"0\",\"isPermission\":true},{\"id\":\"1706589411656994819\",\"fieldName\":\"UpdateTime\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]\",\"isClass\":\"0\",\"isPermission\":false},{\"id\":\"1706589411656994820\",\"fieldName\":\"Content\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.String\",\"isClass\":\"1\",\"isPermission\":f','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 13','2023-09-27 09:24:34',0),(35,'',0,'','PUT',0,'admin','','/system/field/addOrUpdateSysRoleField/2','127.0.0.1','0 内网IP','[{\"id\":\"1706589411656994816\",\"fieldName\":\"Cid\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Int32\",\"isClass\":\"0\",\"isPermission\":true},{\"id\":\"1706589411656994817\",\"fieldName\":\"Title\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.String\",\"isClass\":\"1\",\"isPermission\":false},{\"id\":\"1706589411656994818\",\"fieldName\":\"CreateTime\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]\",\"isClass\":\"0\",\"isPermission\":false},{\"id\":\"1706589411656994819\",\"fieldName\":\"UpdateTime\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]\",\"isClass\":\"0\",\"isPermission\":false},{\"id\":\"1706589411656994820\",\"fieldName\":\"Content\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.String\",\"isClass\":\"1\",\"isPermission\":','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 11','2023-09-27 10:00:07',0),(36,'',0,'','PUT',0,'admin','','/system/field/addOrUpdateSysRoleField/2','127.0.0.1','0 内网IP','[{\"id\":\"1706589411656994816\",\"fieldName\":\"Cid\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Int32\",\"isClass\":\"0\",\"isPermission\":true},{\"id\":\"1706589411656994817\",\"fieldName\":\"Title\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.String\",\"isClass\":\"1\",\"isPermission\":false},{\"id\":\"1706589411656994818\",\"fieldName\":\"CreateTime\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]\",\"isClass\":\"0\",\"isPermission\":false},{\"id\":\"1706589411656994819\",\"fieldName\":\"UpdateTime\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]\",\"isClass\":\"0\",\"isPermission\":false},{\"id\":\"1706589411656994820\",\"fieldName\":\"Content\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.String\",\"isClass\":\"1\",\"isPermission\":','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 11','2023-09-27 10:00:48',0),(37,'',0,'','PUT',0,'admin','','/system/field/addOrUpdateSysRoleField/2','127.0.0.1','0 内网IP','[{\"id\":\"1706589411656994816\",\"fieldName\":\"Cid\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Int32\",\"isClass\":\"0\",\"isPermission\":true},{\"id\":\"1706589411656994817\",\"fieldName\":\"Title\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.String\",\"isClass\":\"1\",\"isPermission\":false},{\"id\":\"1706589411656994818\",\"fieldName\":\"CreateTime\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]\",\"isClass\":\"0\",\"isPermission\":false},{\"id\":\"1706589411656994819\",\"fieldName\":\"UpdateTime\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.Nullable`1[[System.DateTime, System.Private.CoreLib, Version=7.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]\",\"isClass\":\"0\",\"isPermission\":false},{\"id\":\"1706589411656994820\",\"fieldName\":\"Content\",\"fullName\":\"ZR.ServiceCore.Model.Article\",\"fieldType\":\"System.String\",\"isClass\":\"1\",\"isPermission\":','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 7','2023-09-27 10:01:29',0),(38,'',0,'','POST',0,'admin','','/system/field/initFields','127.0.0.1','0 内网IP','','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 35','2023-09-27 10:21:27',0),(39,'',0,'','GET',0,'admin','','/system/field/getFields','127.0.0.1','0 内网IP','?fullName=ZR.ServiceCore.Model.ArticleCategory&roleId=2','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'','2023-09-27 11:29:49',0),(40,'',0,'','GET',0,'admin','','/Article/list','127.0.0.1','0 内网IP','','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'Unknown column \'IsPermission\' in \'field list\'','2023-09-27 13:36:27',0),(41,'发布文章',1,'Article.Create()','POST',0,'admin','','/Article/add','127.0.0.1','0-内网IP-内网IP','{\"dynamicTags\":[\"223\"],\"fmtType\":\"markdown\",\"tags\":\"223\",\"content\":\"2大萨达\",\"status\":\"1\",\"categoryId\":1,\"isPublic\":1,\"title\":\"23232\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": 28}',0,'','2023-09-27 15:59:21',0),(42,'用户管理',2,'SysUser.UpdateUser()','PUT',0,'admin','','/system/user/edit','127.0.0.1','0-内网IP-内网IP','{\"userId\":2,\"deptId\":0,\"userName\":\"user\",\"nickName\":\"普通用户\",\"password\":\"***\",\"phonenumber\":null,\"email\":\"w22@163.com\",\"sex\":0,\"status\":0,\"remark\":\"普通用户\",\"postIds\":[],\"roleIds\":[2]}','{ \"code\": 200, \"msg\": \"success\"}',0,'','2023-09-27 16:00:41',0),(43,'注销',0,'SysLogin.LogOut()','POST',0,'admin','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"admin\", \"id\": 1 }}',0,'','2023-09-27 16:00:46',0),(44,'登录',0,'SysLogin.Login()','POST',0,'user','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"user\",\"password\":\"***\",\"code\":\"qrnt\",\"uuid\":\"31b3fb7f64734f82811f49e5454f0cf5\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMiIsInVuaXF1ZV9uYW1lIjoidXNlciIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvdXNlcmRhdGEiOiJ7XCJVc2VySWRcIjoyLFwiRGVwdElkXCI6MCxcIlVzZXJOYW1lXCI6XCJ1c2VyXCIsXCJOaWNrTmFtZVwiOlwi5pmu6YCa55So5oi3XCIsXCJSb2xlSWRzXCI6W10sXCJSb2xlc1wiOltdLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi5pmu6YCa55So5oi3IiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1ODAxNjU2LCJleHAiOjE2OTU4ODgwNTYsImlhdCI6MTY5NTgwMTY1NiwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.lQly6fsP6F_ZevozRMuyZo4l09sl5Q6o5NKkjY8GLYo\"}',0,'','2023-09-27 16:00:56',0),(45,'注销',0,'SysLogin.LogOut()','POST',0,'user','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"user\", \"id\": 2 }}',0,'','2023-09-27 16:01:15',0),(46,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"rdq4\",\"uuid\":\"7b44f914fe674af7aeea42fd6b4b5d23\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1ODAxNjg2LCJleHAiOjE2OTU4ODgwODYsImlhdCI6MTY5NTgwMTY4NiwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.8Vyuzik5hobGeQWmonh63eaSxc9RO9sCjJ_vUhWIZFg\"}',0,'','2023-09-27 16:01:26',0),(47,'角色管理',2,'SysRole.DataScope()','PUT',0,'admin','','/system/role/dataScope','127.0.0.1','0-内网IP-内网IP','{\"roleId\":2,\"roleName\":\"普通角色\",\"roleKey\":\"common\",\"menuCheckStrictly\":true,\"menuIds\":[1,100,101,102,103,104,105,109,108,501,3,6,1001,1008,106,1013,1018,1022,1031,1051,500,1044,114,118,119,1048,1049,1050,2011,2012,2013,2014,2015,5]}','{ \"code\": 200, \"msg\": \"success\", \"data\": true}',0,'','2023-09-27 16:01:43',0),(48,'注销',0,'SysLogin.LogOut()','POST',0,'admin','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"admin\", \"id\": 1 }}',0,'','2023-09-27 16:01:47',0),(49,'登录',0,'SysLogin.Login()','POST',0,'user','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"user\",\"password\":\"***\",\"code\":\"e5f4\",\"uuid\":\"69f1acce68114388a036f7e14a2ff0be\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMiIsInVuaXF1ZV9uYW1lIjoidXNlciIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvdXNlcmRhdGEiOiJ7XCJVc2VySWRcIjoyLFwiRGVwdElkXCI6MCxcIlVzZXJOYW1lXCI6XCJ1c2VyXCIsXCJOaWNrTmFtZVwiOlwi5pmu6YCa55So5oi3XCIsXCJSb2xlSWRzXCI6W10sXCJSb2xlc1wiOltdLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi5pmu6YCa55So5oi3IiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1ODAxNzIyLCJleHAiOjE2OTU4ODgxMjIsImlhdCI6MTY5NTgwMTcyMiwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.OnAe4RwK3Z1KolHXqpJvnEM-K9pA-15pWSugyKrjpgA\"}',0,'','2023-09-27 16:02:02',0),(50,'',0,'','GET',0,'user','','/Article/list','127.0.0.1','0 内网IP','','{\r\n \"code\": 101,\r\n \"msg\": \"Value cannot be null. (Parameter \'value\')\"\r\n}',1,'Value cannot be null. (Parameter \'value\')','2023-09-27 16:07:46',0),(51,'',0,'','GET',0,'user','','/Article/list','127.0.0.1','0 内网IP','','{\r\n \"code\": 101,\r\n \"msg\": \"Value cannot be null. (Parameter \'value\')\"\r\n}',1,'Value cannot be null. (Parameter \'value\')','2023-09-27 16:09:50',0),(52,'注销',0,'SysLogin.LogOut()','POST',0,'user','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"user\", \"id\": 2 }}',0,'','2023-09-27 16:09:53',0),(53,'登录',0,'SysLogin.Login()','POST',0,'user','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"user\",\"password\":\"***\",\"code\":\"bwnp\",\"uuid\":\"e56316e8e37845aab34c0d37d93c23d9\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMiIsInVuaXF1ZV9uYW1lIjoidXNlciIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvdXNlcmRhdGEiOiJ7XCJVc2VySWRcIjoyLFwiRGVwdElkXCI6MCxcIlVzZXJOYW1lXCI6XCJ1c2VyXCIsXCJOaWNrTmFtZVwiOlwi5pmu6YCa55So5oi3XCIsXCJSb2xlSWRzXCI6W10sXCJSb2xlc1wiOltdLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi5pmu6YCa55So5oi3IiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1ODAyMTk5LCJleHAiOjE2OTU4ODg1OTksImlhdCI6MTY5NTgwMjE5OSwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.fjHvnQWGlZiRm4Pubhnrr_ULGvln5NYcZViAwITdWJY\"}',0,'','2023-09-27 16:09:59',0),(54,'注销',0,'SysLogin.LogOut()','POST',0,'user','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"user\", \"id\": 2 }}',0,'','2023-09-27 16:12:31',0),(55,'登录',0,'SysLogin.Login()','POST',0,'user','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"user\",\"password\":\"***\",\"code\":\"7\",\"uuid\":\"1c16731a4d484f8ba5e921b747703cac\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMiIsInVuaXF1ZV9uYW1lIjoidXNlciIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvdXNlcmRhdGEiOiJ7XCJVc2VySWRcIjoyLFwiRGVwdElkXCI6MCxcIlVzZXJOYW1lXCI6XCJ1c2VyXCIsXCJOaWNrTmFtZVwiOlwi5pmu6YCa55So5oi3XCIsXCJSb2xlSWRzXCI6W1wiY29tbW9uXCJdLFwiUm9sZXNcIjpbe1wiUm9sZUlkXCI6MixcIlJvbGVLZXlcIjpcImNvbW1vblwiLFwiRGF0YVNjb3BlXCI6Mn1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi5pmu6YCa55So5oi3IiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1ODAyNDY5LCJleHAiOjE2OTU4ODg4NjksImlhdCI6MTY5NTgwMjQ2OSwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.vP54kkw3yHqEwCtdz1GZ8T0UhiUYVudpSHHP4i-Tsus\"}',0,'','2023-09-27 16:14:29',0),(56,'登录',0,'SysLogin.Login()','POST',0,'user','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"user\",\"password\":\"***\",\"code\":\"14\",\"uuid\":\"f1e3b2c452b044e3833ba47cd50cb3c1\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMiIsInVuaXF1ZV9uYW1lIjoidXNlciIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvdXNlcmRhdGEiOiJ7XCJVc2VySWRcIjoyLFwiRGVwdElkXCI6MCxcIlVzZXJOYW1lXCI6XCJ1c2VyXCIsXCJOaWNrTmFtZVwiOlwi5pmu6YCa55So5oi3XCIsXCJSb2xlSWRzXCI6W1wiY29tbW9uXCJdLFwiUm9sZXNcIjpbe1wiUm9sZUlkXCI6MixcIlJvbGVLZXlcIjpcImNvbW1vblwiLFwiRGF0YVNjb3BlXCI6Mn1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi5pmu6YCa55So5oi3IiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1ODAyNDc3LCJleHAiOjE2OTU4ODg4NzcsImlhdCI6MTY5NTgwMjQ3NywiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.Ce9jONo8itsblYTd6PI1zwZ3xr20FAebmxtskrZ0kFE\"}',0,'','2023-09-27 16:14:38',0),(57,'',0,'','GET',0,'user','','/Article/list','127.0.0.1','0 内网IP','','{\r\n \"code\": 101,\r\n \"msg\": \"Value cannot be null. (Parameter \'value\')\"\r\n}',1,'Value cannot be null. (Parameter \'value\')','2023-09-27 16:15:50',0),(58,'注销',0,'SysLogin.LogOut()','POST',0,'user','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"user\", \"id\": 2 }}',0,'','2023-09-27 16:15:57',0),(59,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"2\",\"uuid\":\"40768a1c879145d987dfa5e461f1a0cb\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1ODAyNTY0LCJleHAiOjE2OTU4ODg5NjQsImlhdCI6MTY5NTgwMjU2NCwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.Uk9HkRr2O3SNdwLkZeCOZFdfZ4UkB_XRu2b3ACNoST4\"}',0,'','2023-09-27 16:16:04',0),(60,'注销',0,'SysLogin.LogOut()','POST',0,'admin','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"admin\", \"id\": 1 }}',0,'','2023-09-27 16:16:56',0),(61,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"1\",\"uuid\":\"094423871135427aa3f39f7d0dc69431\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1ODAyNjU5LCJleHAiOjE2OTU4ODkwNTksImlhdCI6MTY5NTgwMjY1OSwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.hHFUMoiDKiJ6BrLhKhV0y2q2xdvT7lb6BM8a52xO2yA\"}',0,'','2023-09-27 16:17:40',0),(62,'注销',0,'SysLogin.LogOut()','POST',0,'admin','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"admin\", \"id\": 1 }}',0,'','2023-09-27 16:17:46',0),(63,'登录',0,'SysLogin.Login()','POST',0,'user','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"user\",\"password\":\"***\",\"code\":\"18\",\"uuid\":\"78631ce6d9db4c7d9399ec9d643eadbb\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMiIsInVuaXF1ZV9uYW1lIjoidXNlciIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvdXNlcmRhdGEiOiJ7XCJVc2VySWRcIjoyLFwiRGVwdElkXCI6MCxcIlVzZXJOYW1lXCI6XCJ1c2VyXCIsXCJOaWNrTmFtZVwiOlwi5pmu6YCa55So5oi3XCIsXCJSb2xlSWRzXCI6W1wiY29tbW9uXCJdLFwiUm9sZXNcIjpbe1wiUm9sZUlkXCI6MixcIlJvbGVLZXlcIjpcImNvbW1vblwiLFwiRGF0YVNjb3BlXCI6Mn1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi5pmu6YCa55So5oi3IiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1ODAyNjczLCJleHAiOjE2OTU4ODkwNzMsImlhdCI6MTY5NTgwMjY3MywiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.hCw3DrWAHHqfpSqJ9AkUCecW5C4l8uiXH7lMy53PGTo\"}',0,'','2023-09-27 16:17:54',0),(64,'注销',0,'SysLogin.LogOut()','POST',0,'user','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"user\", \"id\": 2 }}',0,'','2023-09-27 16:21:38',0),(65,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"11\",\"uuid\":\"a0afa26ef2ef452e9087a9b7f045a148\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1ODAyOTAzLCJleHAiOjE2OTU4ODkzMDMsImlhdCI6MTY5NTgwMjkwMywiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.kUwftXPRzofEpwUUtFhotxzaf5iSu1PlEpS1VDsYrxg\"}',0,'','2023-09-27 16:21:44',0),(66,'注销',0,'SysLogin.LogOut()','POST',0,'admin','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"admin\", \"id\": 1 }}',0,'','2023-09-27 16:22:26',0),(67,'登录',0,'SysLogin.Login()','POST',0,'user','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"user\",\"password\":\"***\",\"code\":\"4\",\"uuid\":\"d9ebf40ade864edc8bfd1bc105f5f60a\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMiIsInVuaXF1ZV9uYW1lIjoidXNlciIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvdXNlcmRhdGEiOiJ7XCJVc2VySWRcIjoyLFwiRGVwdElkXCI6MCxcIlVzZXJOYW1lXCI6XCJ1c2VyXCIsXCJOaWNrTmFtZVwiOlwi5pmu6YCa55So5oi3XCIsXCJSb2xlSWRzXCI6W1wiY29tbW9uXCJdLFwiUm9sZXNcIjpbe1wiUm9sZUlkXCI6MixcIlJvbGVLZXlcIjpcImNvbW1vblwiLFwiRGF0YVNjb3BlXCI6Mn1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi5pmu6YCa55So5oi3IiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1ODAyOTUzLCJleHAiOjE2OTU4ODkzNTMsImlhdCI6MTY5NTgwMjk1MywiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.jEBEo9nbvnSC9O8YbaHOju21e0cf4wxwYHAoHkJ3Mho\"}',0,'','2023-09-27 16:22:34',0),(68,'注销',0,'SysLogin.LogOut()','POST',0,'','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": null, \"id\": 0 }}',0,'','2023-09-28 11:05:34',0),(69,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"0\",\"uuid\":\"f363253e927f4503a59850e1ae9a35b0\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk1ODcwMzQ4LCJleHAiOjE2OTU5NTY3NDgsImlhdCI6MTY5NTg3MDM0OCwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.evQzaOqiN1853z41aSEpgREurwDn-HYRkyu64d1e7NU\"}',0,'','2023-09-28 11:05:49',0),(70,'发布通告',1,'SysNotice.AddSysNotice()','POST',0,'admin','','/system/notice','127.0.0.1','0-内网IP-内网IP','{\"noticeTitle\":\"232\",\"noticeType\":1,\"noticeContent\":\"2332
\",\"status\":0}','{ \"code\": 200, \"msg\": \"success\", \"data\": 1707232004640215040}',0,'','2023-09-28 11:13:23',0),(71,'发送通知公告',0,'SysNotice.SendNotice()','PUT',0,'admin','','/system/notice/send/1707232004640215040','127.0.0.1','0-内网IP-内网IP','','Infrastructure.Model.ApiResult',0,'','2023-09-28 11:13:27',0),(72,'发送通知公告',0,'SysNotice.SendNotice()','PUT',0,'admin','','/system/notice/send/1707232004640215040','127.0.0.1','0-内网IP-内网IP','','Infrastructure.Model.ApiResult',0,'','2023-09-28 11:13:29',0),(73,'发送通知公告',0,'SysNotice.SendNotice()','PUT',0,'admin','','/system/notice/send/1707232004640215040','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"noticeId\": \"1707232004640215040\", \"noticeTitle\": \"232\", \"noticeType\": 1, \"noticeContent\": \"2332
\", \"status\": 0, \"createBy\": 1, \"createName\": \"管理员\", \"createTime\": \"2023-09-28 11:13:23\", \"updateTime\": null, \"remark\": null }}',0,'','2023-09-28 11:16:28',0),(74,'发送通知公告',0,'SysNotice.SendNotice()','PUT',0,'admin','','/system/notice/send/1707232004640215040','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"noticeId\": \"1707232004640215040\", \"noticeTitle\": \"232\", \"noticeType\": 1, \"noticeContent\": \"2332
\", \"status\": 0, \"createBy\": 1, \"createName\": \"管理员\", \"createTime\": \"2023-09-28 11:13:23\", \"updateTime\": null, \"remark\": null }}',0,'','2023-09-28 11:17:04',0),(75,'发送通知公告',0,'SysNotice.SendNotice()','PUT',0,'admin','','/system/notice/send/1707232004640215040','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"noticeId\": \"1707232004640215040\", \"noticeTitle\": \"232\", \"noticeType\": 1, \"noticeContent\": \"2332
\", \"status\": 0, \"createBy\": 1, \"createName\": \"管理员\", \"createTime\": \"2023-09-28 11:13:23\", \"updateTime\": null, \"remark\": null }}',0,'','2023-09-28 14:38:36',0),(76,'发送通知公告',0,'SysNotice.SendNotice()','PUT',0,'admin','','/system/notice/send/1','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"noticeId\": \"1\", \"noticeTitle\": \"22\", \"noticeType\": 1, \"noticeContent\": \"`22
\", \"status\": 0, \"createBy\": 0, \"createName\": \"admin\", \"createTime\": \"2023-09-22 00:02:16\", \"updateTime\": null, \"remark\": null }}',0,'','2023-09-28 16:03:39',0),(77,'注销',0,'SysLogin.LogOut()','POST',0,'admin','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"admin\", \"id\": 1 }}',0,'','2023-10-07 09:51:11',0),(78,'登录',0,'SysLogin.Login()','POST',0,'user','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"user\",\"password\":\"***\",\"code\":\"1\",\"uuid\":\"44570d0a99c446249e84e5b3f0b62e50\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMiIsInVuaXF1ZV9uYW1lIjoidXNlciIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvdXNlcmRhdGEiOiJ7XCJVc2VySWRcIjoyLFwiRGVwdElkXCI6MCxcIlVzZXJOYW1lXCI6XCJ1c2VyXCIsXCJOaWNrTmFtZVwiOlwi5pmu6YCa55So5oi3XCIsXCJSb2xlSWRzXCI6W1wiY29tbW9uXCJdLFwiUm9sZXNcIjpbe1wiUm9sZUlkXCI6MixcIlJvbGVLZXlcIjpcImNvbW1vblwiLFwiRGF0YVNjb3BlXCI6Mn1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi5pmu6YCa55So5oi3IiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk2NjQzNDgxLCJleHAiOjE2OTY3Mjk4ODEsImlhdCI6MTY5NjY0MzQ4MSwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.b2O_wExFlSehIHsh7IXnPTHErKIMvNMywJw3yOmpIUs\"}',0,'','2023-10-07 09:51:22',0),(79,'登录',0,'SysLogin.Login()','POST',0,'user','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"user\",\"password\":\"***\",\"code\":\"28\",\"uuid\":\"ab1f99ab6a9e45d88ea6644008152400\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMiIsInVuaXF1ZV9uYW1lIjoidXNlciIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvdXNlcmRhdGEiOiJ7XCJVc2VySWRcIjoyLFwiRGVwdElkXCI6MCxcIlVzZXJOYW1lXCI6XCJ1c2VyXCIsXCJOaWNrTmFtZVwiOlwi5pmu6YCa55So5oi3XCIsXCJSb2xlSWRzXCI6W1wiY29tbW9uXCJdLFwiUm9sZXNcIjpbe1wiUm9sZUlkXCI6MixcIlJvbGVLZXlcIjpcImNvbW1vblwiLFwiRGF0YVNjb3BlXCI6Mn1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi5pmu6YCa55So5oi3IiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk2NjYzOTE2LCJleHAiOjE2OTY3NTAzMTYsImlhdCI6MTY5NjY2MzkxNiwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.oZ0xREf7By_m5BjHTUltZmdm4FL9NYUew2f5nWGIsrI\"}',0,'','2023-10-07 15:31:56',0),(80,'注销',0,'SysLogin.LogOut()','POST',0,'user','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"user\", \"id\": 2 }}',0,'','2023-10-07 15:42:15',0),(81,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"12\",\"uuid\":\"68be5b1de40d457eb9b7c1708fcbe97a\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk2NjY0NTQxLCJleHAiOjE2OTY3NTA5NDEsImlhdCI6MTY5NjY2NDU0MSwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.J6zmF39WjgSRCEkd6ejWKc388K6hneL264ZNVCJUDOk\"}',0,'','2023-10-07 15:42:22',0),(82,'注销',0,'SysLogin.LogOut()','POST',0,'admin','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"admin\", \"id\": 1 }}',0,'','2023-10-08 08:38:33',0),(83,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"3\",\"uuid\":\"a0a49be6edaf40b1a8a51ad77684e999\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk2NzI1NTM1LCJleHAiOjE2OTY4MTE5MzUsImlhdCI6MTY5NjcyNTUzNSwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.sBgF4922XtiL77-SsZHUjVpo0VhDphgTN7JyGBkudkA\"}',0,'','2023-10-08 08:38:55',0),(84,'菜单管理',3,'SysMenu.Remove()','DELETE',0,'admin','','/system/Menu/5','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 110, \"msg\": \"菜单已分配,不允许删除\"}',0,'','2023-10-08 11:09:47',0),(85,'菜单管理',3,'SysMenu.Remove()','DELETE',0,'admin','','/system/Menu/5','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 110, \"msg\": \"菜单已分配,不允许删除\"}',0,'','2023-10-08 11:09:55',0),(86,'角色管理',2,'SysRole.DataScope()','PUT',0,'admin','','/system/role/dataScope','127.0.0.1','0-内网IP-内网IP','{\"roleId\":2,\"roleName\":\"普通角色\",\"roleKey\":\"common\",\"menuCheckStrictly\":true,\"menuIds\":[1,100,101,102,103,104,105,109,108,501,3,6,1001,1008,106,1013,1018,1022,1031,1051,500,1044,114,118,119,1048,1049,1050,2011,2012,2013,2014,2015]}','{ \"code\": 200, \"msg\": \"success\", \"data\": true}',0,'','2023-10-08 11:10:07',0),(87,'菜单管理',3,'SysMenu.Remove()','DELETE',0,'admin','','/system/Menu/5','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\"}',0,'','2023-10-08 11:10:11',0),(88,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"27\",\"uuid\":\"ea770821cbe548c59a108db7504731dd\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk2ODE4OTMyLCJleHAiOjE2OTY5MDUzMzIsImlhdCI6MTY5NjgxODkzMiwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.cmOj-BOUuJTsXrTg4agB3kJD42cO5gmO5BNwx_JTsew\"}',0,'','2023-10-09 10:35:33',0),(89,'注销',0,'SysLogin.LogOut()','POST',0,'admin','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"admin\", \"id\": 1 }}',0,'','2023-10-09 10:35:39',0),(90,'登录',0,'SysLogin.Login()','POST',0,'','','/login','127.0.0.1','0-内网IP-内网IP','{\"Username\":\"admin\",\"Password\":\"123456\"}','{ \"code\": 103, \"msg\": \"验证码错误\"}',0,'','2023-10-09 10:46:31',0),(91,'登录',0,'SysLogin.Login()','POST',0,'','','/login','127.0.0.1','0-内网IP-内网IP','{\"Username\":\"admin\",\"Password\":\"123456\"}','{ \"code\": 103, \"msg\": \"验证码错误\"}',0,'','2023-10-09 11:00:42',0),(92,'登录',0,'SysLogin.Login()','POST',0,'','','/login','127.0.0.1','0-内网IP-内网IP','{\"Username\":\"admin\",\"Password\":\"v8Knxt1AjhSCy/bSna9aZ4PA8N+8Uuf/A8xoa13aUV+11T/co0rV7XUTroczbhEkLT6Aw4IQyP8uCaGUKr6WYrplnIqRZLMT2hZ64i8tKy3+pgCeo3Pep73MzVxul9+oLbHVtCEsYIgkDV6PeKc22EAUupxCa1qH70ymyaffnXya50K22rFKU2HQqZVHEgvzeRvtr5dGkbYv8G9VmAjfLjpYBHpOwL378et5TME/yx+b10B35VxT6UfuviLFFd6UlcVlt7qnfgu1L50Vamn0FjFatkwACtbmGpV+z9KONAD9JUmJCQfYlI8g1SQOj4Mu7gA/BN2yWs4EgwgdGJx5Rg==\"}','{ \"code\": 103, \"msg\": \"验证码错误\"}',0,'','2023-10-09 11:01:17',0),(93,'注销',0,'SysLogin.LogOut()','POST',0,'','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": null, \"id\": 0 }}',0,'','2023-10-10 23:28:44',0),(94,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"0\",\"uuid\":\"91da15b81ee140c698ac3d66e8512ac2\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk2OTUxNzI4LCJleHAiOjE2OTcwMzgxMjgsImlhdCI6MTY5Njk1MTcyOCwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.0eImGP0YquX6ng0BQkCscvR8_hGqyZRfJJm-AfffMkA\"}',0,'','2023-10-10 23:28:48',0),(95,'登录',0,'SysLogin.Login()','POST',0,'','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\"}','{ \"code\": 103, \"msg\": \"验证码错误\"}',0,'','2023-10-11 14:35:50',0),(96,'登录',0,'SysLogin.Login()','POST',0,'','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk3MDA2NDY0LCJleHAiOjE2OTcwOTI4NjQsImlhdCI6MTY5NzAwNjQ2NCwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.TkJ5Cltq4q_hMfmAb5gnIGewsAZ56nKOurRZukoXwdw\"}',0,'','2023-10-11 14:41:05',0),(97,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk3MDA2NDgwLCJleHAiOjE2OTcwOTI4ODAsImlhdCI6MTY5NzAwNjQ4MCwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.d1eGn-h5TW-aAq_knZk7e9lS3QPULj0hlMrrWLYJIbY\"}',0,'','2023-10-11 14:41:21',0),(98,'',0,'','POST',0,'admin','','/system/field/fieldDisplay','127.0.0.1','0 内网IP','?blockCode=fieldDisplay','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'中文提示 : 多表查询存在别名不一致,请把Select中的srf改成sfb就可以了,特殊需求可以使用.Select((x,y)=>new{ id=x.id,name=y.name}).MergeTable().Orderby(xxx=>xxx.Id)功能将Select中的多表结果集变成单表,这样就可以不限制别名一样\r\nEnglish Message : Join sfb needs to be the same as Select srf','2023-10-11 14:41:44',0),(99,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk3MDA2NTcyLCJleHAiOjE2OTcwOTI5NzIsImlhdCI6MTY5NzAwNjU3MiwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.IkjEKJ8y-3-HVRcdyUrmMHYPtOsPDXLG7ZWaRhJojME\"}',0,'','2023-10-11 14:42:53',0),(100,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk3MDA3MDc4LCJleHAiOjE2OTcwOTM0NzgsImlhdCI6MTY5NzAwNzA3OCwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.rxR2q4AoEXXraCB0STNtIFuwHrDsct8_bqYqcBxyEUg\"}',0,'','2023-10-11 14:51:19',0),(101,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"5\",\"uuid\":\"e378e77630f1422aa11015e41222b4c9\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk3MDA3MTIzLCJleHAiOjE2OTcwOTM1MjMsImlhdCI6MTY5NzAwNzEyMywiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.KCSPiaxz6r-sskCE4KJP5V1gz_mFM8QZq2TDGN-yh3Y\"}',0,'','2023-10-11 14:52:03',0),(102,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk3MDEzNDUyLCJleHAiOjE2OTcwOTk4NTIsImlhdCI6MTY5NzAxMzQ1MiwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.NVSq9mf4NLORZtTJMkeuWVER8NksqlUFnuEuTQcVCOE\"}',0,'','2023-10-11 16:37:32',0),(103,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk3MDEzNjYyLCJleHAiOjE2OTcxMDAwNjIsImlhdCI6MTY5NzAxMzY2MiwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.GuvrdvC4Jm3HvSgBeomNmMHZ14kxAZd3u8pyN_6YLWo\"}',0,'','2023-10-11 16:41:02',0),(104,'注销',0,'SysLogin.LogOut()','POST',0,'','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": null, \"id\": 0 }}',0,'','2023-10-13 15:47:20',0),(105,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"4\",\"uuid\":\"0fd440e3f6ed49a7aee85c457ba23ab0\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk3MTgzMjgyLCJleHAiOjE2OTcyNjk2ODIsImlhdCI6MTY5NzE4MzI4MiwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.rmmcehaXJRNU8LSCBozbtPEGWOuKCOSVLkNAkltK3JE\"}',0,'','2023-10-13 15:48:02',0),(106,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"1\",\"uuid\":\"9952c4788a26436ab2b81c73fa6b9f47\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk3MTgzMjg4LCJleHAiOjE2OTcyNjk2ODgsImlhdCI6MTY5NzE4MzI4OCwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.C1NKM4nNk4rt5AowVH0eZI23XghssM1C28smqay9dq4\"}',0,'','2023-10-13 15:48:08',0),(107,'注销',0,'SysLogin.LogOut()','POST',0,'admin','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": \"admin\", \"id\": 1 }}',0,'','2023-10-13 15:51:25',0),(108,'登录',0,'SysLogin.Login()','POST',0,'admin','','/login','127.0.0.1','0-内网IP-内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"8\",\"uuid\":\"ba969ba7b0794d34876e90567fcf1fc9\"}','{ \"code\": 200, \"msg\": \"success\", \"data\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkJlYXJlciJ9.eyJwcmltYXJ5c2lkIjoiMSIsInVuaXF1ZV9uYW1lIjoiYWRtaW4iLCJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL3dzLzIwMDgvMDYvaWRlbnRpdHkvY2xhaW1zL3VzZXJkYXRhIjoie1wiVXNlcklkXCI6MSxcIkRlcHRJZFwiOjAsXCJVc2VyTmFtZVwiOlwiYWRtaW5cIixcIk5pY2tOYW1lXCI6XCLnrqHnkIblkZhcIixcIlJvbGVJZHNcIjpbXCJhZG1pblwiXSxcIlJvbGVzXCI6W3tcIlJvbGVJZFwiOjEsXCJSb2xlS2V5XCI6XCJhZG1pblwiLFwiRGF0YVNjb3BlXCI6MX1dLFwiRXhwaXJlVGltZVwiOlwiMDAwMS0wMS0wMVQwMDowMDowMFwifSIsIk5pY2tOYW1lIjoi566h55CG5ZGYIiwiQXVkaWVuY2UiOiJaUkFkbWluLk5FVCIsIklzc3VlciI6IlpSQWRtaW4uTkVUIiwibmJmIjoxNjk3MTgzNTAwLCJleHAiOjE2OTcyNjk5MDAsImlhdCI6MTY5NzE4MzUwMCwiaXNzIjoiWlJBZG1pbi5ORVQiLCJhdWQiOiJaUkFkbWluLk5FVCJ9.Iw7R7d6z4xxl-fSAu0RAXEXr61vlv10xxGLsoAFOvU8\"}',0,'','2023-10-13 15:51:41',0),(109,'',0,'','GET',0,'admin','','/system/field/getModelList','127.0.0.1','0 内网IP','?pageNum=1&pageSize=10','{\r\n \"code\": 0,\r\n \"msg\": \"请先初始化,再配置\"\r\n}',1,'请先初始化,再配置','2023-10-16 12:49:20',0),(110,'注销',0,'SysLogin.LogOut()','POST',0,'','','/LogOut','127.0.0.1','0-内网IP-内网IP','','{ \"code\": 200, \"msg\": \"success\", \"data\": { \"name\": null, \"id\": 0 }}',0,'','2023-10-16 15:34:56',0),(111,'',0,'','GET',0,'admin','','/system/field/getModelList','127.0.0.1','0 内网IP','?pageNum=1&pageSize=10','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'Error converting value \"ZR.ServiceCore.Model.Article\" to type \'ZR.ServiceCore.Model.Dto.SysModelDto\'. Path \'[0]\', line 1, position 31.','2023-10-16 16:01:39',0),(112,'登录',0,'','POST',0,'','','/login','127.0.0.1','0 内网IP','{\"username\":\"admin\",\"password\":\"***\",\"code\":\"4\",\"uuid\":\"ab2385c1dd0b4752a43fa5599ffb159d\"}','{\r\n \"code\": 500,\r\n \"msg\": \"服务器好像出了点问题,请联系系统管理员...\"\r\n}',1,'参数错误。','2023-10-16 16:10:17',0);
+/*!40000 ALTER TABLE `sys_oper_log` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_post`
+--
+
+DROP TABLE IF EXISTS `sys_post`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_post` (
+ `postId` bigint NOT NULL AUTO_INCREMENT COMMENT '岗位ID',
+ `postCode` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '岗位编码',
+ `postName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '岗位名称',
+ `postSort` int NOT NULL COMMENT '显示顺序',
+ `status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '状态(0正常 1停用)',
+ `create_by` bigint DEFAULT NULL COMMENT '创建者',
+ `create_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '创建者名称',
+ `create_time` datetime DEFAULT NULL COMMENT '创建时间',
+ `update_by` bigint DEFAULT NULL COMMENT '更新者',
+ `update_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '更新者名称',
+ `update_time` datetime DEFAULT NULL COMMENT '更新时间',
+ `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
+ PRIMARY KEY (`postId`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='岗位信息表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_post`
+--
+
+LOCK TABLES `sys_post` WRITE;
+/*!40000 ALTER TABLE `sys_post` DISABLE KEYS */;
+INSERT INTO `sys_post` VALUES (1,'CEO','董事长',1,'0',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,''),(2,'SE','项目经理',2,'0',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,''),(3,'HR','人力资源',3,'0',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,''),(4,'USER','普通员工',4,'0',NULL,'','2023-09-21 14:32:19',NULL,'',NULL,''),(6,'PM','人事经理',0,'0',NULL,NULL,'2023-09-21 14:32:19',NULL,'',NULL,NULL),(7,'GM','总经理',0,'0',NULL,NULL,'2023-09-21 14:32:20',NULL,'',NULL,NULL),(8,'COO','首席运营官',0,'0',NULL,NULL,'2023-09-21 14:32:20',NULL,'',NULL,NULL),(9,'CFO','首席财务官',0,'0',NULL,NULL,'2023-09-21 14:32:20',NULL,'',NULL,NULL),(10,'CTO','首席技术官',0,'0',NULL,NULL,'2023-09-21 14:32:20',NULL,'',NULL,NULL),(11,'HRD','人力资源总监',0,'0',NULL,NULL,'2023-09-21 14:32:20',NULL,'',NULL,NULL),(12,'VP','副总裁',0,'0',NULL,NULL,'2023-09-21 14:32:20',NULL,'',NULL,NULL),(13,'OD','运营总监',0,'0',NULL,NULL,'2023-09-21 14:32:20',NULL,'',NULL,NULL),(14,'MD','市场总监',0,'0',NULL,NULL,'2023-09-21 14:32:20',NULL,'',NULL,NULL);
+/*!40000 ALTER TABLE `sys_post` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_role`
+--
+
+DROP TABLE IF EXISTS `sys_role`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_role` (
+ `roleId` bigint NOT NULL AUTO_INCREMENT COMMENT '角色ID',
+ `roleName` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色名称',
+ `roleKey` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色权限字符串',
+ `roleSort` int NOT NULL COMMENT '显示顺序',
+ `dataScope` int DEFAULT '1' COMMENT '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 )',
+ `menu_check_strictly` tinyint(1) DEFAULT '1' COMMENT '菜单树选择项是否关联显示',
+ `dept_check_strictly` tinyint(1) NOT NULL DEFAULT '1' COMMENT '部门树选择项是否关联显示',
+ `status` int NOT NULL DEFAULT '0' COMMENT '角色状态(0正常 1停用)',
+ `delFlag` int NOT NULL DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
+ `create_by` bigint DEFAULT NULL COMMENT '创建者',
+ `create_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '创建者名称',
+ `create_time` datetime DEFAULT NULL COMMENT '创建时间',
+ `update_by` bigint DEFAULT NULL COMMENT '更新者',
+ `update_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '更新者名称',
+ `update_time` datetime DEFAULT NULL COMMENT '更新时间',
+ `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
+ PRIMARY KEY (`roleId`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=117 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='角色信息表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_role`
+--
+
+LOCK TABLES `sys_role` WRITE;
+/*!40000 ALTER TABLE `sys_role` DISABLE KEYS */;
+INSERT INTO `sys_role` VALUES (1,'超级管理员','admin',1,1,1,0,0,0,NULL,'admin','2023-09-21 14:32:20',NULL,'system',NULL,'超级管理员'),(2,'普通角色','common',2,2,1,0,0,0,NULL,'admin','2023-09-21 14:32:20',NULL,'system',NULL,'普通角色');
+/*!40000 ALTER TABLE `sys_role` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_role_dept`
+--
+
+DROP TABLE IF EXISTS `sys_role_dept`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_role_dept` (
+ `roleId` bigint NOT NULL COMMENT '角色ID',
+ `deptId` bigint NOT NULL COMMENT '部门ID',
+ PRIMARY KEY (`roleId`,`deptId`) USING BTREE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='角色和部门关联表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_role_dept`
+--
+
+LOCK TABLES `sys_role_dept` WRITE;
+/*!40000 ALTER TABLE `sys_role_dept` DISABLE KEYS */;
+INSERT INTO `sys_role_dept` VALUES (2,100),(2,101),(2,105);
+/*!40000 ALTER TABLE `sys_role_dept` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_role_field`
+--
+
+DROP TABLE IF EXISTS `sys_role_field`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_role_field` (
+ `fieldid` bigint DEFAULT NULL,
+ `roleid` bigint DEFAULT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_role_field`
+--
+
+LOCK TABLES `sys_role_field` WRITE;
+/*!40000 ALTER TABLE `sys_role_field` DISABLE KEYS */;
+INSERT INTO `sys_role_field` VALUES (1706854636545249280,2),(1706854636545249292,2),(1706854636545249293,2),(1706854636545249294,2),(1706931138280427523,2),(1706931138280427524,2),(1706931137387040768,1),(1706931137387040768,2),(1706931137391235072,2);
+/*!40000 ALTER TABLE `sys_role_field` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_role_menu`
+--
+
+DROP TABLE IF EXISTS `sys_role_menu`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_role_menu` (
+ `role_id` bigint NOT NULL COMMENT '角色ID',
+ `menu_id` bigint NOT NULL COMMENT '菜单ID',
+ PRIMARY KEY (`role_id`,`menu_id`) USING BTREE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='角色和菜单关联表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_role_menu`
+--
+
+LOCK TABLES `sys_role_menu` WRITE;
+/*!40000 ALTER TABLE `sys_role_menu` DISABLE KEYS */;
+INSERT INTO `sys_role_menu` VALUES (2,1),(2,3),(2,6),(2,100),(2,101),(2,102),(2,103),(2,104),(2,105),(2,106),(2,108),(2,109),(2,114),(2,118),(2,119),(2,500),(2,501),(2,1001),(2,1008),(2,1013),(2,1018),(2,1022),(2,1031),(2,1044),(2,1048),(2,1049),(2,1050),(2,1051),(2,2011),(2,2012),(2,2013),(2,2014),(2,2015),(3,4),(3,118),(3,1047),(3,1048),(3,1049),(3,1050);
+/*!40000 ALTER TABLE `sys_role_menu` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_tasks`
+--
+
+DROP TABLE IF EXISTS `sys_tasks`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_tasks` (
+ `id` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT 'UID',
+ `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL COMMENT '任务名称',
+ `jobGroup` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL COMMENT '任务分组',
+ `cron` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT '运行时间表达式',
+ `assemblyName` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL COMMENT '程序集名称',
+ `className` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL COMMENT '任务所在类',
+ `remark` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci COMMENT '任务描述',
+ `runTimes` int NOT NULL COMMENT '执行次数',
+ `beginTime` datetime DEFAULT NULL COMMENT '开始时间',
+ `endTime` datetime DEFAULT NULL COMMENT '结束时间',
+ `triggerType` int NOT NULL COMMENT '触发器类型(0、simple 1、cron)',
+ `IntervalSecond` int NOT NULL COMMENT '执行间隔时间(单位:秒)',
+ `IsStart` tinyint NOT NULL COMMENT '是否启动',
+ `JobParams` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci COMMENT '传入参数',
+ `create_time` datetime DEFAULT NULL COMMENT '创建时间',
+ `update_time` datetime DEFAULT NULL COMMENT '最后更新时间',
+ `create_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '创建人名称',
+ `update_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '更新人名称',
+ `create_by` bigint DEFAULT NULL COMMENT '创建人编码',
+ `update_by` bigint DEFAULT NULL COMMENT '更新人编码',
+ `lastRunTime` datetime DEFAULT NULL COMMENT '最后执行时间',
+ `apiUrl` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'api执行地址',
+ `taskType` int DEFAULT '1' COMMENT '任务类型1程序集任务 2网络请求',
+ `sqlText` varchar(1000) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'SQL语句',
+ `requestMethod` varchar(20) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT 'http请求方法',
+ PRIMARY KEY (`id`) USING BTREE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='计划任务';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_tasks`
+--
+
+LOCK TABLES `sys_tasks` WRITE;
+/*!40000 ALTER TABLE `sys_tasks` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_tasks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_tasks_log`
+--
+
+DROP TABLE IF EXISTS `sys_tasks_log`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_tasks_log` (
+ `jobLogId` bigint NOT NULL AUTO_INCREMENT COMMENT '任务日志ID',
+ `jobId` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '任务id',
+ `jobName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '任务名称',
+ `jobGroup` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '任务组名',
+ `jobMessage` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '日志信息',
+ `status` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '执行状态(0正常 1失败)',
+ `exception` varchar(2000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '异常信息',
+ `createTime` datetime DEFAULT NULL COMMENT '创建时间',
+ `invokeTarget` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '调用目标',
+ `elapsed` double(10,0) DEFAULT NULL COMMENT '作业用时',
+ PRIMARY KEY (`jobLogId`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=198 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='定时任务调度日志表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_tasks_log`
+--
+
+LOCK TABLES `sys_tasks_log` WRITE;
+/*!40000 ALTER TABLE `sys_tasks_log` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_tasks_log` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_user`
+--
+
+DROP TABLE IF EXISTS `sys_user`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_user` (
+ `userId` bigint NOT NULL AUTO_INCREMENT COMMENT '用户ID',
+ `deptId` bigint DEFAULT NULL COMMENT '部门ID',
+ `userName` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户账号',
+ `nickName` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户昵称',
+ `userType` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '0' COMMENT '用户类型(00系统用户)',
+ `email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '用户邮箱',
+ `phonenumber` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '手机号码',
+ `sex` int DEFAULT '0' COMMENT '用户性别(0男 1女 2未知)',
+ `avatar` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '头像地址',
+ `password` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '密码',
+ `status` int DEFAULT '0' COMMENT '帐号状态(0正常 1停用)',
+ `delFlag` int DEFAULT '0' COMMENT '删除标志(0代表存在 2代表删除)',
+ `loginIP` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '最后登录IP',
+ `loginDate` datetime DEFAULT NULL COMMENT '最后登录时间',
+ `create_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '创建者名称',
+ `create_by` bigint DEFAULT NULL COMMENT '创建者',
+ `create_time` datetime DEFAULT NULL COMMENT '创建时间',
+ `update_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT '' COMMENT '更新者名称',
+ `update_by` bigint DEFAULT NULL COMMENT '更新者',
+ `update_time` datetime DEFAULT NULL COMMENT '更新时间',
+ `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '备注',
+ PRIMARY KEY (`userId`) USING BTREE
+) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='用户信息表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_user`
+--
+
+LOCK TABLES `sys_user` WRITE;
+/*!40000 ALTER TABLE `sys_user` DISABLE KEYS */;
+INSERT INTO `sys_user` VALUES (1,0,'admin','管理员','0','','',0,'','e10adc3949ba59abbe56e057f20f883e',0,0,'127.0.0.1','2023-10-13 15:51:41',NULL,NULL,'2020-11-26 11:52:59',NULL,NULL,'2021-08-03 10:11:24','管理员'),(2,0,'user','普通用户','0','w22@163.com',NULL,0,'','e10adc3949ba59abbe56e057f20f883e',0,0,'127.0.0.1','2023-10-07 15:31:56',NULL,NULL,'2021-07-05 17:29:13',NULL,1,'2023-09-27 16:00:40','普通用户'),(3,100,'editor','编辑人员','0',NULL,NULL,2,'','E10ADC3949BA59ABBE56E057F20F883E',0,0,'127.0.0.1','2021-08-19 09:27:46',NULL,NULL,'2021-08-18 18:24:53',NULL,NULL,NULL,NULL);
+/*!40000 ALTER TABLE `sys_user` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_user_post`
+--
+
+DROP TABLE IF EXISTS `sys_user_post`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_user_post` (
+ `userId` bigint NOT NULL COMMENT '用户ID',
+ `postId` bigint NOT NULL COMMENT '岗位ID',
+ PRIMARY KEY (`userId`,`postId`) USING BTREE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='用户与岗位关联表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_user_post`
+--
+
+LOCK TABLES `sys_user_post` WRITE;
+/*!40000 ALTER TABLE `sys_user_post` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sys_user_post` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sys_user_role`
+--
+
+DROP TABLE IF EXISTS `sys_user_role`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sys_user_role` (
+ `user_id` bigint NOT NULL COMMENT '用户ID',
+ `role_id` bigint NOT NULL COMMENT '角色ID',
+ PRIMARY KEY (`user_id`,`role_id`) USING BTREE
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='用户和角色关联表';
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sys_user_role`
+--
+
+LOCK TABLES `sys_user_role` WRITE;
+/*!40000 ALTER TABLE `sys_user_role` DISABLE KEYS */;
+INSERT INTO `sys_user_role` VALUES (1,1),(2,2);
+/*!40000 ALTER TABLE `sys_user_role` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Dumping routines for database 'zradmin'
+--
+/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
+
+/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
+/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
+/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
+/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
+/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
+/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
+/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
+
+-- Dump completed on 2023-10-16 16:31:48