From fd53765aae398d28b00f7b65e31f57080a48cd67 Mon Sep 17 00:00:00 2001 From: 188633308 <188633308@qq.com> Date: Sun, 25 Apr 2021 15:21:28 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E6=95=B0=E6=8D=AE=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Ewide.Database.Migrations.csproj | 4 + .../Migrations/20210423073632_Init.cs | 1320 ------ ...ner.cs => 20210425072018_Init.Designer.cs} | 3988 +++++++++-------- .../Migrations/20210425072018_Init.cs | 1320 ++++++ .../DefaultDbContextModelSnapshot.cs | 3986 ++++++++-------- 5 files changed, 5403 insertions(+), 5215 deletions(-) delete mode 100644 Api/Ewide.Database.Migrations/Migrations/20210423073632_Init.cs rename Api/Ewide.Database.Migrations/Migrations/{20210423073632_Init.Designer.cs => 20210425072018_Init.Designer.cs} (65%) create mode 100644 Api/Ewide.Database.Migrations/Migrations/20210425072018_Init.cs diff --git a/Api/Ewide.Database.Migrations/Ewide.Database.Migrations.csproj b/Api/Ewide.Database.Migrations/Ewide.Database.Migrations.csproj index 0f054df..bd6a73d 100644 --- a/Api/Ewide.Database.Migrations/Ewide.Database.Migrations.csproj +++ b/Api/Ewide.Database.Migrations/Ewide.Database.Migrations.csproj @@ -8,4 +8,8 @@ + + + + diff --git a/Api/Ewide.Database.Migrations/Migrations/20210423073632_Init.cs b/Api/Ewide.Database.Migrations/Migrations/20210423073632_Init.cs deleted file mode 100644 index 7940f38..0000000 --- a/Api/Ewide.Database.Migrations/Migrations/20210423073632_Init.cs +++ /dev/null @@ -1,1320 +0,0 @@ -using System; -using Microsoft.EntityFrameworkCore.Metadata; -using Microsoft.EntityFrameworkCore.Migrations; - -namespace Ewide.Database.Migrations.Migrations -{ - public partial class Init : Migration - { - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.CreateTable( - name: "code_gen_test", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), - NickName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "昵称"), - Birthday = table.Column(type: "datetime", nullable: false, comment: "生日"), - Age = table.Column(type: "int", nullable: false, comment: "年龄"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_code_gen_test", x => x.Id); - }, - comment: "代码生成业务"); - - migrationBuilder.CreateTable( - name: "sys_app", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), - Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), - Icon = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "图标"), - Color = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "图标颜色"), - Active = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否默认激活"), - Status = table.Column(type: "int", nullable: false, comment: "状态"), - Sort = table.Column(type: "int", nullable: false, comment: "排序"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_app", x => x.Id); - }, - comment: "系统应用表"); - - migrationBuilder.CreateTable( - name: "sys_code_gen", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - AuthorName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "作者姓名"), - TablePrefix = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否移除表前缀"), - GenerateType = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "生成方式"), - TableName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "数据库表名"), - NameSpace = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "命名空间"), - BusName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "业务名"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_code_gen", x => x.Id); - }, - comment: "代码生成表"); - - migrationBuilder.CreateTable( - name: "sys_code_gen_config", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - CodeGenId = table.Column(type: "bigint", nullable: false, comment: "代码生成主表ID"), - ColumnName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "数据库字段名"), - ColumnComment = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "字段描述"), - NetType = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: ".NET数据类型"), - EffectType = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "作用类型"), - DictTypeCode = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "字典Code"), - WhetherRetract = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "列表是否缩进"), - WhetherRequired = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否必填"), - QueryWhether = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否是查询条件"), - QueryType = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "查询方式"), - WhetherTable = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "列表显示"), - WhetherAddUpdate = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "增改"), - ColumnKey = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "主外键"), - DataType = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "数据库中类型"), - WhetherCommon = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否通用字段"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_code_gen_config", x => x.Id); - }, - comment: "代码生成字段配置表"); - - migrationBuilder.CreateTable( - name: "sys_config", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), - Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), - Value = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "属性值"), - SysFlag = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否是系统参数"), - Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), - Status = table.Column(type: "int", nullable: false, comment: "状态"), - GroupCode = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "常量所属分类的编码"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_config", x => x.Id); - }, - comment: "参数配置表"); - - migrationBuilder.CreateTable( - name: "sys_dict_type", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), - Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), - Sort = table.Column(type: "int", nullable: false, comment: "排序"), - Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), - Status = table.Column(type: "int", nullable: false, comment: "状态"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_dict_type", x => x.Id); - }, - comment: "字典类型表"); - - migrationBuilder.CreateTable( - name: "sys_emp", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "用户Id"), - JobNum = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "工号"), - OrgId = table.Column(type: "bigint", nullable: false, comment: "机构Id"), - OrgName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "机构名称") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_emp", x => x.Id); - }, - comment: "员工表"); - - migrationBuilder.CreateTable( - name: "sys_file", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - FileLocation = table.Column(type: "int", nullable: false, comment: "文件存储位置"), - FileBucket = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "文件仓库"), - FileOriginName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "文件名称"), - FileSuffix = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "文件后缀"), - FileSizeKb = table.Column(type: "bigint", nullable: false, comment: "文件大小kb"), - FileSizeInfo = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "文件大小信息"), - FileObjectName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "存储到bucket的名称"), - FilePath = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "存储路径"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_file", x => x.Id); - }, - comment: "文件信息表"); - - migrationBuilder.CreateTable( - name: "sys_log_audit", - columns: table => new - { - Id = table.Column(type: "int", nullable: false) - .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), - TableName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "表名"), - ColumnName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "列名"), - NewValue = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "新值"), - OldValue = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "旧值"), - CreatedTime = table.Column(type: "datetime", nullable: false, comment: "操作时间"), - UserId = table.Column(type: "bigint", nullable: false, comment: "操作人Id"), - UserName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "操作人名称"), - Operate = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "操作方式") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_log_audit", x => x.Id); - }, - comment: "审计日志表"); - - migrationBuilder.CreateTable( - name: "sys_log_op", - columns: table => new - { - Id = table.Column(type: "int", nullable: false) - .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), - Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), - OpType = table.Column(type: "int", nullable: true, comment: "操作类型"), - Success = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否执行成功"), - Message = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "具体消息"), - Ip = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "IP"), - Location = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "地址"), - Browser = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "浏览器"), - Os = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "操作系统"), - Url = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "请求地址"), - ClassName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "类名称"), - MethodName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "方法名称"), - ReqMethod = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "请求方式"), - Param = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "请求参数"), - Result = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "返回结果"), - ElapsedTime = table.Column(type: "bigint", nullable: false, comment: "耗时"), - OpTime = table.Column(type: "datetime", nullable: false, comment: "操作时间"), - Account = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "操作人") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_log_op", x => x.Id); - }, - comment: "操作日志表"); - - migrationBuilder.CreateTable( - name: "sys_log_vis", - columns: table => new - { - Id = table.Column(type: "int", nullable: false) - .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), - Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), - Success = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否执行成功"), - Message = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "具体消息"), - Ip = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "IP"), - Location = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "地址"), - Browser = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "浏览器"), - Os = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "操作系统"), - VisType = table.Column(type: "int", nullable: true, comment: "访问类型"), - VisTime = table.Column(type: "datetime", nullable: false, comment: "访问时间"), - Account = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "访问人") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_log_vis", x => x.Id); - }, - comment: "访问日志表"); - - migrationBuilder.CreateTable( - name: "sys_menu", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - Pid = table.Column(type: "bigint", nullable: false, comment: "父Id"), - Pids = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "父Ids"), - Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), - Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), - Type = table.Column(type: "int", nullable: false, comment: "菜单类型"), - Icon = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "图标"), - Router = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "路由地址"), - Component = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "组件地址"), - Permission = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "权限标识"), - Application = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "应用分类"), - OpenType = table.Column(type: "int", nullable: false, comment: "打开方式"), - Visible = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否可见"), - Link = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "内链地址"), - Redirect = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "重定向地址"), - Weight = table.Column(type: "int", nullable: false, comment: "权重"), - Sort = table.Column(type: "int", nullable: false, comment: "排序"), - Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), - Status = table.Column(type: "int", nullable: false), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_menu", x => x.Id); - }, - comment: "菜单表"); - - migrationBuilder.CreateTable( - name: "sys_notice", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - Title = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "标题"), - Content = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "内容"), - Type = table.Column(type: "int", nullable: false, comment: "类型"), - PublicUserId = table.Column(type: "bigint", nullable: false, comment: "发布人Id"), - PublicUserName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "发布人姓名"), - PublicOrgId = table.Column(type: "bigint", nullable: false, comment: "发布机构Id"), - PublicOrgName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "发布机构名称"), - PublicTime = table.Column(type: "datetime", nullable: false, comment: "发布时间"), - CancelTime = table.Column(type: "datetime", nullable: false, comment: "撤回时间"), - Status = table.Column(type: "int", nullable: false, comment: "状态"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_notice", x => x.Id); - }, - comment: "通知公告表"); - - migrationBuilder.CreateTable( - name: "sys_notice_user", - columns: table => new - { - NoticeId = table.Column(type: "bigint", nullable: false, comment: "通知公告Id"), - UserId = table.Column(type: "bigint", nullable: false, comment: "用户Id"), - ReadTime = table.Column(type: "datetime", nullable: false, comment: "阅读时间"), - ReadStatus = table.Column(type: "int", nullable: false, comment: "状态") - }, - constraints: table => - { - }, - comment: "通知公告用户表"); - - migrationBuilder.CreateTable( - name: "sys_oauth_user", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - Uuid = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "UUID"), - AccessToken = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "Token"), - NickName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "昵称"), - Avatar = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "头像"), - Gender = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "性别"), - Phone = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "电话"), - Email = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "邮箱"), - Location = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "位置"), - Blog = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "用户网址"), - Company = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "所在公司"), - Source = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "用户来源"), - Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_oauth_user", x => x.Id); - }, - comment: "Oauth登录用户表"); - - migrationBuilder.CreateTable( - name: "sys_org", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - Pid = table.Column(type: "bigint", nullable: false, comment: "父Id"), - Pids = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "父Ids"), - Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), - Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), - Contacts = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "联系人"), - Tel = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "电话"), - Sort = table.Column(type: "int", nullable: false, comment: "排序"), - Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), - Status = table.Column(type: "int", nullable: false, comment: "状态"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_org", x => x.Id); - }, - comment: "组织机构表"); - - migrationBuilder.CreateTable( - name: "sys_pos", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), - Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), - Sort = table.Column(type: "int", nullable: false, comment: "排序"), - Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), - Status = table.Column(type: "int", nullable: false, comment: "状态"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_pos", x => x.Id); - }, - comment: "职位表"); - - migrationBuilder.CreateTable( - name: "sys_role", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), - Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), - Sort = table.Column(type: "int", nullable: false, comment: "排序"), - DataScopeType = table.Column(type: "int", nullable: false, comment: "数据范围类型"), - Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), - Status = table.Column(type: "int", nullable: false, comment: "状态"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_role", x => x.Id); - }, - comment: "角色表"); - - migrationBuilder.CreateTable( - name: "sys_tenant", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), - Host = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "主机"), - Email = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "电子邮箱"), - Phone = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "电话"), - Connection = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "数据库连接"), - Schema = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "架构"), - Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_tenant", x => x.Id); - }, - comment: "租户表"); - - migrationBuilder.CreateTable( - name: "sys_timer", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - JobName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "任务名称"), - JobGroup = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "任务分组"), - BeginTime = table.Column(type: "datetime", nullable: false, comment: "开始时间"), - EndTime = table.Column(type: "datetime", nullable: true, comment: "结束时间"), - Cron = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "Cron表达式"), - RunNumber = table.Column(type: "int", nullable: true, comment: "执行次数"), - Interval = table.Column(type: "int", nullable: true, comment: "执行间隔时间"), - TriggerType = table.Column(type: "int", nullable: false, comment: "触发器类型"), - RequestUrl = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "请求url"), - RequestParameters = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "请求参数"), - Headers = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "Headers"), - RequestType = table.Column(type: "int", nullable: false, comment: "请求类型"), - Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_timer", x => x.Id); - }, - comment: "定时任务表"); - - migrationBuilder.CreateTable( - name: "sys_user", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - Account = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: false, comment: "账号"), - Password = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: false, comment: "密码"), - NickName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "昵称"), - Name = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "姓名"), - Avatar = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "头像"), - Birthday = table.Column(type: "datetime", nullable: false, comment: "生日"), - Sex = table.Column(type: "int", nullable: false, comment: "性别-男_1、女_2"), - Email = table.Column(type: "varchar(30) CHARACTER SET utf8mb4", maxLength: 30, nullable: true, comment: "邮箱"), - Phone = table.Column(type: "varchar(30) CHARACTER SET utf8mb4", maxLength: 30, nullable: true, comment: "手机"), - Tel = table.Column(type: "varchar(30) CHARACTER SET utf8mb4", maxLength: 30, nullable: true, comment: "电话"), - LastLoginIp = table.Column(type: "varchar(30) CHARACTER SET utf8mb4", maxLength: 30, nullable: true, comment: "最后登录IP"), - LastLoginTime = table.Column(type: "datetime", nullable: false, comment: "最后登录时间"), - AdminType = table.Column(type: "int", nullable: false, comment: "管理员类型-超级管理员_1、非管理员_2"), - Status = table.Column(type: "int", nullable: false, comment: "状态-正常_0、停用_1、删除_2"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_user", x => x.Id); - }, - comment: "用户表"); - - migrationBuilder.CreateTable( - name: "sys_dict_data", - columns: table => new - { - Id = table.Column(type: "bigint", nullable: false, comment: "Id主键"), - TypeId = table.Column(type: "bigint", nullable: false, comment: "字典类型Id"), - Value = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "值"), - Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), - Sort = table.Column(type: "int", nullable: false, comment: "排序"), - Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), - Status = table.Column(type: "int", nullable: false, comment: "状态"), - CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), - UpdatedTime = table.Column(type: "datetime", nullable: true, comment: "更新时间"), - CreatedUserId = table.Column(type: "bigint", nullable: true, comment: "创建者Id"), - CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), - UpdatedUserId = table.Column(type: "bigint", nullable: true, comment: "修改者Id"), - UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), - IsDeleted = table.Column(type: "tinyint(1)", nullable: false, comment: "软删除标记") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_dict_data", x => x.Id); - table.ForeignKey( - name: "FK_sys_dict_data_sys_dict_type_TypeId", - column: x => x.TypeId, - principalTable: "sys_dict_type", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - }, - comment: "字典值表"); - - migrationBuilder.CreateTable( - name: "sys_emp_ext_org_pos", - columns: table => new - { - SysEmpId = table.Column(type: "bigint", nullable: false, comment: "员工Id"), - SysOrgId = table.Column(type: "bigint", nullable: false, comment: "机构Id"), - SysPosId = table.Column(type: "bigint", nullable: false, comment: "职位Id") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_emp_ext_org_pos", x => new { x.SysEmpId, x.SysOrgId, x.SysPosId }); - table.ForeignKey( - name: "FK_sys_emp_ext_org_pos_sys_emp_SysEmpId", - column: x => x.SysEmpId, - principalTable: "sys_emp", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - table.ForeignKey( - name: "FK_sys_emp_ext_org_pos_sys_org_SysOrgId", - column: x => x.SysOrgId, - principalTable: "sys_org", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - table.ForeignKey( - name: "FK_sys_emp_ext_org_pos_sys_pos_SysPosId", - column: x => x.SysPosId, - principalTable: "sys_pos", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - }, - comment: "员工附属机构职位表"); - - migrationBuilder.CreateTable( - name: "sys_emp_pos", - columns: table => new - { - SysEmpId = table.Column(type: "bigint", nullable: false, comment: "员工Id"), - SysPosId = table.Column(type: "bigint", nullable: false, comment: "职位Id") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_emp_pos", x => new { x.SysEmpId, x.SysPosId }); - table.ForeignKey( - name: "FK_sys_emp_pos_sys_emp_SysEmpId", - column: x => x.SysEmpId, - principalTable: "sys_emp", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - table.ForeignKey( - name: "FK_sys_emp_pos_sys_pos_SysPosId", - column: x => x.SysPosId, - principalTable: "sys_pos", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - }, - comment: "员工职位表"); - - migrationBuilder.CreateTable( - name: "sys_role_data_scope", - columns: table => new - { - SysRoleId = table.Column(type: "bigint", nullable: false, comment: "角色Id"), - SysOrgId = table.Column(type: "bigint", nullable: false, comment: "机构Id") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_role_data_scope", x => new { x.SysRoleId, x.SysOrgId }); - table.ForeignKey( - name: "FK_sys_role_data_scope_sys_org_SysOrgId", - column: x => x.SysOrgId, - principalTable: "sys_org", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - table.ForeignKey( - name: "FK_sys_role_data_scope_sys_role_SysRoleId", - column: x => x.SysRoleId, - principalTable: "sys_role", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - }, - comment: "角色数据范围表"); - - migrationBuilder.CreateTable( - name: "sys_role_menu", - columns: table => new - { - SysRoleId = table.Column(type: "bigint", nullable: false, comment: "角色Id"), - SysMenuId = table.Column(type: "bigint", nullable: false, comment: "菜单Id") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_role_menu", x => new { x.SysRoleId, x.SysMenuId }); - table.ForeignKey( - name: "FK_sys_role_menu_sys_menu_SysMenuId", - column: x => x.SysMenuId, - principalTable: "sys_menu", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - table.ForeignKey( - name: "FK_sys_role_menu_sys_role_SysRoleId", - column: x => x.SysRoleId, - principalTable: "sys_role", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - }, - comment: "角色菜单表"); - - migrationBuilder.CreateTable( - name: "sys_user_data_scope", - columns: table => new - { - SysUserId = table.Column(type: "bigint", nullable: false, comment: "用户Id"), - SysOrgId = table.Column(type: "bigint", nullable: false, comment: "机构Id") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_user_data_scope", x => new { x.SysUserId, x.SysOrgId }); - table.ForeignKey( - name: "FK_sys_user_data_scope_sys_org_SysOrgId", - column: x => x.SysOrgId, - principalTable: "sys_org", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - table.ForeignKey( - name: "FK_sys_user_data_scope_sys_user_SysUserId", - column: x => x.SysUserId, - principalTable: "sys_user", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - }, - comment: "用户数据范围表"); - - migrationBuilder.CreateTable( - name: "sys_user_role", - columns: table => new - { - SysUserId = table.Column(type: "bigint", nullable: false, comment: "用户Id"), - SysRoleId = table.Column(type: "bigint", nullable: false, comment: "角色Id") - }, - constraints: table => - { - table.PrimaryKey("PK_sys_user_role", x => new { x.SysUserId, x.SysRoleId }); - table.ForeignKey( - name: "FK_sys_user_role_sys_role_SysRoleId", - column: x => x.SysRoleId, - principalTable: "sys_role", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - table.ForeignKey( - name: "FK_sys_user_role_sys_user_SysUserId", - column: x => x.SysUserId, - principalTable: "sys_user", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - }, - comment: "用户角色表"); - - migrationBuilder.InsertData( - table: "sys_app", - columns: new[] { "Id", "Active", "Code", "Color", "CreatedTime", "CreatedUserId", "CreatedUserName", "Icon", "IsDeleted", "Name", "Sort", "Status", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, - values: new object[,] - { - { 142307070922869L, "N", "busapp", null, null, null, null, null, false, "业务应用", 100, 0, null, null, null }, - { 142307070898245L, "Y", "system", null, null, null, null, null, false, "系统管理", 100, 0, null, null, null }, - { 142307070902341L, "N", "system_tool", null, null, null, null, null, false, "系统工具", 100, 0, null, null, null }, - { 142307070922826L, "N", "advanced", null, null, null, null, null, false, "高级功能", 100, 0, null, null, null } - }); - - migrationBuilder.InsertData( - table: "sys_config", - columns: new[] { "Id", "Code", "CreatedTime", "CreatedUserId", "CreatedUserName", "GroupCode", "IsDeleted", "Name", "Remark", "Status", "SysFlag", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "Value" }, - values: new object[,] - { - { 142307070902360L, "DILON_EMAIL_FROM", null, null, null, "EMAIL", false, "邮箱发件人", "邮箱发件人", 0, "Y", null, null, null, "test@126.com" }, - { 142307070902362L, "DILON_FILE_UPLOAD_PATH_FOR_LINUX", null, null, null, "FILE_PATH", false, "Linux/Mac本地上传文件路径", "Linux/Mac本地上传文件路径", 0, "Y", null, null, null, "/tmp" }, - { 142307070902363L, "DILON_UN_XSS_FILTER_URL", null, null, null, "DEFAULT", false, "放开XSS过滤的接口", "多个url可以用英文逗号隔开", 0, "Y", null, null, null, "/demo/xssfilter,/demo/unxss" }, - { 142307070902364L, "DILON_ENABLE_SINGLE_LOGIN", null, null, null, "DEFAULT", false, "单用户登陆的开关", "true-打开,false-关闭,如果一个人登录两次,就会将上一次登陆挤下去", 0, "Y", null, null, null, "false" }, - { 142307070902365L, "DILON_CAPTCHA_OPEN", null, null, null, "DEFAULT", false, "登录验证码的开关", "true-打开,false-关闭", 0, "Y", null, null, null, "true" }, - { 142307070902366L, "DILON_DRUID_USERNAME", null, null, null, "DEFAULT", false, "Druid监控登录账号", "Druid监控登录账号", 0, "Y", null, null, null, "superAdmin" }, - { 142307070902367L, "DILON_DRUID_PASSWORD", null, null, null, "DEFAULT", false, "Druid监控界面登录密码", "Druid监控界面登录密码", 0, "Y", null, null, null, "123456" }, - { 142307070902369L, "DILON_IP_GEO_APP_CODE", null, null, null, "DEFAULT", false, "阿里云定位appCode", "阿里云定位appCode", 0, "Y", null, null, null, "461535aabeae4f34861884d392f5d452" }, - { 142307070902359L, "DILON_EMAIL_SSL", null, null, null, "EMAIL", false, "邮箱是否开启ssl", "邮箱是否开启ssl", 0, "Y", null, null, null, "true" }, - { 142307070902370L, "DILON_ENABLE_OAUTH_LOGIN", null, null, null, "OAUTH", false, "Oauth用户登录的开关", "Oauth用户登录的开关", 0, "Y", null, null, null, "true" }, - { 142307070902371L, "DILON_OAUTH_GITEE_CLIENT_ID", null, null, null, "OAUTH", false, "Oauth码云登录ClientId", "Oauth码云登录ClientId", 0, "Y", null, null, null, "你的clientId" }, - { 142307070902372L, "DILON_OAUTH_GITEE_CLIENT_SECRET", null, null, null, "OAUTH", false, "Oauth码云登录ClientSecret", "Oauth码云登录ClientSecret", 0, "Y", null, null, null, "你的clientSecret" }, - { 142307070902373L, "DILON_OAUTH_GITEE_REDIRECT_URI", null, null, null, "OAUTH", false, "Oauth码云登录回调地址", "Oauth码云登录回调地址", 0, "Y", null, null, null, "http://127.0.0.1:5566/oauth/callback/gitee" }, - { 142307070902374L, "DILON_DEMO_ENV_FLAG", null, null, null, "DEFAULT", false, "演示环境", "演示环境的开关,true-打开,false-关闭,如果演示环境开启,则只能读数据不能写数据", 0, "Y", null, null, null, "false" }, - { 142307070902368L, "DILON_IP_GEO_API", null, null, null, "DEFAULT", false, "阿里云定位api接口地址", "阿里云定位api接口地址", 0, "Y", null, null, null, "http://api01.aliyun.venuscn.com/ip?ip=%s" }, - { 142307070902358L, "DILON_EMAIL_PORT", null, null, null, "EMAIL", false, "邮箱端口", "邮箱端口", 0, "Y", null, null, null, "465" }, - { 142307070902361L, "DILON_FILE_UPLOAD_PATH_FOR_WINDOWS", null, null, null, "FILE_PATH", false, "Win本地上传文件路径", "Win本地上传文件路径", 0, "Y", null, null, null, "D:/tmp" }, - { 142307070902356L, "DILON_EMAIL_USERNAME", null, null, null, "EMAIL", false, "邮箱用户名", "邮箱用户名", 0, "Y", null, null, null, "test@126.com" }, - { 142307070902342L, "DILON_JWT_SECRET", null, null, null, "DEFAULT", false, "jwt密钥", "(重要)jwt密钥,默认为空,自行设置", 0, "Y", null, null, null, "xiaonuo" }, - { 142307070902343L, "DILON_DEFAULT_PASSWORD", null, null, null, "DEFAULT", false, "默认密码", "默认密码", 0, "Y", null, null, null, "123456" }, - { 142307070902344L, "DILON_TOKEN_EXPIRE", null, null, null, "DEFAULT", false, "token过期时间", "token过期时间(单位:秒)", 0, "Y", null, null, null, "86400" }, - { 142307070902357L, "DILON_EMAIL_PASSWORD", null, null, null, "EMAIL", false, "邮箱密码", "邮箱密码", 0, "Y", null, null, null, "你的邮箱密码" }, - { 142307070902346L, "DILON_ALIYUN_SMS_ACCESSKEY_ID", null, null, null, "ALIYUN_SMS", false, "阿里云短信keyId", "阿里云短信keyId", 0, "Y", null, null, null, "你的keyId" }, - { 142307070902347L, "DILON_ALIYUN_SMS_ACCESSKEY_SECRET", null, null, null, "ALIYUN_SMS", false, "阿里云短信secret", "阿里云短信secret", 0, "Y", null, null, null, "你的secret" }, - { 142307070902348L, "DILON_ALIYUN_SMS_SIGN_NAME", null, null, null, "ALIYUN_SMS", false, "阿里云短信签名", "阿里云短信签名", 0, "Y", null, null, null, "你的签名" }, - { 142307070902345L, "DILON_SESSION_EXPIRE", null, null, null, "DEFAULT", false, "session会话过期时间", "session会话过期时间(单位:秒)", 0, "Y", null, null, null, "7200" }, - { 142307070902350L, "DILON_ALIYUN_SMS_INVALIDATE_MINUTES", null, null, null, "ALIYUN_SMS", false, "阿里云短信默认失效时间", "阿里云短信默认失效时间(单位:分钟)", 0, "Y", null, null, null, "5" }, - { 142307070902351L, "DILON_TENCENT_SMS_SECRET_ID", null, null, null, "TENCENT_SMS", false, "腾讯云短信secretId", "腾讯云短信secretId", 0, "Y", null, null, null, "你的secretId" }, - { 142307070902352L, "DILON_TENCENT_SMS_SECRET_KEY", null, null, null, "TENCENT_SMS", false, "腾讯云短信secretKey", "腾讯云短信secretKey", 0, "Y", null, null, null, "你的secretkey" }, - { 142307070902353L, "DILON_TENCENT_SMS_SDK_APP_ID", null, null, null, "TENCENT_SMS", false, "腾讯云短信sdkAppId", "腾讯云短信sdkAppId", 0, "Y", null, null, null, "1400375123" }, - { 142307070902354L, "DILON_TENCENT_SMS_SIGN", null, null, null, "TENCENT_SMS", false, "腾讯云短信签名", "腾讯云短信签名", 0, "Y", null, null, null, "你的签名" }, - { 142307070902355L, "DILON_EMAIL_HOST", null, null, null, "EMAIL", false, "邮箱host", "邮箱host", 0, "Y", null, null, null, "smtp.126.com" }, - { 142307070902349L, "DILON_ALIYUN_SMS_LOGIN_TEMPLATE_CODE", null, null, null, "ALIYUN_SMS", false, "阿里云短信-登录模板号", "阿里云短信-登录模板号", 0, "Y", null, null, null, "SMS_1877123456" } - }); - - migrationBuilder.InsertData( - table: "sys_dict_type", - columns: new[] { "Id", "Code", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "Name", "Remark", "Sort", "Status", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, - values: new object[,] - { - { 142307070910534L, "notice_type", null, null, null, false, "通知公告类型", "通知公告类型", 100, 0, null, null, null }, - { 142307070910535L, "notice_status", null, null, null, false, "通知公告状态", "通知公告状态", 100, 0, null, null, null }, - { 142307070910536L, "yes_true_false", null, null, null, false, "是否boolean", "是否boolean", 100, 0, null, null, null }, - { 142307070910537L, "code_gen_create_type", null, null, null, false, "代码生成方式", "代码生成方式", 100, 0, null, null, null }, - { 142307070922828L, "code_gen_query_type", null, null, null, false, "代码生成查询类型", "代码生成查询类型", 100, 0, null, null, null }, - { 142307070922827L, "code_gen_effect_type", null, null, null, false, "代码生成作用类型", "代码生成作用类型", 100, 0, null, null, null }, - { 142307070922829L, "code_gen_net_type", null, null, null, false, "代码生成.NET类型", "代码生成.NET类型", 100, 0, null, null, null }, - { 142307070910533L, "run_status", null, null, null, false, "运行状态", "定时任务运行状态", 100, 0, null, null, null }, - { 142307070910538L, "request_type", null, null, null, false, "请求方式", "请求方式", 100, 0, null, null, null }, - { 142307070906494L, "op_type", null, null, null, false, "操作类型", "操作类型", 100, 0, null, null, null }, - { 142307070906495L, "file_storage_location", null, null, null, false, "文件存储位置", "文件存储位置", 100, 0, null, null, null }, - { 142307070906492L, "data_scope_type", null, null, null, false, "数据范围类型", "数据范围类型", 100, 0, null, null, null }, - { 142307070906493L, "sms_send_source", null, null, null, false, "短信发送来源", "短信发送来源", 100, 0, null, null, null }, - { 142307070906484L, "sex", null, null, null, false, "性别", "性别字典", 100, 0, null, null, null }, - { 142307070906485L, "consts_type", null, null, null, false, "常量的分类", "常量的分类,用于区别一组配置", 100, 0, null, null, null }, - { 142307070906486L, "yes_or_no", null, null, null, false, "是否", "是否", 100, 0, null, null, null }, - { 142307070906487L, "vis_type", null, null, null, false, "访问类型", "访问类型", 100, 0, null, null, null }, - { 142307070906483L, "common_status", null, null, null, false, "通用状态", "通用状态", 100, 0, null, null, null }, - { 142307070906489L, "send_type", null, null, null, false, "发送类型", "发送类型", 100, 0, null, null, null }, - { 142307070906490L, "open_type", null, null, null, false, "打开方式", "打开方式", 100, 0, null, null, null }, - { 142307070906491L, "menu_weight", null, null, null, false, "菜单权重", "菜单权重", 100, 0, null, null, null }, - { 142307070906488L, "menu_type", null, null, null, false, "菜单类型", "菜单类型", 100, 0, null, null, null } - }); - - migrationBuilder.InsertData( - table: "sys_emp", - columns: new[] { "Id", "JobNum", "OrgId", "OrgName" }, - values: new object[,] - { - { 142307070910551L, "D1001", 142307070910539L, "华夏集团" }, - { 142307070910552L, "D1002", 142307070910539L, "华夏集团" }, - { 142307070910553L, "D1003", 142307070910539L, "华夏集团" } - }); - - migrationBuilder.InsertData( - table: "sys_menu", - columns: new[] { "Id", "Application", "Code", "Component", "CreatedTime", "CreatedUserId", "CreatedUserName", "Icon", "IsDeleted", "Link", "Name", "OpenType", "Permission", "Pid", "Pids", "Redirect", "Remark", "Router", "Sort", "Status", "Type", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "Visible", "Weight" }, - values: new object[,] - { - { 142307070918736L, "system", "sys_log_mgr_op_log", "system/log/oplog/index", null, null, null, null, false, null, "操作日志", 1, null, 142307070918732L, "[0],[142307070918732],", null, null, "/oplog", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070918732L, "system", "sys_log_mgr", "PageView", null, null, null, "read", false, null, "日志管理", 0, null, 0L, "[0],", null, null, "/log", 100, 0, 0, null, null, null, "Y", 1 }, - { 142307070918733L, "system", "sys_log_mgr_vis_log", "system/log/vislog/index", null, null, null, null, false, null, "访问日志", 1, null, 142307070918732L, "[0],[142307070918732],", null, null, "/vislog", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070918731L, "system", "sys_swagger_mgr", "Iframe", null, null, null, null, false, "http://127.0.0.1:5566/", "接口文档", 2, null, 142307070914662L, "[0],[142307070914662],", null, null, "/swagger", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070918734L, "system", "sys_log_mgr_vis_log_page", null, null, null, null, null, false, null, "访问日志查询", 0, "sysVisLog:page", 142307070918733L, "[0],[142307070918732],[142307070918733],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918735L, "system", "sys_log_mgr_vis_log_delete", null, null, null, null, null, false, null, "访问日志清空", 0, "sysVisLog:delete", 142307070918733L, "[0],[142307070918732],[142307070918733],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918737L, "system", "sys_log_mgr_op_log_page", null, null, null, null, null, false, null, "操作日志查询", 0, "sysOpLog:page", 142307070918736L, "[0],[142307070918732],[142307070918736],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918743L, "system", "sys_monitor_mgr_online_user_list", null, null, null, null, null, false, null, "在线用户列表", 0, "sysOnlineUser:list", 142307070918742L, "[0],[142307070918739],[142307070918742],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918739L, "system", "sys_monitor_mgr", "PageView", null, null, null, "deployment-unit", false, null, "系统监控", 0, null, 0L, "[0],", null, null, "/monitor", 100, 0, 0, null, null, null, "Y", 1 }, - { 142307070918740L, "system", "sys_monitor_mgr_machine_monitor", "system/machine/index", null, null, null, null, false, null, "服务监控", 1, null, 142307070918739L, "[0],[142307070918739],", null, null, "/machine", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070918741L, "system", "sys_monitor_mgr_machine_monitor_query", null, null, null, null, null, false, null, "服务监控查询", 0, "sysMachine:query", 142307070918740L, "[0],[142307070918739],[142307070918740],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918742L, "system", "sys_monitor_mgr_online_user", "system/onlineUser/index", null, null, null, null, false, null, "在线用户", 1, null, 142307070918739L, "[0],[142307070918739],", null, null, "/onlineUser", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070918730L, "system", "sys_dict_mgr_dict_change_status", null, null, null, null, null, false, null, "字典值修改状态", 0, "sysDictData:changeStatus", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918744L, "system", "sys_monitor_mgr_online_user_force_exist", null, null, null, null, null, false, null, "在线用户强退", 0, "sysOnlineUser:forceExist", 142307070918742L, "[0],[142307070918739],[142307070918742],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918745L, "system", "sys_monitor_mgr_druid", "Iframe", null, null, null, null, false, "http://localhost:82/druid/login.html", "数据监控", 2, null, 142307070918739L, "[0],[142307070918739],", null, null, "/druid", 100, 0, 1, null, null, null, "N", 1 }, - { 142307070918738L, "system", "sys_log_mgr_op_log_delete", null, null, null, null, null, false, null, "操作日志清空", 0, "sysOpLog:delete", 142307070918736L, "[0],[142307070918732],[142307070918736],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918729L, "system", "sys_role_mgr_grant_data", null, null, null, null, null, false, null, "字典值详情", 0, "sysDictData:detail", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914685L, "system", "sys_dict_mgr_dict_type_drop_down", null, null, null, null, null, false, null, "字典类型下拉", 0, "sysDictType:dropDown", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918727L, "system", "sys_dict_mgr_dict_delete", null, null, null, null, null, false, null, "字典值删除", 0, "sysDictData:delete", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918746L, "system", "sys_notice", "PageView", null, null, null, "sound", false, null, "通知公告", 0, null, 0L, "[0],", null, null, "/notice", 100, 0, 0, null, null, null, "Y", 1 }, - { 142307070914674L, "system", "sys_sms_mgr", "system/sms/index", null, null, null, null, false, null, "短信管理", 1, null, 142307070914662L, "[0],[142307070914662],", null, null, "/sms", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070914675L, "system", "sys_sms_mgr_page", null, null, null, null, null, false, null, "短信发送查询", 0, "sms:page", 142307070914674L, "[0],[142307070914662],[142307070914674],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914676L, "system", "sys_sms_mgr_send_login_message", null, null, null, null, null, false, null, "发送验证码短信", 0, "sms:sendLoginMessage", 142307070914674L, "[0],[142307070914662],[142307070914674],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914677L, "system", "sys_sms_mgr_validate_message", null, null, null, null, null, false, null, "验证短信验证码", 0, "sms:validateMessage", 142307070914674L, "[0],[142307070914662],[142307070914674],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914678L, "system", "sys_dict_mgr", "system/dict/index", null, null, null, null, false, null, "字典管理", 1, null, 142307070914662L, "[0],[142307070914662],", null, null, "/dict", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070914679L, "system", "sys_dict_mgr_dict_type_page", null, null, null, null, null, false, null, "字典类型查询", 0, "sysDictType:page", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918728L, "system", "sys_dict_mgr_dict_edit", null, null, null, null, null, false, null, "字典值编辑", 0, "sysDictData:edit", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914680L, "system", "sys_dict_mgr_dict_type_list", null, null, null, null, null, false, null, "字典类型列表", 0, "sysDictType:list", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914682L, "system", "sys_dict_mgr_dict_type_delete", null, null, null, null, null, false, null, "字典类型删除", 0, "sysDictType:delete", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914683L, "system", "sys_dict_mgr_dict_type_edit", null, null, null, null, null, false, null, "字典类型编辑", 0, "sysDictType:edit", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914684L, "system", "sys_dict_mgr_dict_type_detail", null, null, null, null, null, false, null, "字典类型详情", 0, "sysDictType:detail", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914686L, "system", "sys_dict_mgr_dict_type_change_status", null, null, null, null, null, false, null, "字典类型修改状态", 0, "sysDictType:changeStatus", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914687L, "system", "sys_dict_mgr_dict_page", null, null, null, null, null, false, null, "字典值查询", 0, "sysDictData:page", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918725L, "system", "sys_dict_mgr_dict_list", null, null, null, null, null, false, null, "字典值列表", 0, "sysDictData:list", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918726L, "system", "sys_dict_mgr_dict_add", null, null, null, null, null, false, null, "字典值增加", 0, "sysDictData:add", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914681L, "system", "sys_dict_mgr_dict_type_add", null, null, null, null, null, false, null, "字典类型增加", 0, "sysDictType:add", 142307070914678L, "[0],[142307070914662],[142307070914678],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918747L, "system", "sys_notice_mgr", "system/notice/index", null, null, null, null, false, null, "公告管理", 1, null, 142307070918746L, "[0],[142307070918746],", null, null, "/notice", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070918782L, "advanced", "sys_tenant", "PageView", null, null, null, "switcher", false, null, "SaaS租户", 0, null, 0L, "[0],", null, null, "/tenant", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070918749L, "system", "sys_notice_mgr_add", null, null, null, null, null, false, null, "公告增加", 0, "sysNotice:add", 142307070918747L, "[0],[142307070918746],[142307070918747],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918770L, "system", "sys_timers_mgr_add", null, null, null, null, null, false, null, "定时任务增加", 0, "sysTimers:add", 142307070918766L, "[0],[142307070918765],[142307070918766],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918771L, "system", "sys_timers_mgr_delete", null, null, null, null, null, false, null, "定时任务删除", 0, "sysTimers:delete", 142307070918766L, "[0],[142307070918765],[142307070918766],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918772L, "system", "sys_timers_mgr_edit", null, null, null, null, null, false, null, "定时任务编辑", 0, "sysTimers:edit", 142307070918766L, "[0],[142307070918765],[142307070918766],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918773L, "system", "sys_timers_mgr_get_action_classes", null, null, null, null, null, false, null, "定时任务可执行列表", 0, "sysTimers:getActionClasses", 142307070918766L, "[0],[142307070918765],[142307070918766],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918774L, "system", "sys_timers_mgr_start", null, null, null, null, null, false, null, "定时任务启动", 0, "sysTimers:start", 142307070918766L, "[0],[142307070918765],[142307070918766],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918775L, "system", "sys_timers_mgr_stop", null, null, null, null, null, false, null, "定时任务关闭", 0, "sysTimers:stop", 142307070918766L, "[0],[142307070918765],[142307070918766],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918776L, "system_tool", "code_gen", "gen/codeGenerate/index", null, null, null, "thunderbolt", false, null, "代码生成", 0, null, 0L, "[0],", null, null, "/codeGenerate/index", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070922870L, "system_tool", "form_design", "system/formDesign/index", null, null, null, "robot", false, null, "表单设计", 0, null, 0L, "[0],", null, null, "/formDesign/index", 100, 0, 1, null, null, null, "Y", 1 } - }); - - migrationBuilder.InsertData( - table: "sys_menu", - columns: new[] { "Id", "Application", "Code", "Component", "CreatedTime", "CreatedUserId", "CreatedUserName", "Icon", "IsDeleted", "Link", "Name", "OpenType", "Permission", "Pid", "Pids", "Redirect", "Remark", "Router", "Sort", "Status", "Type", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "Visible", "Weight" }, - values: new object[,] - { - { 142307070914673L, "system", "sys_email_mgr_send_email_html", null, null, null, null, null, false, null, "发送html邮件", 0, "email:sendEmailHtml", 142307070914671L, "[0],[142307070914662],[142307070914671],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918783L, "advanced", "sys_tenant_mgr", "system/tenant/index", null, null, null, null, false, null, "租户管理", 1, null, 142307070918782L, "[0],[142307070918782],", null, null, "/tenant", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070922821L, "advanced", "sys_tenant_mgr_page", null, null, null, null, null, false, null, "租户查询", 0, "sysTenant:page", 142307070918783L, "[0],[142307070918782],[142307070918783],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070922822L, "advanced", "sys_tenant_mgr_detail", null, null, null, null, null, false, null, "租户详情", 0, "sysTenant:detail", 142307070918783L, "[0],[142307070918782],[142307070918783],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070922823L, "advanced", "sys_tenant_mgr_add", null, null, null, null, null, false, null, "租户增加", 0, "sysTenant:add", 142307070918783L, "[0],[142307070918782],[142307070918783],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070922824L, "advanced", "sys_tenant_mgr_delete", null, null, null, null, null, false, null, "租户删除", 0, "sysTenant:delete", 142307070918783L, "[0],[142307070918782],[142307070918783],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070922825L, "advanced", "sys_tenant_mgr_edit", null, null, null, null, null, false, null, "租户编辑", 0, "sysTenant:edit", 142307070918783L, "[0],[142307070918782],[142307070918783],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918769L, "system", "sys_timers_mgr_detail", null, null, null, null, null, false, null, "定时任务详情", 0, "sysTimers:detail", 142307070918766L, "[0],[142307070918765],[142307070918766],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918768L, "system", "sys_timers_mgr_list", null, null, null, null, null, false, null, "定时任务列表", 0, "sysTimers:list", 142307070918766L, "[0],[142307070918765],[142307070918766],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918767L, "system", "sys_timers_mgr_page", null, null, null, null, null, false, null, "定时任务查询", 0, "sysTimers:page", 142307070918766L, "[0],[142307070918765],[142307070918766],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918766L, "system", "sys_timers_mgr", "system/timers/index", null, null, null, null, false, null, "任务管理", 1, null, 142307070918765L, "[0],[142307070918765],", null, null, "/timers", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070918750L, "system", "sys_notice_mgr_edit", null, null, null, null, null, false, null, "公告编辑", 0, "sysNotice:edit", 142307070918747L, "[0],[142307070918746],[142307070918747],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918751L, "system", "sys_notice_mgr_delete", null, null, null, null, null, false, null, "公告删除", 0, "sysNotice:delete", 142307070918747L, "[0],[142307070918746],[142307070918747],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918752L, "system", "sys_notice_mgr_detail", null, null, null, null, null, false, null, "公告查看", 0, "sysNotice:detail", 142307070918747L, "[0],[142307070918746],[142307070918747],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918753L, "system", "sys_notice_mgr_changeStatus", null, null, null, null, null, false, null, "公告修改状态", 0, "sysNotice:changeStatus", 142307070918747L, "[0],[142307070918746],[142307070918747],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918754L, "system", "sys_notice_mgr_received", "system/noticeReceived/index", null, null, null, null, false, null, "已收公告", 1, null, 142307070918746L, "[0],[142307070918746],", null, null, "/noticeReceived", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070918755L, "system", "sys_notice_mgr_received_page", null, null, null, null, null, false, null, "已收公告查询", 0, "sysNotice:received", 142307070918754L, "[0],[142307070918746],[142307070918754],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918756L, "system", "sys_file_mgr", "PageView", null, null, null, "file", false, null, "文件管理", 0, null, 0L, "[0],", null, null, "/file", 100, 0, 0, null, null, null, "Y", 1 }, - { 142307070918748L, "system", "sys_notice_mgr_page", null, null, null, null, null, false, null, "公告查询", 0, "sysNotice:page", 142307070918747L, "[0],[142307070918746],[142307070918747],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918757L, "system", "sys_file_mgr_sys_file", "system/file/index", null, null, null, null, false, null, "系统文件", 1, null, 142307070918756L, "[0],[142307070918756],", null, null, "/file", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070918759L, "system", "sys_file_mgr_sys_file_list", null, null, null, null, null, false, null, "文件列表", 0, "sysFileInfo:list", 142307070918757L, "[0],[142307070918756],[142307070918757],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918760L, "system", "sys_file_mgr_sys_file_delete", null, null, null, null, null, false, null, "文件删除", 0, "sysFileInfo:delete", 142307070918757L, "[0],[142307070918756],[142307070918757],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918761L, "system", "sys_file_mgr_sys_file_detail", null, null, null, null, null, false, null, "文件详情", 0, "sysFileInfo:detail", 142307070918757L, "[0],[142307070918756],[142307070918757],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918762L, "system", "sys_file_mgr_sys_file_upload", null, null, null, null, null, false, null, "文件上传", 0, "sysFileInfo:upload", 142307070918757L, "[0],[142307070918756],[142307070918757],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918763L, "system", "sys_file_mgr_sys_file_download", null, null, null, null, null, false, null, "文件下载", 0, "sysFileInfo:download", 142307070918757L, "[0],[142307070918756],[142307070918757],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918764L, "system", "sys_file_mgr_sys_file_preview", null, null, null, null, null, false, null, "图片预览", 0, "sysFileInfo:preview", 142307070918757L, "[0],[142307070918756],[142307070918757],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918765L, "system", "sys_timers", "PageView", null, null, null, "dashboard", false, null, "定时任务", 0, null, 0L, "[0],", null, null, "/timers", 100, 0, 0, null, null, null, "Y", 1 }, - { 142307070918758L, "system", "sys_file_mgr_sys_file_page", null, null, null, null, null, false, null, "文件查询", 0, "sysFileInfo:page", 142307070918757L, "[0],[142307070918756],[142307070918757],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914672L, "system", "sys_email_mgr_send_email", null, null, null, null, null, false, null, "发送文本邮件", 0, "email:sendEmail", 142307070914671L, "[0],[142307070914662],[142307070914671],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914649L, "system", "sys_menu_mgr_tree", null, null, null, null, null, false, null, "菜单树", 0, "sysMenu:tree", 142307070914642L, "[0],[142307070914633],[142307070914642],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914670L, "system", "sys_app_mgr_set_as_default", null, null, null, null, null, false, null, "设为默认应用", 0, "sysApp:setAsDefault", 142307070914663L, "[0],[142307070914662],[142307070914663],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910580L, "system", "sys_user_mgr_reset_pwd", null, null, null, null, null, false, null, "用户重置密码", 0, "sysUser:resetPwd", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070918777L, "system", "sys_user_mgr_login", null, null, null, null, null, false, null, "用户登录信息", 0, "getLoginUser", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 1, 2, null, null, null, "N", 1 }, - { 142307070910581L, "system", "sys_org_mgr", "system/org/index", null, null, null, null, false, null, "机构管理", 1, null, 142307070910563L, "[0],[142307070910563],", null, null, "/org", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070910582L, "system", "sys_org_mgr_page", null, null, null, null, null, false, null, "机构查询", 0, "sysOrg:page", 142307070910581L, "[0],[142307070910563],[142307070910581],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910583L, "system", "sys_org_mgr_list", null, null, null, null, null, false, null, "机构列表", 0, "sysOrg:list", 142307070910581L, "[0],[142307070910563],[142307070910581],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910584L, "system", "sys_org_mgr_add", null, null, null, null, null, false, null, "机构增加", 0, "sysOrg:add", 142307070910581L, "[0],[142307070910563],[142307070910581],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910585L, "system", "sys_org_mgr_edit", null, null, null, null, null, false, null, "机构编辑", 0, "sysOrg:edit", 142307070910581L, "[0],[142307070910563],[142307070910581],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910586L, "system", "sys_org_mgr_delete", null, null, null, null, null, false, null, "机构删除", 0, "sysOrg:delete", 142307070910581L, "[0],[142307070910563],[142307070910581],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914671L, "system", "sys_email_mgr", "system/email/index", null, null, null, null, false, null, "邮件发送", 1, null, 142307070914662L, "[0],[142307070914662],", null, null, "/email", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070910588L, "system", "sys_org_mgr_tree", null, null, null, null, null, false, null, "机构树", 0, "sysOrg:tree", 142307070910581L, "[0],[142307070910563],[142307070910581],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910589L, "system", "sys_pos_mgr", "system/pos/index", null, null, null, null, false, null, "职位管理", 1, null, 142307070910563L, "[0],[142307070910563],", null, null, "/pos", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070910590L, "system", "sys_pos_mgr_page", null, null, null, null, null, false, null, "职位查询", 0, "sysPos:page", 142307070910589L, "[0],[142307070910563],[142307070910589],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910591L, "system", "sys_pos_mgr_list", null, null, null, null, null, false, null, "职位列表", 0, "sysPos:list", 142307070910589L, "[0],[142307070910563],[142307070910589],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914629L, "system", "sys_pos_mgr_add", null, null, null, null, null, false, null, "职位增加", 0, "sysPos:add", 142307070910589L, "[0],[142307070910563],[142307070910589],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914630L, "system", "sys_pos_mgr_edit", null, null, null, null, null, false, null, "职位编辑", 0, "sysPos:edit", 142307070910589L, "[0],[142307070910563],[142307070910589],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910579L, "system", "sys_user_mgr_update_avatar", null, null, null, null, null, false, null, "用户修改头像", 0, "sysUser:updateAvatar", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910578L, "system", "sys_user_mgr_change_status", null, null, null, null, null, false, null, "用户修改状态", 0, "sysUser:changeStatus", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910577L, "system", "sys_user_mgr_update_pwd", null, null, null, null, null, false, null, "用户修改密码", 0, "sysUser:updatePwd", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910576L, "system", "sys_user_mgr_update_info", null, null, null, null, null, false, null, "用户更新信息", 0, "sysUser:updateInfo", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910560L, "system", "system_index", "RouteView", null, null, null, "home", false, null, "主控面板", 0, null, 0L, "[0],", "/analysis", null, "/", 1, 0, 0, null, null, null, "Y", 1 }, - { 142307070910561L, "system", "system_index_dashboard", "system/dashboard/Analysis", null, null, null, null, false, null, "分析页", 0, null, 142307070910560L, "[0],[142307070910560],", null, null, "analysis", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070910562L, "system", "system_index_workplace", "system/dashboard/Workplace", null, null, null, null, false, null, "工作台", 0, null, 142307070910560L, "[0],[142307070910560],", null, null, "workplace", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070910563L, "system", "sys_mgr", "PageView", null, null, null, "team", false, null, "组织架构", 0, null, 0L, "[0],", null, null, "/sys", 100, 0, 0, null, null, null, "Y", 1 }, - { 142307070910564L, "system", "sys_user_mgr", "system/user/index", null, null, null, null, false, null, "用户管理", 1, null, 142307070910563L, "[0],[142307070910563],", null, null, "/mgr_user", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070910565L, "system", "sys_user_mgr_page", null, null, null, null, null, false, null, "用户查询", 0, "sysUser:page", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910566L, "system", "sys_user_mgr_edit", null, null, null, null, null, false, null, "用户编辑", 0, "sysUser:edit", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914631L, "system", "sys_pos_mgr_delete", null, null, null, null, null, false, null, "职位删除", 0, "sysPos:delete", 142307070910589L, "[0],[142307070910563],[142307070910589],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910567L, "system", "sys_user_mgr_add", null, null, null, null, null, false, null, "用户增加", 0, "sysUser:add", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910569L, "system", "sys_user_mgr_detail", null, null, null, null, null, false, null, "用户详情", 0, "sysUser:detail", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910570L, "system", "sys_user_mgr_export", null, null, null, null, null, false, null, "用户导出", 0, "sysUser:export", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910571L, "system", "sys_user_mgr_selector", null, null, null, null, null, false, null, "用户选择器", 0, "sysUser:selector", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910572L, "system", "sys_user_mgr_grant_role", null, null, null, null, null, false, null, "用户授权角色", 0, "sysUser:grantRole", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910573L, "system", "sys_user_mgr_own_role", null, null, null, null, null, false, null, "用户拥有角色", 0, "sysUser:ownRole", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910574L, "system", "sys_user_mgr_grant_data", null, null, null, null, null, false, null, "用户授权数据", 0, "sysUser:grantData", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910575L, "system", "sys_user_mgr_own_data", null, null, null, null, null, false, null, "用户拥有数据", 0, "sysUser:ownData", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910568L, "system", "sys_user_mgr_delete", null, null, null, null, null, false, null, "用户删除", 0, "sysUser:delete", 142307070910564L, "[0],[142307070910563],[142307070910564],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914632L, "system", "sys_pos_mgr_detail", null, null, null, null, null, false, null, "职位详情", 0, "sysPos:detail", 142307070910589L, "[0],[142307070910563],[142307070910589],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070910587L, "system", "sys_org_mgr_detail", null, null, null, null, null, false, null, "机构详情", 0, "sysOrg:detail", 142307070910581L, "[0],[142307070910563],[142307070910581],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914634L, "system", "sys_app_mgr", "system/app/index", null, null, null, null, false, null, "应用管理", 1, null, 142307070914633L, "[0],[142307070914633],", null, null, "/app", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070914655L, "system", "sys_role_mgr_delete", null, null, null, null, null, false, null, "角色删除", 0, "sysRole:delete", 142307070914651L, "[0],[142307070914633],[142307070914651],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914656L, "system", "sys_role_mgr_detail", null, null, null, null, null, false, null, "角色详情", 0, "sysRole:detail", 142307070914651L, "[0],[142307070914633],[142307070914651],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914657L, "system", "sys_role_mgr_drop_down", null, null, null, null, null, false, null, "角色下拉", 0, "sysRole:dropDown", 142307070914651L, "[0],[142307070914633],[142307070914651],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914658L, "system", "sys_role_mgr_grant_menu", null, null, null, null, null, false, null, "角色授权菜单", 0, "sysRole:grantMenu", 142307070914651L, "[0],[142307070914633],[142307070914651],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914659L, "system", "sys_role_mgr_own_menu", null, null, null, null, null, false, null, "角色拥有菜单", 0, "sysRole:ownMenu", 142307070914651L, "[0],[142307070914633],[142307070914651],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914633L, "system", "auth_manager", "PageView", null, null, null, "safety-certificate", false, null, "权限管理", 0, null, 0L, "[0],", null, null, "/auth", 100, 0, 0, null, null, null, "Y", 1 }, - { 142307070914661L, "system", "sys_role_mgr_own_data", null, null, null, null, null, false, null, "角色拥有数据", 0, "sysRole:ownData", 142307070914651L, "[0],[142307070914633],[142307070914651],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914662L, "system", "system_tools", "PageView", null, null, null, "euro", false, null, "开发管理", 0, null, 0L, "[0],", null, null, "/tools", 100, 0, 0, null, null, null, "Y", 1 }, - { 142307070914663L, "system", "system_tools_config", "system/config/index", null, null, null, null, false, null, "系统配置", 1, null, 142307070914662L, "[0],[142307070914662],", null, null, "/config", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070914664L, "system", "system_tools_config_page", null, null, null, null, null, false, null, "配置查询", 0, "sysConfig:page", 142307070914663L, "[0],[142307070914662],[142307070914663],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 } - }); - - migrationBuilder.InsertData( - table: "sys_menu", - columns: new[] { "Id", "Application", "Code", "Component", "CreatedTime", "CreatedUserId", "CreatedUserName", "Icon", "IsDeleted", "Link", "Name", "OpenType", "Permission", "Pid", "Pids", "Redirect", "Remark", "Router", "Sort", "Status", "Type", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "Visible", "Weight" }, - values: new object[,] - { - { 142307070914665L, "system", "system_tools_config_list", null, null, null, null, null, false, null, "配置列表", 0, "sysConfig:list", 142307070914663L, "[0],[142307070914662],[142307070914663],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914666L, "system", "system_tools_config_add", null, null, null, null, null, false, null, "配置增加", 0, "sysConfig:add", 142307070914663L, "[0],[142307070914662],[142307070914663],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914667L, "system", "system_tools_config_edit", null, null, null, null, null, false, null, "配置编辑", 0, "sysConfig:edit", 142307070914663L, "[0],[142307070914662],[142307070914663],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914668L, "system", "system_tools_config_delete", null, null, null, null, null, false, null, "配置删除", 0, "sysConfig:delete", 142307070914663L, "[0],[142307070914662],[142307070914663],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914669L, "system", "system_tools_config_detail", null, null, null, null, null, false, null, "配置详情", 0, "sysConfig:detail", 142307070914663L, "[0],[142307070914662],[142307070914663],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914654L, "system", "sys_role_mgr_edit", null, null, null, null, null, false, null, "角色编辑", 0, "sysRole:edit", 142307070914651L, "[0],[142307070914633],[142307070914651],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914653L, "system", "sys_role_mgr_add", null, null, null, null, null, false, null, "角色增加", 0, "sysRole:add", 142307070914651L, "[0],[142307070914633],[142307070914651],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914660L, "system", "sys_role_mgr_grant_data", null, null, null, null, null, false, null, "角色授权数据", 0, "sysRole:grantData", 142307070914651L, "[0],[142307070914633],[142307070914651],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914651L, "system", "sys_role_mgr", "system/role/index", null, null, null, null, false, null, "角色管理", 1, null, 142307070914633L, "[0],[142307070914633],", null, null, "/role", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070914652L, "system", "sys_role_mgr_page", null, null, null, null, null, false, null, "角色查询", 0, "sysRole:page", 142307070914651L, "[0],[142307070914633],[142307070914651],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914635L, "system", "sys_app_mgr_page", null, null, null, null, null, false, null, "应用查询", 0, "sysApp:page", 142307070914634L, "[0],[142307070914633],[142307070914634],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914636L, "system", "sys_app_mgr_list", null, null, null, null, null, false, null, "应用列表", 0, "sysApp:list", 142307070914634L, "[0],[142307070914633],[142307070914634],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914637L, "system", "sys_app_mgr_add", null, null, null, null, null, false, null, "应用增加", 0, "sysApp:add", 142307070914634L, "[0],[142307070914633],[142307070914634],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914638L, "system", "sys_app_mgr_edit", null, null, null, null, null, false, null, "应用编辑", 0, "sysApp:edit", 142307070914634L, "[0],[142307070914633],[142307070914634],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914639L, "system", "sys_app_mgr_delete", null, null, null, null, null, false, null, "应用删除", 0, "sysApp:delete", 142307070914634L, "[0],[142307070914633],[142307070914634],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914640L, "system", "sys_app_mgr_detail", null, null, null, null, null, false, null, "应用详情", 0, "sysApp:detail", 142307070914634L, "[0],[142307070914633],[142307070914634],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914642L, "system", "sys_menu_mgr", "system/menu/index", null, null, null, null, false, null, "菜单管理", 1, null, 142307070914633L, "[0],[142307070914633],", null, null, "/menu", 100, 0, 1, null, null, null, "Y", 1 }, - { 142307070914641L, "system", "sys_app_mgr_set_as_default", null, null, null, null, null, false, null, "设为默认应用", 0, "sysApp:setAsDefault", 142307070914634L, "[0],[142307070914633],[142307070914634],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914644L, "system", "sys_menu_mgr_add", null, null, null, null, null, false, null, "菜单增加", 0, "sysMenu:add", 142307070914642L, "[0],[142307070914633],[142307070914642],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914645L, "system", "sys_menu_mgr_edit", null, null, null, null, null, false, null, "菜单编辑", 0, "sysMenu:edit", 142307070914642L, "[0],[142307070914633],[142307070914642],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914646L, "system", "sys_menu_mgr_delete", null, null, null, null, null, false, null, "菜单删除", 0, "sysMenu:delete", 142307070914642L, "[0],[142307070914633],[142307070914642],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914647L, "system", "sys_menu_mgr_detail", null, null, null, null, null, false, null, "菜单详情", 0, "sysMenu:detail", 142307070914642L, "[0],[142307070914633],[142307070914642],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914648L, "system", "sys_menu_mgr_grant_tree", null, null, null, null, null, false, null, "菜单授权树", 0, "sysMenu:treeForGrant", 142307070914642L, "[0],[142307070914633],[142307070914642],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914650L, "system", "sys_menu_mgr_change", null, null, null, null, null, false, null, "菜单切换", 0, "sysMenu:change", 142307070914642L, "[0],[142307070914633],[142307070914642],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 }, - { 142307070914643L, "system", "sys_menu_mgr_list", null, null, null, null, null, false, null, "菜单列表", 0, "sysMenu:list", 142307070914642L, "[0],[142307070914633],[142307070914642],", null, null, null, 100, 0, 2, null, null, null, "Y", 1 } - }); - - migrationBuilder.InsertData( - table: "sys_org", - columns: new[] { "Id", "Code", "Contacts", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "Name", "Pid", "Pids", "Remark", "Sort", "Status", "Tel", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, - values: new object[,] - { - { 142307070910544L, "hxjt_cd_scb", null, null, null, null, false, "市场部", 142307070910541L, "[0],[142307070910539],[142307070910541],", "华夏集团成都分公司市场部", 100, 0, null, null, null, null }, - { 142307070910546L, "hxjt_cd_scb_2b", null, null, null, null, false, "市场部二部", 142307070910544L, "[0],[142307070910539],[142307070910541],[142307070910544],", "华夏集团成都分公司市场部二部", 100, 0, null, null, null, null }, - { 142307070910545L, "hxjt_cd_cwb", null, null, null, null, false, "财务部", 142307070910541L, "[0],[142307070910539],[142307070910541],", "华夏集团成都分公司财务部", 100, 0, null, null, null, null }, - { 142307070910543L, "hxjt_bj_qhb", null, null, null, null, false, "企划部", 142307070910540L, "[0],[142307070910539],[142307070910540],", "华夏集团北京分公司企划部", 100, 0, null, null, null, null }, - { 142307070910539L, "hxjt", null, null, null, null, false, "华夏集团", 0L, "[0],", "华夏集团", 100, 0, null, null, null, null }, - { 142307070910541L, "hxjt_cd", null, null, null, null, false, "华夏集团成都分公司", 142307070910539L, "[0],[142307070910539],", "华夏集团成都分公司", 100, 0, null, null, null, null }, - { 142307070910540L, "hxjt_bj", null, null, null, null, false, "华夏集团北京分公司", 142307070910539L, "[0],[142307070910539],", "华夏集团北京分公司", 100, 0, null, null, null, null }, - { 142307070910542L, "hxjt_bj_yfb", null, null, null, null, false, "研发部", 142307070910540L, "[0],[142307070910539],[142307070910540],", "华夏集团北京分公司研发部", 100, 0, null, null, null, null } - }); - - migrationBuilder.InsertData( - table: "sys_pos", - columns: new[] { "Id", "Code", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "Name", "Remark", "Sort", "Status", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, - values: new object[,] - { - { 142307070910547L, "zjl", null, null, null, false, "总经理", "总经理", 100, 0, null, null, null }, - { 142307070910548L, "fzjl", null, null, null, false, "副总经理", "副总经理", 101, 0, null, null, null }, - { 142307070910549L, "bmjl", null, null, null, false, "部门经理", "部门经理", 102, 0, null, null, null }, - { 142307070910550L, "gzry", null, null, null, false, "工作人员", "工作人员", 103, 0, null, null, null } - }); - - migrationBuilder.InsertData( - table: "sys_role", - columns: new[] { "Id", "Code", "CreatedTime", "CreatedUserId", "CreatedUserName", "DataScopeType", "IsDeleted", "Name", "Remark", "Sort", "Status", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, - values: new object[,] - { - { 142307070910554L, "sys_manager_role", null, null, null, 1, false, "系统管理员", "系统管理员", 100, 0, null, null, null }, - { 142307070910555L, "common_role", null, null, null, 5, false, "普通用户", "普通用户", 101, 0, null, null, null } - }); - - migrationBuilder.InsertData( - table: "sys_timer", - columns: new[] { "Id", "BeginTime", "CreatedTime", "CreatedUserId", "CreatedUserName", "Cron", "EndTime", "Headers", "Interval", "IsDeleted", "JobGroup", "JobName", "Remark", "RequestParameters", "RequestType", "RequestUrl", "RunNumber", "TriggerType", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, - values: new object[] { 142307070910556L, new DateTimeOffset(new DateTime(2021, 3, 21, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), null, null, null, null, null, null, 30, false, "默认分组", "百度api", null, null, 2, "https://www.baidu.com", null, 1, null, null, null }); - - migrationBuilder.InsertData( - table: "sys_user", - columns: new[] { "Id", "Account", "AdminType", "Avatar", "Birthday", "CreatedTime", "CreatedUserId", "CreatedUserName", "Email", "IsDeleted", "LastLoginIp", "LastLoginTime", "Name", "NickName", "Password", "Phone", "Sex", "Status", "Tel", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, - values: new object[,] - { - { 142307070910552L, "admin", 1, null, new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), null, null, null, null, false, null, new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0)), "admin", null, "e10adc3949ba59abbe56e057f20f883e", "18020030720", 2, 0, null, null, null, null }, - { 142307070910551L, "superAdmin", 1, null, new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), null, null, null, null, false, null, new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0)), "superAdmin", null, "e10adc3949ba59abbe56e057f20f883e", "18020030720", 1, 0, null, null, null, null }, - { 142307070910553L, "zuohuaijun", 2, null, new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), null, null, null, null, false, null, new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0)), "zuohuaijun", null, "e10adc3949ba59abbe56e057f20f883e", "18020030720", 1, 0, null, null, null, null } - }); - - migrationBuilder.InsertData( - table: "sys_dict_data", - columns: new[] { "Id", "Code", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "Remark", "Sort", "Status", "TypeId", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "Value" }, - values: new object[,] - { - { 142307070902384L, "0", null, null, null, false, "正常", 100, 0, 142307070906483L, null, null, null, "正常" }, - { 142307070922830L, "input", null, null, null, false, "输入框", 100, 0, 142307070922827L, null, null, null, "输入框" }, - { 142307070906482L, "4", null, null, null, false, "DELETE", 100, 0, 142307070910538L, null, null, null, "DELETE" }, - { 142307070906481L, "3", null, null, null, false, "PUT", 100, 0, 142307070910538L, null, null, null, "PUT" }, - { 142307070906480L, "2", null, null, null, false, "POST", 100, 0, 142307070910538L, null, null, null, "POST" }, - { 142307070906479L, "1", null, null, null, false, "GET", 100, 0, 142307070910538L, null, null, null, "GET" }, - { 142307070906478L, "2", null, null, null, false, "生成到本项目", 100, 0, 142307070910537L, null, null, null, "生成到本项目" }, - { 142307070906477L, "1", null, null, null, false, "下载压缩包", 100, 0, 142307070910537L, null, null, null, "下载压缩包" }, - { 142307070906476L, "false", null, null, null, false, "否", 100, 0, 142307070910536L, null, null, null, "否" }, - { 142307070906475L, "true", null, null, null, false, "是", 100, 0, 142307070910536L, null, null, null, "是" }, - { 142307070922831L, "datepicker", null, null, null, false, "时间选择", 100, 0, 142307070922827L, null, null, null, "时间选择" }, - { 142307070906474L, "3", null, null, null, false, "删除", 100, 0, 142307070910535L, null, null, null, "删除" }, - { 142307070906472L, "1", null, null, null, false, "发布", 100, 0, 142307070910535L, null, null, null, "发布" }, - { 142307070906471L, "0", null, null, null, false, "草稿", 100, 0, 142307070910535L, null, null, null, "草稿" }, - { 142307070906470L, "2", null, null, null, false, "公告", 100, 0, 142307070910534L, null, null, null, "公告" }, - { 142307070906469L, "1", null, null, null, false, "通知", 100, 0, 142307070910534L, null, null, null, "通知" }, - { 142307070906468L, "2", null, null, null, false, "停止", 100, 0, 142307070910533L, null, null, null, "停止" }, - { 142307070906467L, "1", null, null, null, false, "运行", 100, 0, 142307070910533L, null, null, null, "运行" }, - { 142307070906466L, "4", null, null, null, false, "本地", 100, 0, 142307070906495L, null, null, null, "本地" }, - { 142307070906465L, "3", null, null, null, false, "minio", 100, 0, 142307070906495L, null, null, null, "minio" }, - { 142307070906463L, "1", null, null, null, false, "阿里云", 100, 0, 142307070906495L, null, null, null, "阿里云" }, - { 142307070906473L, "2", null, null, null, false, "撤回", 100, 0, 142307070910535L, null, null, null, "撤回" }, - { 142307070922832L, "select", null, null, null, false, "下拉框", 100, 0, 142307070922827L, null, null, null, "下拉框" }, - { 142307070922833L, "radio", null, null, null, false, "单选框", 100, 0, 142307070922827L, null, null, null, "单选框" }, - { 142307070922834L, "switch", null, null, null, false, "开关", 100, 0, 142307070922827L, null, null, null, "开关" }, - { 142307070922864L, "DateTimeOffset", null, null, null, false, "DateTimeOffset", 100, 0, 142307070922829L, null, null, null, "DateTimeOffset" }, - { 142307070922863L, "Guid", null, null, null, false, "Guid", 100, 0, 142307070922829L, null, null, null, "Guid" }, - { 142307070922862L, "decimal", null, null, null, false, "decimal", 100, 0, 142307070922829L, null, null, null, "decimal" }, - { 142307070922861L, "float", null, null, null, false, "float", 100, 0, 142307070922829L, null, null, null, "float" }, - { 142307070922848L, "DateTime", null, null, null, false, "DateTime", 100, 0, 142307070922829L, null, null, null, "DateTime" }, - { 142307070922852L, "double", null, null, null, false, "double", 100, 0, 142307070922829L, null, null, null, "double" }, - { 142307070922850L, "bool", null, null, null, false, "bool", 100, 0, 142307070922829L, null, null, null, "bool" }, - { 142307070922847L, "string", null, null, null, false, "string", 100, 0, 142307070922829L, null, null, null, "string" }, - { 142307070922846L, "long", null, null, null, false, "long", 100, 0, 142307070922829L, null, null, null, "long" }, - { 142307070922851L, "int", null, null, null, false, "int", 100, 0, 142307070922829L, null, null, null, "int" }, - { 142307070922845L, "isNotNull", null, null, null, false, "不为空", 8, 0, 142307070922828L, null, null, null, "不为空" }, - { 142307070922844L, "<=", null, null, null, false, "小于等于", 7, 0, 142307070922828L, null, null, null, "小于等于" }, - { 142307070922843L, ">=", null, null, null, false, "大于等于", 6, 0, 142307070922828L, null, null, null, "大于等于" }, - { 142307070922842L, "!=", null, null, null, false, "不等于", 5, 0, 142307070922828L, null, null, null, "不等于" }, - { 142307070922841L, "<", null, null, null, false, "小于", 4, 0, 142307070922828L, null, null, null, "小于" }, - { 142307070922840L, ">", null, null, null, false, "大于", 3, 0, 142307070922828L, null, null, null, "大于" }, - { 142307070922839L, "like", null, null, null, false, "模糊", 2, 0, 142307070922828L, null, null, null, "模糊" }, - { 142307070922838L, "==", null, null, null, false, "等于", 1, 0, 142307070922828L, null, null, null, "等于" }, - { 142307070922837L, "textarea", null, null, null, false, "文本域", 100, 0, 142307070922827L, null, null, null, "文本域" }, - { 142307070922836L, "inputnumber", null, null, null, false, "数字输入框", 100, 0, 142307070922827L, null, null, null, "数字输入框" }, - { 142307070922835L, "checkbox", null, null, null, false, "多选框", 100, 0, 142307070922827L, null, null, null, "多选框" }, - { 142307070906462L, "13", null, null, null, false, "修改状态", 100, 0, 142307070906494L, null, null, null, "修改状态" }, - { 142307070906461L, "12", null, null, null, false, "清空", 100, 0, 142307070906494L, null, null, null, "清空" }, - { 142307070906464L, "2", null, null, null, false, "腾讯云", 100, 0, 142307070906495L, null, null, null, "腾讯云" }, - { 142307070906459L, "10", null, null, null, false, "授权", 100, 0, 142307070906494L, null, null, null, "授权" }, - { 142307070902396L, "2", null, null, null, false, "发送失败", 100, 0, 142307070906489L, null, null, null, "发送失败" }, - { 142307070906460L, "11", null, null, null, false, "强退", 100, 0, 142307070906494L, null, null, null, "强退" }, - { 142307070902394L, "0", null, null, null, false, "未发送", 100, 0, 142307070906489L, null, null, null, "未发送" }, - { 142307070902393L, "2", null, null, null, false, "按钮", 100, 0, 142307070906488L, null, null, null, "按钮" }, - { 142307070902392L, "1", null, null, null, false, "菜单", 100, 0, 142307070906488L, null, null, null, "菜单" }, - { 142307070902391L, "0", null, null, null, false, "目录", 100, 0, 142307070906488L, null, null, null, "目录" }, - { 142307070902390L, "2", null, null, null, false, "登出", 100, 0, 142307070906487L, null, null, null, "登出" }, - { 142307070902389L, "1", null, null, null, false, "登录", 100, 0, 142307070906487L, null, null, null, "登录" }, - { 142307070902388L, "Y", null, null, null, false, "是", 100, 0, 142307070906486L, null, null, null, "是" }, - { 142307070902387L, "N", null, null, null, false, "否", 100, 0, 142307070906486L, null, null, null, "否" }, - { 142307070902383L, "OAUTH", null, null, null, false, "Oauth配置", 100, 0, 142307070906485L, null, null, null, "Oauth配置" }, - { 142307070902382L, "FILE_PATH", null, null, null, false, "文件上传路径", 100, 0, 142307070906485L, null, null, null, "文件上传路径" }, - { 142307070902381L, "EMAIL", null, null, null, false, "邮件配置", 100, 0, 142307070906485L, null, null, null, "邮件配置" }, - { 142307070902380L, "TENCENT_SMS", null, null, null, false, "腾讯云短信", 100, 0, 142307070906485L, null, null, null, "腾讯云短信" }, - { 142307070902379L, "ALIYUN_SMS", null, null, null, false, "阿里云短信配置", 100, 0, 142307070906485L, null, null, null, "阿里云短信" }, - { 142307070902378L, "DEFAULT", null, null, null, false, "默认常量,都以XIAONUO_开头的", 100, 0, 142307070906485L, null, null, null, "默认常量" }, - { 142307070902377L, "3", null, null, null, false, "未知性别", 100, 0, 142307070906484L, null, null, null, "未知" }, - { 142307070902376L, "2", null, null, null, false, "女性", 100, 0, 142307070906484L, null, null, null, "女" }, - { 142307070902375L, "1", null, null, null, false, "男性", 100, 0, 142307070906484L, null, null, null, "男" }, - { 142307070902386L, "2", null, null, null, false, "删除", 100, 0, 142307070906483L, null, null, null, "删除" }, - { 142307070902385L, "1", null, null, null, false, "停用", 100, 0, 142307070906483L, null, null, null, "停用" }, - { 142307070902397L, "3", null, null, null, false, "失效", 100, 0, 142307070906489L, null, null, null, "失效" }, - { 142307070902398L, "0", null, null, null, false, "无", 100, 0, 142307070906490L, null, null, null, "无" }, - { 142307070902395L, "1", null, null, null, false, "发送成功", 100, 0, 142307070906489L, null, null, null, "发送成功" }, - { 142307070906437L, "2", null, null, null, false, "内链", 100, 0, 142307070906490L, null, null, null, "内链" }, - { 142307070906458L, "9", null, null, null, false, "导出", 100, 0, 142307070906494L, null, null, null, "导出" }, - { 142307070906457L, "8", null, null, null, false, "导入", 100, 0, 142307070906494L, null, null, null, "导入" }, - { 142307070906456L, "7", null, null, null, false, "树", 100, 0, 142307070906494L, null, null, null, "树" }, - { 142307070906455L, "6", null, null, null, false, "详情", 100, 0, 142307070906494L, null, null, null, "详情" }, - { 142307070906454L, "5", null, null, null, false, "查询", 100, 0, 142307070906494L, null, null, null, "查询" }, - { 142307070906453L, "4", null, null, null, false, "更新", 100, 0, 142307070906494L, null, null, null, "更新" }, - { 142307070902399L, "1", null, null, null, false, "组件", 100, 0, 142307070906490L, null, null, null, "组件" }, - { 142307070906451L, "2", null, null, null, false, "删除", 100, 0, 142307070906494L, null, null, null, "删除" }, - { 142307070906450L, "1", null, null, null, false, "增加", 100, 0, 142307070906494L, null, null, null, "增加" }, - { 142307070906449L, "0", null, null, null, false, "其它", 100, 0, 142307070906494L, null, null, null, "其它" }, - { 142307070906452L, "3", null, null, null, false, "编辑", 100, 0, 142307070906494L, null, null, null, "编辑" }, - { 142307070906447L, "2", null, null, null, false, "pc", 100, 0, 142307070906493L, null, null, null, "pc" }, - { 142307070906438L, "3", null, null, null, false, "外链", 100, 0, 142307070906490L, null, null, null, "外链" }, - { 142307070906448L, "3", null, null, null, false, "其他", 100, 0, 142307070906493L, null, null, null, "其他" }, - { 142307070906440L, "2", null, null, null, false, "业务权重", 100, 0, 142307070906491L, null, null, null, "业务权重" }, - { 142307070906441L, "1", null, null, null, false, "全部数据", 100, 0, 142307070906492L, null, null, null, "全部数据" }, - { 142307070906439L, "1", null, null, null, false, "系统权重", 100, 0, 142307070906491L, null, null, null, "系统权重" }, - { 142307070906443L, "3", null, null, null, false, "本部门数据", 100, 0, 142307070906492L, null, null, null, "本部门数据" }, - { 142307070906444L, "4", null, null, null, false, "仅本人数据", 100, 0, 142307070906492L, null, null, null, "仅本人数据" }, - { 142307070906445L, "5", null, null, null, false, "自定义数据", 100, 0, 142307070906492L, null, null, null, "自定义数据" }, - { 142307070906446L, "1", null, null, null, false, "app", 100, 0, 142307070906493L, null, null, null, "app" }, - { 142307070906442L, "2", null, null, null, false, "本部门及以下数据", 100, 0, 142307070906492L, null, null, null, "本部门及以下数据" } - }); - - migrationBuilder.InsertData( - table: "sys_emp_ext_org_pos", - columns: new[] { "SysEmpId", "SysOrgId", "SysPosId" }, - values: new object[,] - { - { 142307070910551L, 142307070910539L, 142307070910547L }, - { 142307070910553L, 142307070910542L, 142307070910547L }, - { 142307070910551L, 142307070910540L, 142307070910548L }, - { 142307070910551L, 142307070910541L, 142307070910549L }, - { 142307070910551L, 142307070910542L, 142307070910550L } - }); - - migrationBuilder.InsertData( - table: "sys_emp_pos", - columns: new[] { "SysEmpId", "SysPosId" }, - values: new object[,] - { - { 142307070910552L, 142307070910549L }, - { 142307070910551L, 142307070910547L }, - { 142307070910553L, 142307070910547L }, - { 142307070910551L, 142307070910548L } - }); - - migrationBuilder.CreateIndex( - name: "IX_sys_dict_data_TypeId", - table: "sys_dict_data", - column: "TypeId"); - - migrationBuilder.CreateIndex( - name: "IX_sys_emp_ext_org_pos_SysOrgId", - table: "sys_emp_ext_org_pos", - column: "SysOrgId"); - - migrationBuilder.CreateIndex( - name: "IX_sys_emp_ext_org_pos_SysPosId", - table: "sys_emp_ext_org_pos", - column: "SysPosId"); - - migrationBuilder.CreateIndex( - name: "IX_sys_emp_pos_SysPosId", - table: "sys_emp_pos", - column: "SysPosId"); - - migrationBuilder.CreateIndex( - name: "IX_sys_role_data_scope_SysOrgId", - table: "sys_role_data_scope", - column: "SysOrgId"); - - migrationBuilder.CreateIndex( - name: "IX_sys_role_menu_SysMenuId", - table: "sys_role_menu", - column: "SysMenuId"); - - migrationBuilder.CreateIndex( - name: "IX_sys_user_data_scope_SysOrgId", - table: "sys_user_data_scope", - column: "SysOrgId"); - - migrationBuilder.CreateIndex( - name: "IX_sys_user_role_SysRoleId", - table: "sys_user_role", - column: "SysRoleId"); - } - - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropTable( - name: "code_gen_test"); - - migrationBuilder.DropTable( - name: "sys_app"); - - migrationBuilder.DropTable( - name: "sys_code_gen"); - - migrationBuilder.DropTable( - name: "sys_code_gen_config"); - - migrationBuilder.DropTable( - name: "sys_config"); - - migrationBuilder.DropTable( - name: "sys_dict_data"); - - migrationBuilder.DropTable( - name: "sys_emp_ext_org_pos"); - - migrationBuilder.DropTable( - name: "sys_emp_pos"); - - migrationBuilder.DropTable( - name: "sys_file"); - - migrationBuilder.DropTable( - name: "sys_log_audit"); - - migrationBuilder.DropTable( - name: "sys_log_op"); - - migrationBuilder.DropTable( - name: "sys_log_vis"); - - migrationBuilder.DropTable( - name: "sys_notice"); - - migrationBuilder.DropTable( - name: "sys_notice_user"); - - migrationBuilder.DropTable( - name: "sys_oauth_user"); - - migrationBuilder.DropTable( - name: "sys_role_data_scope"); - - migrationBuilder.DropTable( - name: "sys_role_menu"); - - migrationBuilder.DropTable( - name: "sys_tenant"); - - migrationBuilder.DropTable( - name: "sys_timer"); - - migrationBuilder.DropTable( - name: "sys_user_data_scope"); - - migrationBuilder.DropTable( - name: "sys_user_role"); - - migrationBuilder.DropTable( - name: "sys_dict_type"); - - migrationBuilder.DropTable( - name: "sys_emp"); - - migrationBuilder.DropTable( - name: "sys_pos"); - - migrationBuilder.DropTable( - name: "sys_menu"); - - migrationBuilder.DropTable( - name: "sys_org"); - - migrationBuilder.DropTable( - name: "sys_role"); - - migrationBuilder.DropTable( - name: "sys_user"); - } - } -} diff --git a/Api/Ewide.Database.Migrations/Migrations/20210423073632_Init.Designer.cs b/Api/Ewide.Database.Migrations/Migrations/20210425072018_Init.Designer.cs similarity index 65% rename from Api/Ewide.Database.Migrations/Migrations/20210423073632_Init.Designer.cs rename to Api/Ewide.Database.Migrations/Migrations/20210425072018_Init.Designer.cs index a988c41..fb639ca 100644 --- a/Api/Ewide.Database.Migrations/Migrations/20210423073632_Init.Designer.cs +++ b/Api/Ewide.Database.Migrations/Migrations/20210425072018_Init.Designer.cs @@ -9,7 +9,7 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace Ewide.Database.Migrations.Migrations { [DbContext(typeof(DefaultDbContext))] - [Migration("20210423073632_Init")] + [Migration("20210425072018_Init")] partial class Init { protected override void BuildTargetModel(ModelBuilder modelBuilder) @@ -21,8 +21,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Application.CodeGenTest", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Age") @@ -30,15 +31,16 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("年龄"); b.Property("Birthday") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("生日"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -46,8 +48,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("创建者名称"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -59,11 +62,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("昵称"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -81,12 +85,14 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysApp", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); - b.Property("Active") - .HasColumnType("longtext CHARACTER SET utf8mb4") + b.Property("Active") + .HasColumnType("bit") + .HasColumnName("Active") .HasComment("是否默认激活"); b.Property("Code") @@ -98,11 +104,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("图标颜色"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -114,8 +121,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("图标"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -131,11 +139,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("状态"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -153,40 +162,40 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070922869L, - Active = "N", + Id = "8b2aeb5e-09a6-4afd-bcae-8ee8e5a1e6ec", + Active = 0ul, Code = "busapp", - IsDeleted = false, + IsDeleted = 0ul, Name = "业务应用", Sort = 100, Status = 0 }, new { - Id = 142307070898245L, - Active = "Y", + Id = "d781b8f1-0d08-48c8-b7a5-ed75ddfa676c", + Active = 1ul, Code = "system", - IsDeleted = false, + IsDeleted = 0ul, Name = "系统管理", Sort = 100, Status = 0 }, new { - Id = 142307070902341L, - Active = "N", + Id = "850ab86f-cd6a-4d49-b920-77dfa5d78813", + Active = 0ul, Code = "system_tool", - IsDeleted = false, + IsDeleted = 0ul, Name = "系统工具", Sort = 100, Status = 0 }, new { - Id = 142307070922826L, - Active = "N", + Id = "05a32be5-82e8-423f-affa-e17232a63ee1", + Active = 0ul, Code = "advanced", - IsDeleted = false, + IsDeleted = 0ul, Name = "高级功能", Sort = 100, Status = 0 @@ -195,8 +204,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysCodeGen", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("AuthorName") @@ -208,11 +218,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("业务名"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -224,8 +235,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("生成方式"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("NameSpace") @@ -241,11 +253,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("是否移除表前缀"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -263,12 +276,14 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysCodeGenConfig", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); - b.Property("CodeGenId") - .HasColumnType("bigint") + b.Property("CodeGenId") + .HasColumnType("varchar(36)") + .HasColumnName("CodeGenId") .HasComment("代码生成主表ID"); b.Property("ColumnComment") @@ -284,11 +299,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("数据库字段名"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -308,8 +324,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("作用类型"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("NetType") @@ -325,11 +342,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("是否是查询条件"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -367,8 +385,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysConfig", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Code") @@ -376,11 +395,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("编码"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -392,8 +412,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("常量所属分类的编码"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -413,11 +434,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("是否是系统参数"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -439,10 +461,10 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070902342L, + Id = "7c2765cd-d39b-4772-8d6c-0dbcdcfa1ff8", Code = "DILON_JWT_SECRET", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "jwt密钥", Remark = "(重要)jwt密钥,默认为空,自行设置", Status = 0, @@ -451,10 +473,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902343L, + Id = "e3553657-14cf-4c26-ba7b-dbb4bfd4bc55", Code = "DILON_DEFAULT_PASSWORD", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "默认密码", Remark = "默认密码", Status = 0, @@ -463,10 +485,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902344L, + Id = "2c677cd2-2a54-46c6-971d-f9fe20f101f3", Code = "DILON_TOKEN_EXPIRE", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "token过期时间", Remark = "token过期时间(单位:秒)", Status = 0, @@ -475,10 +497,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902345L, + Id = "8938506d-2e00-44e0-8592-48453d43f9f5", Code = "DILON_SESSION_EXPIRE", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "session会话过期时间", Remark = "session会话过期时间(单位:秒)", Status = 0, @@ -487,10 +509,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902346L, + Id = "beb2e9e7-f4d9-43b1-bfab-3557ea232f8d", Code = "DILON_ALIYUN_SMS_ACCESSKEY_ID", GroupCode = "ALIYUN_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云短信keyId", Remark = "阿里云短信keyId", Status = 0, @@ -499,10 +521,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902347L, + Id = "ead14cd0-9fd4-4fd6-b75c-239d8b2ebed8", Code = "DILON_ALIYUN_SMS_ACCESSKEY_SECRET", GroupCode = "ALIYUN_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云短信secret", Remark = "阿里云短信secret", Status = 0, @@ -511,10 +533,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902348L, + Id = "beaaafc2-3fdf-42af-9b06-ead3a6dd6306", Code = "DILON_ALIYUN_SMS_SIGN_NAME", GroupCode = "ALIYUN_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云短信签名", Remark = "阿里云短信签名", Status = 0, @@ -523,10 +545,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902349L, + Id = "e26a10cf-911a-4fe0-a113-76965be749a0", Code = "DILON_ALIYUN_SMS_LOGIN_TEMPLATE_CODE", GroupCode = "ALIYUN_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云短信-登录模板号", Remark = "阿里云短信-登录模板号", Status = 0, @@ -535,10 +557,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902350L, + Id = "24d3f286-efca-49af-91b4-e3ce42cce36e", Code = "DILON_ALIYUN_SMS_INVALIDATE_MINUTES", GroupCode = "ALIYUN_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云短信默认失效时间", Remark = "阿里云短信默认失效时间(单位:分钟)", Status = 0, @@ -547,10 +569,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902351L, + Id = "c6540a07-ce32-47b4-ab83-b647bdb14491", Code = "DILON_TENCENT_SMS_SECRET_ID", GroupCode = "TENCENT_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "腾讯云短信secretId", Remark = "腾讯云短信secretId", Status = 0, @@ -559,10 +581,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902352L, + Id = "a0412212-d50b-42aa-9484-3cef8fe3cc59", Code = "DILON_TENCENT_SMS_SECRET_KEY", GroupCode = "TENCENT_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "腾讯云短信secretKey", Remark = "腾讯云短信secretKey", Status = 0, @@ -571,10 +593,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902353L, + Id = "c928ca11-5137-4b71-bf1c-f3bc95bcd34d", Code = "DILON_TENCENT_SMS_SDK_APP_ID", GroupCode = "TENCENT_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "腾讯云短信sdkAppId", Remark = "腾讯云短信sdkAppId", Status = 0, @@ -583,10 +605,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902354L, + Id = "16ce1b6e-c8ad-4299-9293-6caff0e5cb49", Code = "DILON_TENCENT_SMS_SIGN", GroupCode = "TENCENT_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "腾讯云短信签名", Remark = "腾讯云短信签名", Status = 0, @@ -595,10 +617,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902355L, + Id = "66e63d64-b7eb-4e6a-b5b6-c87811c2e700", Code = "DILON_EMAIL_HOST", GroupCode = "EMAIL", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮箱host", Remark = "邮箱host", Status = 0, @@ -607,10 +629,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902356L, + Id = "997a9bc6-22ed-4fe6-a20c-c3c2a0b682a0", Code = "DILON_EMAIL_USERNAME", GroupCode = "EMAIL", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮箱用户名", Remark = "邮箱用户名", Status = 0, @@ -619,10 +641,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902357L, + Id = "633d1851-41d9-4ebd-b83b-3aa4501cd1a7", Code = "DILON_EMAIL_PASSWORD", GroupCode = "EMAIL", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮箱密码", Remark = "邮箱密码", Status = 0, @@ -631,10 +653,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902358L, + Id = "67e468f7-e791-4e91-a896-62e9f7411635", Code = "DILON_EMAIL_PORT", GroupCode = "EMAIL", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮箱端口", Remark = "邮箱端口", Status = 0, @@ -643,10 +665,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902359L, + Id = "dc462c05-de23-4f90-bcdc-88de4abcdf22", Code = "DILON_EMAIL_SSL", GroupCode = "EMAIL", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮箱是否开启ssl", Remark = "邮箱是否开启ssl", Status = 0, @@ -655,10 +677,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902360L, + Id = "8beac2a0-4c67-4499-a7ce-27e989546ce9", Code = "DILON_EMAIL_FROM", GroupCode = "EMAIL", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮箱发件人", Remark = "邮箱发件人", Status = 0, @@ -667,10 +689,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902361L, + Id = "55756524-ecb8-444e-9cdd-a0fc767c4b96", Code = "DILON_FILE_UPLOAD_PATH_FOR_WINDOWS", GroupCode = "FILE_PATH", - IsDeleted = false, + IsDeleted = 0ul, Name = "Win本地上传文件路径", Remark = "Win本地上传文件路径", Status = 0, @@ -679,10 +701,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902362L, + Id = "d2db41ee-ce1f-46de-ac00-5860634afed9", Code = "DILON_FILE_UPLOAD_PATH_FOR_LINUX", GroupCode = "FILE_PATH", - IsDeleted = false, + IsDeleted = 0ul, Name = "Linux/Mac本地上传文件路径", Remark = "Linux/Mac本地上传文件路径", Status = 0, @@ -691,10 +713,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902363L, + Id = "ff8debdd-eca0-4f91-8213-e2080f76b35d", Code = "DILON_UN_XSS_FILTER_URL", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "放开XSS过滤的接口", Remark = "多个url可以用英文逗号隔开", Status = 0, @@ -703,10 +725,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902364L, + Id = "5584fb84-f580-463f-b06d-bbb80a4dfb72", Code = "DILON_ENABLE_SINGLE_LOGIN", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "单用户登陆的开关", Remark = "true-打开,false-关闭,如果一个人登录两次,就会将上一次登陆挤下去", Status = 0, @@ -715,10 +737,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902365L, + Id = "53b0afb2-4917-4b85-bcca-fe7c7723ae22", Code = "DILON_CAPTCHA_OPEN", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "登录验证码的开关", Remark = "true-打开,false-关闭", Status = 0, @@ -727,10 +749,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902366L, + Id = "974740d8-8647-4cf8-8102-542eea53e97f", Code = "DILON_DRUID_USERNAME", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "Druid监控登录账号", Remark = "Druid监控登录账号", Status = 0, @@ -739,10 +761,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902367L, + Id = "8cee44ea-ba4c-42db-a57d-69b8b5316ca5", Code = "DILON_DRUID_PASSWORD", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "Druid监控界面登录密码", Remark = "Druid监控界面登录密码", Status = 0, @@ -751,10 +773,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902368L, + Id = "efc235ab-9b05-4820-afe4-32a1eb59e4de", Code = "DILON_IP_GEO_API", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云定位api接口地址", Remark = "阿里云定位api接口地址", Status = 0, @@ -763,10 +785,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902369L, + Id = "d3597d8a-562a-4b24-93c7-8655c5445d74", Code = "DILON_IP_GEO_APP_CODE", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云定位appCode", Remark = "阿里云定位appCode", Status = 0, @@ -775,10 +797,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902370L, + Id = "59c8a6f2-9e3c-4e9e-b9cf-8ecad5f0cb45", Code = "DILON_ENABLE_OAUTH_LOGIN", GroupCode = "OAUTH", - IsDeleted = false, + IsDeleted = 0ul, Name = "Oauth用户登录的开关", Remark = "Oauth用户登录的开关", Status = 0, @@ -787,10 +809,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902371L, + Id = "ff502ee7-8129-4828-8d16-fb04562ef52c", Code = "DILON_OAUTH_GITEE_CLIENT_ID", GroupCode = "OAUTH", - IsDeleted = false, + IsDeleted = 0ul, Name = "Oauth码云登录ClientId", Remark = "Oauth码云登录ClientId", Status = 0, @@ -799,10 +821,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902372L, + Id = "a1d957ef-2b70-456f-8eda-b70a4cf01535", Code = "DILON_OAUTH_GITEE_CLIENT_SECRET", GroupCode = "OAUTH", - IsDeleted = false, + IsDeleted = 0ul, Name = "Oauth码云登录ClientSecret", Remark = "Oauth码云登录ClientSecret", Status = 0, @@ -811,10 +833,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902373L, + Id = "b32ee22b-671d-40bf-8070-32e1054fef96", Code = "DILON_OAUTH_GITEE_REDIRECT_URI", GroupCode = "OAUTH", - IsDeleted = false, + IsDeleted = 0ul, Name = "Oauth码云登录回调地址", Remark = "Oauth码云登录回调地址", Status = 0, @@ -823,10 +845,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902374L, + Id = "38dda85c-2a98-4768-aebd-a60ab286052c", Code = "DILON_DEMO_ENV_FLAG", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "演示环境", Remark = "演示环境的开关,true-打开,false-关闭,如果演示环境开启,则只能读数据不能写数据", Status = 0, @@ -837,8 +859,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysDictData", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Code") @@ -846,11 +869,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("编码"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -858,8 +882,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("创建者名称"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Remark") @@ -874,16 +899,18 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("int") .HasComment("状态"); - b.Property("TypeId") - .HasColumnType("bigint") + b.Property("TypeId") + .HasColumnType("varchar(36)") + .HasColumnName("TypeId") .HasComment("字典类型Id"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -907,1077 +934,1078 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070902375L, + Id = "99b965d3-1f2b-4f5b-a62a-6763b8d64a64", Code = "1", - IsDeleted = false, - Remark = "男性", - Sort = 100, - Status = 0, - TypeId = 142307070906484L, - Value = "男" - }, - new - { - Id = 142307070902376L, - Code = "2", - IsDeleted = false, - Remark = "女性", - Sort = 100, - Status = 0, - TypeId = 142307070906484L, - Value = "女" - }, - new - { - Id = 142307070902377L, - Code = "3", - IsDeleted = false, - Remark = "未知性别", - Sort = 100, - Status = 0, - TypeId = 142307070906484L, - Value = "未知" - }, - new - { - Id = 142307070902378L, - Code = "DEFAULT", - IsDeleted = false, - Remark = "默认常量,都以XIAONUO_开头的", - Sort = 100, - Status = 0, - TypeId = 142307070906485L, - Value = "默认常量" - }, - new - { - Id = 142307070902379L, - Code = "ALIYUN_SMS", - IsDeleted = false, - Remark = "阿里云短信配置", - Sort = 100, - Status = 0, - TypeId = 142307070906485L, - Value = "阿里云短信" - }, - new - { - Id = 142307070902380L, - Code = "TENCENT_SMS", - IsDeleted = false, - Remark = "腾讯云短信", - Sort = 100, - Status = 0, - TypeId = 142307070906485L, - Value = "腾讯云短信" - }, - new - { - Id = 142307070902381L, - Code = "EMAIL", - IsDeleted = false, - Remark = "邮件配置", - Sort = 100, - Status = 0, - TypeId = 142307070906485L, - Value = "邮件配置" - }, - new - { - Id = 142307070902382L, - Code = "FILE_PATH", - IsDeleted = false, - Remark = "文件上传路径", - Sort = 100, - Status = 0, - TypeId = 142307070906485L, - Value = "文件上传路径" - }, - new - { - Id = 142307070902383L, - Code = "OAUTH", - IsDeleted = false, - Remark = "Oauth配置", - Sort = 100, - Status = 0, - TypeId = 142307070906485L, - Value = "Oauth配置" - }, - new - { - Id = 142307070902384L, - Code = "0", - IsDeleted = false, - Remark = "正常", - Sort = 100, - Status = 0, - TypeId = 142307070906483L, - Value = "正常" - }, - new - { - Id = 142307070902385L, - Code = "1", - IsDeleted = false, - Remark = "停用", - Sort = 100, - Status = 0, - TypeId = 142307070906483L, - Value = "停用" - }, - new - { - Id = 142307070902386L, - Code = "2", - IsDeleted = false, - Remark = "删除", - Sort = 100, - Status = 0, - TypeId = 142307070906483L, - Value = "删除" - }, - new - { - Id = 142307070902387L, - Code = "N", - IsDeleted = false, - Remark = "否", - Sort = 100, - Status = 0, - TypeId = 142307070906486L, - Value = "否" - }, - new - { - Id = 142307070902388L, - Code = "Y", - IsDeleted = false, - Remark = "是", - Sort = 100, - Status = 0, - TypeId = 142307070906486L, - Value = "是" - }, - new - { - Id = 142307070902389L, - Code = "1", - IsDeleted = false, - Remark = "登录", - Sort = 100, - Status = 0, - TypeId = 142307070906487L, - Value = "登录" - }, - new - { - Id = 142307070902390L, - Code = "2", - IsDeleted = false, - Remark = "登出", - Sort = 100, - Status = 0, - TypeId = 142307070906487L, - Value = "登出" - }, - new - { - Id = 142307070902391L, - Code = "0", - IsDeleted = false, - Remark = "目录", - Sort = 100, - Status = 0, - TypeId = 142307070906488L, - Value = "目录" - }, - new - { - Id = 142307070902392L, - Code = "1", - IsDeleted = false, - Remark = "菜单", - Sort = 100, - Status = 0, - TypeId = 142307070906488L, - Value = "菜单" - }, - new - { - Id = 142307070902393L, - Code = "2", - IsDeleted = false, - Remark = "按钮", - Sort = 100, - Status = 0, - TypeId = 142307070906488L, - Value = "按钮" - }, - new - { - Id = 142307070902394L, - Code = "0", - IsDeleted = false, - Remark = "未发送", - Sort = 100, - Status = 0, - TypeId = 142307070906489L, - Value = "未发送" - }, - new - { - Id = 142307070902395L, - Code = "1", - IsDeleted = false, - Remark = "发送成功", - Sort = 100, - Status = 0, - TypeId = 142307070906489L, - Value = "发送成功" - }, - new - { - Id = 142307070902396L, - Code = "2", - IsDeleted = false, - Remark = "发送失败", - Sort = 100, - Status = 0, - TypeId = 142307070906489L, - Value = "发送失败" - }, - new - { - Id = 142307070902397L, - Code = "3", - IsDeleted = false, - Remark = "失效", - Sort = 100, - Status = 0, - TypeId = 142307070906489L, - Value = "失效" - }, - new - { - Id = 142307070902398L, - Code = "0", - IsDeleted = false, - Remark = "无", - Sort = 100, - Status = 0, - TypeId = 142307070906490L, - Value = "无" - }, - new - { - Id = 142307070902399L, - Code = "1", - IsDeleted = false, - Remark = "组件", - Sort = 100, - Status = 0, - TypeId = 142307070906490L, - Value = "组件" - }, - new - { - Id = 142307070906437L, - Code = "2", - IsDeleted = false, - Remark = "内链", - Sort = 100, - Status = 0, - TypeId = 142307070906490L, - Value = "内链" - }, - new - { - Id = 142307070906438L, - Code = "3", - IsDeleted = false, - Remark = "外链", - Sort = 100, - Status = 0, - TypeId = 142307070906490L, - Value = "外链" - }, - new - { - Id = 142307070906439L, - Code = "1", - IsDeleted = false, - Remark = "系统权重", - Sort = 100, - Status = 0, - TypeId = 142307070906491L, - Value = "系统权重" - }, - new - { - Id = 142307070906440L, - Code = "2", - IsDeleted = false, - Remark = "业务权重", - Sort = 100, - Status = 0, - TypeId = 142307070906491L, - Value = "业务权重" - }, - new - { - Id = 142307070906441L, - Code = "1", - IsDeleted = false, - Remark = "全部数据", - Sort = 100, - Status = 0, - TypeId = 142307070906492L, - Value = "全部数据" - }, - new - { - Id = 142307070906442L, - Code = "2", - IsDeleted = false, - Remark = "本部门及以下数据", - Sort = 100, - Status = 0, - TypeId = 142307070906492L, - Value = "本部门及以下数据" - }, - new - { - Id = 142307070906443L, - Code = "3", - IsDeleted = false, - Remark = "本部门数据", - Sort = 100, - Status = 0, - TypeId = 142307070906492L, - Value = "本部门数据" - }, - new - { - Id = 142307070906444L, - Code = "4", - IsDeleted = false, - Remark = "仅本人数据", - Sort = 100, - Status = 0, - TypeId = 142307070906492L, - Value = "仅本人数据" - }, - new - { - Id = 142307070906445L, - Code = "5", - IsDeleted = false, - Remark = "自定义数据", - Sort = 100, - Status = 0, - TypeId = 142307070906492L, - Value = "自定义数据" - }, - new - { - Id = 142307070906446L, - Code = "1", - IsDeleted = false, - Remark = "app", - Sort = 100, - Status = 0, - TypeId = 142307070906493L, - Value = "app" - }, - new - { - Id = 142307070906447L, - Code = "2", - IsDeleted = false, - Remark = "pc", - Sort = 100, - Status = 0, - TypeId = 142307070906493L, - Value = "pc" - }, - new - { - Id = 142307070906448L, - Code = "3", - IsDeleted = false, - Remark = "其他", - Sort = 100, - Status = 0, - TypeId = 142307070906493L, - Value = "其他" - }, - new - { - Id = 142307070906449L, - Code = "0", - IsDeleted = false, - Remark = "其它", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "其它" - }, - new - { - Id = 142307070906450L, - Code = "1", - IsDeleted = false, - Remark = "增加", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "增加" - }, - new - { - Id = 142307070906451L, - Code = "2", - IsDeleted = false, - Remark = "删除", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "删除" - }, - new - { - Id = 142307070906452L, - Code = "3", - IsDeleted = false, - Remark = "编辑", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "编辑" - }, - new - { - Id = 142307070906453L, - Code = "4", - IsDeleted = false, - Remark = "更新", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "更新" - }, - new - { - Id = 142307070906454L, - Code = "5", - IsDeleted = false, - Remark = "查询", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "查询" - }, - new - { - Id = 142307070906455L, - Code = "6", - IsDeleted = false, - Remark = "详情", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "详情" - }, - new - { - Id = 142307070906456L, - Code = "7", - IsDeleted = false, - Remark = "树", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "树" - }, - new - { - Id = 142307070906457L, - Code = "8", - IsDeleted = false, - Remark = "导入", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "导入" - }, - new - { - Id = 142307070906458L, - Code = "9", - IsDeleted = false, - Remark = "导出", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "导出" - }, - new - { - Id = 142307070906459L, - Code = "10", - IsDeleted = false, - Remark = "授权", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "授权" - }, - new - { - Id = 142307070906460L, - Code = "11", - IsDeleted = false, - Remark = "强退", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "强退" - }, - new - { - Id = 142307070906461L, - Code = "12", - IsDeleted = false, - Remark = "清空", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "清空" - }, - new - { - Id = 142307070906462L, - Code = "13", - IsDeleted = false, - Remark = "修改状态", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "修改状态" - }, - new - { - Id = 142307070906463L, - Code = "1", - IsDeleted = false, - Remark = "阿里云", - Sort = 100, - Status = 0, - TypeId = 142307070906495L, - Value = "阿里云" - }, - new - { - Id = 142307070906464L, - Code = "2", - IsDeleted = false, - Remark = "腾讯云", - Sort = 100, - Status = 0, - TypeId = 142307070906495L, - Value = "腾讯云" - }, - new - { - Id = 142307070906465L, - Code = "3", - IsDeleted = false, - Remark = "minio", - Sort = 100, - Status = 0, - TypeId = 142307070906495L, - Value = "minio" - }, - new - { - Id = 142307070906466L, - Code = "4", - IsDeleted = false, - Remark = "本地", - Sort = 100, - Status = 0, - TypeId = 142307070906495L, - Value = "本地" - }, - new - { - Id = 142307070906467L, - Code = "1", - IsDeleted = false, - Remark = "运行", - Sort = 100, - Status = 0, - TypeId = 142307070910533L, - Value = "运行" - }, - new - { - Id = 142307070906468L, - Code = "2", - IsDeleted = false, - Remark = "停止", - Sort = 100, - Status = 0, - TypeId = 142307070910533L, - Value = "停止" - }, - new - { - Id = 142307070906469L, - Code = "1", - IsDeleted = false, + IsDeleted = 0ul, Remark = "通知", Sort = 100, Status = 0, - TypeId = 142307070910534L, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", Value = "通知" }, new { - Id = 142307070906470L, + Id = "2616e6c2-a504-4fc6-993e-72701b48e79a", Code = "2", - IsDeleted = false, + IsDeleted = 0ul, Remark = "公告", Sort = 100, Status = 0, - TypeId = 142307070910534L, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", Value = "公告" }, new { - Id = 142307070906471L, + Id = "40d336cd-918a-4e90-8836-cba7c1bf6cdf", Code = "0", - IsDeleted = false, + IsDeleted = 0ul, Remark = "草稿", Sort = 100, Status = 0, - TypeId = 142307070910535L, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", Value = "草稿" }, new { - Id = 142307070906472L, + Id = "f5b49fa9-31a1-44c2-9df0-b28bf5daeee0", Code = "1", - IsDeleted = false, + IsDeleted = 0ul, Remark = "发布", Sort = 100, Status = 0, - TypeId = 142307070910535L, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", Value = "发布" }, new { - Id = 142307070906473L, + Id = "d2f73bb4-05a1-4aa5-9273-e9f3c393996d", Code = "2", - IsDeleted = false, + IsDeleted = 0ul, Remark = "撤回", Sort = 100, Status = 0, - TypeId = 142307070910535L, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", Value = "撤回" }, new { - Id = 142307070906474L, + Id = "6385916f-6ead-470e-889b-cfb9d2da6256", Code = "3", - IsDeleted = false, + IsDeleted = 0ul, Remark = "删除", Sort = 100, Status = 0, - TypeId = 142307070910535L, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", Value = "删除" }, new { - Id = 142307070906475L, + Id = "1f432e9d-f031-4787-a527-f37bb20ebe3a", Code = "true", - IsDeleted = false, + IsDeleted = 0ul, Remark = "是", Sort = 100, Status = 0, - TypeId = 142307070910536L, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", Value = "是" }, new { - Id = 142307070906476L, + Id = "0724636d-e870-46c6-8e1e-67f1ea5f58e5", Code = "false", - IsDeleted = false, + IsDeleted = 0ul, Remark = "否", Sort = 100, Status = 0, - TypeId = 142307070910536L, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", Value = "否" }, new { - Id = 142307070906477L, + Id = "881ebcf2-94a6-4938-81a4-55b81736f3b3", Code = "1", - IsDeleted = false, + IsDeleted = 0ul, Remark = "下载压缩包", Sort = 100, Status = 0, - TypeId = 142307070910537L, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", Value = "下载压缩包" }, new { - Id = 142307070906478L, + Id = "5bc8662d-b795-48f1-a88e-2f4be5279d37", Code = "2", - IsDeleted = false, + IsDeleted = 0ul, Remark = "生成到本项目", Sort = 100, Status = 0, - TypeId = 142307070910537L, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", Value = "生成到本项目" }, new { - Id = 142307070906479L, + Id = "b2a00b40-23e1-40e1-8995-60ab420eafe1", Code = "1", - IsDeleted = false, + IsDeleted = 0ul, Remark = "GET", Sort = 100, Status = 0, - TypeId = 142307070910538L, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", Value = "GET" }, new { - Id = 142307070906480L, + Id = "10070836-0c89-4b89-96e3-c65c7e33a86c", Code = "2", - IsDeleted = false, + IsDeleted = 0ul, Remark = "POST", Sort = 100, Status = 0, - TypeId = 142307070910538L, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", Value = "POST" }, new { - Id = 142307070906481L, + Id = "69a34c0b-85ce-4e53-9ad4-a592057dddd4", Code = "3", - IsDeleted = false, + IsDeleted = 0ul, Remark = "PUT", Sort = 100, Status = 0, - TypeId = 142307070910538L, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", Value = "PUT" }, new { - Id = 142307070906482L, + Id = "0e4dc1f1-8654-401b-800a-22b31f62ced1", Code = "4", - IsDeleted = false, + IsDeleted = 0ul, Remark = "DELETE", Sort = 100, Status = 0, - TypeId = 142307070910538L, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", Value = "DELETE" }, new { - Id = 142307070922830L, + Id = "443f965e-96b4-4fd2-93e9-07fe00a47205", Code = "input", - IsDeleted = false, + IsDeleted = 0ul, Remark = "输入框", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "输入框" }, new { - Id = 142307070922831L, + Id = "bf7be9a2-53fb-4250-87fe-49d7f741d159", Code = "datepicker", - IsDeleted = false, + IsDeleted = 0ul, Remark = "时间选择", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "时间选择" }, new { - Id = 142307070922832L, + Id = "cea10919-47e2-43ab-a19b-9d41fe648310", Code = "select", - IsDeleted = false, + IsDeleted = 0ul, Remark = "下拉框", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "下拉框" }, new { - Id = 142307070922833L, + Id = "7d534f44-cf66-472e-b0d3-20a4cc2ad432", Code = "radio", - IsDeleted = false, + IsDeleted = 0ul, Remark = "单选框", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "单选框" }, new { - Id = 142307070922834L, + Id = "d63b06d4-be11-4ab7-9905-87f6f2ca056f", Code = "switch", - IsDeleted = false, + IsDeleted = 0ul, Remark = "开关", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "开关" }, new { - Id = 142307070922835L, + Id = "46967f62-bac9-47fd-9278-b29c047b0c38", Code = "checkbox", - IsDeleted = false, + IsDeleted = 0ul, Remark = "多选框", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "多选框" }, new { - Id = 142307070922836L, + Id = "a8ac5009-93d3-4405-a6b9-81ed3e2811f2", Code = "inputnumber", - IsDeleted = false, + IsDeleted = 0ul, Remark = "数字输入框", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "数字输入框" }, new { - Id = 142307070922837L, + Id = "d00b3efa-2f9d-464c-8134-aa7013ef52bb", Code = "textarea", - IsDeleted = false, + IsDeleted = 0ul, Remark = "文本域", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "文本域" }, new { - Id = 142307070922838L, + Id = "ad759239-e34e-4fdf-a0d0-6b39eb41f880", Code = "==", - IsDeleted = false, + IsDeleted = 0ul, Remark = "等于", Sort = 1, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "等于" }, new { - Id = 142307070922839L, + Id = "2c8e1240-f3ef-4df1-bd68-3047109ad5b4", Code = "like", - IsDeleted = false, + IsDeleted = 0ul, Remark = "模糊", Sort = 2, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "模糊" }, new { - Id = 142307070922840L, + Id = "efc18513-c17b-4fc1-8e0e-2e79fb9b0107", Code = ">", - IsDeleted = false, + IsDeleted = 0ul, Remark = "大于", Sort = 3, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "大于" }, new { - Id = 142307070922841L, + Id = "a6812d98-7785-4db2-b2f8-d476a459c5ed", Code = "<", - IsDeleted = false, + IsDeleted = 0ul, Remark = "小于", Sort = 4, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "小于" }, new { - Id = 142307070922842L, + Id = "218b5bac-343e-4594-a9da-30e391c7735c", Code = "!=", - IsDeleted = false, + IsDeleted = 0ul, Remark = "不等于", Sort = 5, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "不等于" }, new { - Id = 142307070922843L, + Id = "4825f15d-077b-4c16-8ee7-0205d653e14d", Code = ">=", - IsDeleted = false, + IsDeleted = 0ul, Remark = "大于等于", Sort = 6, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "大于等于" }, new { - Id = 142307070922844L, + Id = "7c9e8270-db5a-45b7-acd7-f95c8ee31547", Code = "<=", - IsDeleted = false, + IsDeleted = 0ul, Remark = "小于等于", Sort = 7, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "小于等于" }, new { - Id = 142307070922845L, + Id = "759ea7de-a18f-4ed7-9032-bbd1a4dadc9e", Code = "isNotNull", - IsDeleted = false, + IsDeleted = 0ul, Remark = "不为空", Sort = 8, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "不为空" }, new { - Id = 142307070922851L, + Id = "a5cdf75e-6361-490d-a043-f5929ccf65a9", Code = "int", - IsDeleted = false, + IsDeleted = 0ul, Remark = "int", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "int" }, new { - Id = 142307070922846L, + Id = "cffdd4b5-d4e0-4196-81b9-02045de8b189", Code = "long", - IsDeleted = false, + IsDeleted = 0ul, Remark = "long", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "long" }, new { - Id = 142307070922847L, + Id = "25be90ea-b439-4e9d-993c-48a5ce3b9358", Code = "string", - IsDeleted = false, + IsDeleted = 0ul, Remark = "string", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "string" }, new { - Id = 142307070922850L, + Id = "496eef62-3849-4263-b274-a3e6090942e3", Code = "bool", - IsDeleted = false, + IsDeleted = 0ul, Remark = "bool", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "bool" }, new { - Id = 142307070922852L, + Id = "681c02ea-7570-4a97-85a7-957a77314df6", Code = "double", - IsDeleted = false, + IsDeleted = 0ul, Remark = "double", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "double" }, new { - Id = 142307070922848L, + Id = "259698cf-b25d-427a-8d22-33b9c1899eea", Code = "DateTime", - IsDeleted = false, + IsDeleted = 0ul, Remark = "DateTime", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "DateTime" }, new { - Id = 142307070922861L, + Id = "a30c682e-744a-468d-a74f-827928c96c01", Code = "float", - IsDeleted = false, + IsDeleted = 0ul, Remark = "float", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "float" }, new { - Id = 142307070922862L, + Id = "4b68cb83-f173-4864-bd10-a7a7d5248102", Code = "decimal", - IsDeleted = false, + IsDeleted = 0ul, Remark = "decimal", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "decimal" }, new { - Id = 142307070922863L, + Id = "134d4173-8d93-4c19-bf6b-a640d35da097", Code = "Guid", - IsDeleted = false, + IsDeleted = 0ul, Remark = "Guid", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "Guid" }, new { - Id = 142307070922864L, + Id = "c597306f-5fd0-4f75-9a46-12de340cd199", Code = "DateTimeOffset", - IsDeleted = false, + IsDeleted = 0ul, Remark = "DateTimeOffset", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "DateTimeOffset" + }, + new + { + Id = "9b44b297-f6f0-4c31-b680-83baabf4c5b7", + Code = "1", + IsDeleted = 0ul, + Remark = "男性", + Sort = 100, + Status = 0, + TypeId = "301ed120-dfc5-4d7c-af59-b56a519581c9", + Value = "男" + }, + new + { + Id = "46ba4c21-cbde-4561-8e57-19ed0f752c17", + Code = "2", + IsDeleted = 0ul, + Remark = "女性", + Sort = 100, + Status = 0, + TypeId = "301ed120-dfc5-4d7c-af59-b56a519581c9", + Value = "女" + }, + new + { + Id = "150e04a6-3bf5-4604-98d5-14fbd1608bc5", + Code = "3", + IsDeleted = 0ul, + Remark = "未知性别", + Sort = 100, + Status = 0, + TypeId = "301ed120-dfc5-4d7c-af59-b56a519581c9", + Value = "未知" + }, + new + { + Id = "b6ad194b-ccfb-4ee7-b402-7b78e8bb8680", + Code = "DEFAULT", + IsDeleted = 0ul, + Remark = "默认常量,都以XIAONUO_开头的", + Sort = 100, + Status = 0, + TypeId = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Value = "默认常量" + }, + new + { + Id = "e2271e0a-17a3-41f3-81fa-dbe895ce0466", + Code = "ALIYUN_SMS", + IsDeleted = 0ul, + Remark = "阿里云短信配置", + Sort = 100, + Status = 0, + TypeId = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Value = "阿里云短信" + }, + new + { + Id = "5e61f455-1975-438b-bd17-85a1f89abe84", + Code = "TENCENT_SMS", + IsDeleted = 0ul, + Remark = "腾讯云短信", + Sort = 100, + Status = 0, + TypeId = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Value = "腾讯云短信" + }, + new + { + Id = "9cba05e7-495a-43fb-b86b-fa459da5b04d", + Code = "EMAIL", + IsDeleted = 0ul, + Remark = "邮件配置", + Sort = 100, + Status = 0, + TypeId = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Value = "邮件配置" + }, + new + { + Id = "81d87a9c-a4ee-46dc-be69-71dcccb14d9d", + Code = "FILE_PATH", + IsDeleted = 0ul, + Remark = "文件上传路径", + Sort = 100, + Status = 0, + TypeId = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Value = "文件上传路径" + }, + new + { + Id = "fdf38fa8-3d1e-4a43-84bc-785c0a394160", + Code = "OAUTH", + IsDeleted = 0ul, + Remark = "Oauth配置", + Sort = 100, + Status = 0, + TypeId = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Value = "Oauth配置" + }, + new + { + Id = "e3c9ebce-bdae-45a3-92b1-fc2e35a23242", + Code = "0", + IsDeleted = 0ul, + Remark = "正常", + Sort = 100, + Status = 0, + TypeId = "b0cfa91c-1189-4f39-bc5a-f035885d0604", + Value = "正常" + }, + new + { + Id = "22492650-a92b-43f0-9954-3d3891ec6e45", + Code = "1", + IsDeleted = 0ul, + Remark = "停用", + Sort = 100, + Status = 0, + TypeId = "b0cfa91c-1189-4f39-bc5a-f035885d0604", + Value = "停用" + }, + new + { + Id = "297030a2-88d9-4646-b7c1-a17c9a8c0b98", + Code = "2", + IsDeleted = 0ul, + Remark = "删除", + Sort = 100, + Status = 0, + TypeId = "b0cfa91c-1189-4f39-bc5a-f035885d0604", + Value = "删除" + }, + new + { + Id = "1159fc34-ef51-4e0f-b55b-0220d2445a1e", + Code = "N", + IsDeleted = 0ul, + Remark = "否", + Sort = 100, + Status = 0, + TypeId = "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", + Value = "否" + }, + new + { + Id = "7d3115a8-938a-4d09-a2c9-21ad65b8b65a", + Code = "Y", + IsDeleted = 0ul, + Remark = "是", + Sort = 100, + Status = 0, + TypeId = "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", + Value = "是" + }, + new + { + Id = "8204daac-b2ea-41f6-ab52-ef299a05fd94", + Code = "1", + IsDeleted = 0ul, + Remark = "登录", + Sort = 100, + Status = 0, + TypeId = "2cecf329-cf95-44eb-a8d7-3fb77b13e093", + Value = "登录" + }, + new + { + Id = "934099f4-c1a6-4f63-8cff-a42356369dd9", + Code = "2", + IsDeleted = 0ul, + Remark = "登出", + Sort = 100, + Status = 0, + TypeId = "2cecf329-cf95-44eb-a8d7-3fb77b13e093", + Value = "登出" + }, + new + { + Id = "a8cd8263-4397-4d68-91db-d92330c67632", + Code = "0", + IsDeleted = 0ul, + Remark = "目录", + Sort = 100, + Status = 0, + TypeId = "e973d383-c28e-42e0-9e23-5f2bd592fef5", + Value = "目录" + }, + new + { + Id = "bb082602-57ea-4941-b68b-64460e7f63b6", + Code = "1", + IsDeleted = 0ul, + Remark = "菜单", + Sort = 100, + Status = 0, + TypeId = "e973d383-c28e-42e0-9e23-5f2bd592fef5", + Value = "菜单" + }, + new + { + Id = "a4cba529-769a-4309-add6-b15b25ebf05a", + Code = "2", + IsDeleted = 0ul, + Remark = "按钮", + Sort = 100, + Status = 0, + TypeId = "e973d383-c28e-42e0-9e23-5f2bd592fef5", + Value = "按钮" + }, + new + { + Id = "7ec98dee-8dc9-47fe-9276-f3312ed5dd24", + Code = "0", + IsDeleted = 0ul, + Remark = "未发送", + Sort = 100, + Status = 0, + TypeId = "058db370-3718-42c3-8ba7-095341b1fe13", + Value = "未发送" + }, + new + { + Id = "83cf4407-dbe1-4da2-883d-a3e16a780f37", + Code = "1", + IsDeleted = 0ul, + Remark = "发送成功", + Sort = 100, + Status = 0, + TypeId = "058db370-3718-42c3-8ba7-095341b1fe13", + Value = "发送成功" + }, + new + { + Id = "e1e71562-015e-466b-b98b-29f4b8966bce", + Code = "2", + IsDeleted = 0ul, + Remark = "发送失败", + Sort = 100, + Status = 0, + TypeId = "058db370-3718-42c3-8ba7-095341b1fe13", + Value = "发送失败" + }, + new + { + Id = "13e71f10-539b-4016-9acf-e3541c0f04db", + Code = "3", + IsDeleted = 0ul, + Remark = "失效", + Sort = 100, + Status = 0, + TypeId = "058db370-3718-42c3-8ba7-095341b1fe13", + Value = "失效" + }, + new + { + Id = "f965b257-b2ff-4a18-9084-6e805547e9e6", + Code = "0", + IsDeleted = 0ul, + Remark = "无", + Sort = 100, + Status = 0, + TypeId = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Value = "无" + }, + new + { + Id = "75c40b12-07d1-4828-9b6c-132f4bca194c", + Code = "1", + IsDeleted = 0ul, + Remark = "组件", + Sort = 100, + Status = 0, + TypeId = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Value = "组件" + }, + new + { + Id = "be3197fd-2fba-4e79-b252-793f05e51a21", + Code = "2", + IsDeleted = 0ul, + Remark = "内链", + Sort = 100, + Status = 0, + TypeId = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Value = "内链" + }, + new + { + Id = "2a10adc6-b286-4fad-9719-7e7321c7a93e", + Code = "3", + IsDeleted = 0ul, + Remark = "外链", + Sort = 100, + Status = 0, + TypeId = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Value = "外链" + }, + new + { + Id = "d3984ed0-29d5-416e-87c6-75364010677b", + Code = "1", + IsDeleted = 0ul, + Remark = "系统权重", + Sort = 100, + Status = 0, + TypeId = "b3235678-f7fe-442b-8fba-e792a89b78f2", + Value = "系统权重" + }, + new + { + Id = "f4771570-e4a5-416f-b82f-1e3082c35ee8", + Code = "2", + IsDeleted = 0ul, + Remark = "业务权重", + Sort = 100, + Status = 0, + TypeId = "b3235678-f7fe-442b-8fba-e792a89b78f2", + Value = "业务权重" + }, + new + { + Id = "a2d6bdfe-ee61-4425-94c9-7ece3de080fa", + Code = "1", + IsDeleted = 0ul, + Remark = "全部数据", + Sort = 100, + Status = 0, + TypeId = "a2068ed1-62a6-463c-b720-06111d994079", + Value = "全部数据" + }, + new + { + Id = "d0b25877-165e-41b8-9034-7a8fea7e5776", + Code = "2", + IsDeleted = 0ul, + Remark = "本部门及以下数据", + Sort = 100, + Status = 0, + TypeId = "a2068ed1-62a6-463c-b720-06111d994079", + Value = "本部门及以下数据" + }, + new + { + Id = "375362c8-d694-40d9-8c55-07669e472460", + Code = "3", + IsDeleted = 0ul, + Remark = "本部门数据", + Sort = 100, + Status = 0, + TypeId = "a2068ed1-62a6-463c-b720-06111d994079", + Value = "本部门数据" + }, + new + { + Id = "70afe4c1-3495-483a-bdd0-3d4ea45136b3", + Code = "4", + IsDeleted = 0ul, + Remark = "仅本人数据", + Sort = 100, + Status = 0, + TypeId = "a2068ed1-62a6-463c-b720-06111d994079", + Value = "仅本人数据" + }, + new + { + Id = "6f395e69-8add-40ae-a378-0881d64a4413", + Code = "5", + IsDeleted = 0ul, + Remark = "自定义数据", + Sort = 100, + Status = 0, + TypeId = "a2068ed1-62a6-463c-b720-06111d994079", + Value = "自定义数据" + }, + new + { + Id = "a819d549-6107-43a2-99d2-377cf0a5681a", + Code = "1", + IsDeleted = 0ul, + Remark = "app", + Sort = 100, + Status = 0, + TypeId = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", + Value = "app" + }, + new + { + Id = "b1e821b3-4e7b-4e60-a67f-a40d327ab6d6", + Code = "2", + IsDeleted = 0ul, + Remark = "pc", + Sort = 100, + Status = 0, + TypeId = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", + Value = "pc" + }, + new + { + Id = "2bce5da0-b386-4412-935d-d081b7cf4391", + Code = "3", + IsDeleted = 0ul, + Remark = "其他", + Sort = 100, + Status = 0, + TypeId = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", + Value = "其他" + }, + new + { + Id = "35aac71b-9939-4b2e-8533-d087618c1dca", + Code = "0", + IsDeleted = 0ul, + Remark = "其它", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "其它" + }, + new + { + Id = "e7585292-d6c6-475f-bf87-8ad473ce6be4", + Code = "1", + IsDeleted = 0ul, + Remark = "增加", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "增加" + }, + new + { + Id = "387d403c-6af3-4bda-af05-d60472823480", + Code = "2", + IsDeleted = 0ul, + Remark = "删除", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "删除" + }, + new + { + Id = "4656bf7b-df6a-4c71-b963-18d8af3f93a7", + Code = "3", + IsDeleted = 0ul, + Remark = "编辑", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "编辑" + }, + new + { + Id = "9edba767-7008-4623-8dbf-75417f1a0c82", + Code = "4", + IsDeleted = 0ul, + Remark = "更新", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "更新" + }, + new + { + Id = "d1334517-ddfa-47f3-b053-88ea999babc7", + Code = "5", + IsDeleted = 0ul, + Remark = "查询", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "查询" + }, + new + { + Id = "fe6e46ee-208b-446f-8aaa-05bd5eaa459b", + Code = "6", + IsDeleted = 0ul, + Remark = "详情", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "详情" + }, + new + { + Id = "bf8f818f-060b-4815-8fe9-11bb356cb2e6", + Code = "7", + IsDeleted = 0ul, + Remark = "树", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "树" + }, + new + { + Id = "2b9cf0b8-74ba-4b36-8504-275a2387729a", + Code = "8", + IsDeleted = 0ul, + Remark = "导入", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "导入" + }, + new + { + Id = "db13458a-22b4-4f5e-b6f9-c3c9e1400909", + Code = "9", + IsDeleted = 0ul, + Remark = "导出", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "导出" + }, + new + { + Id = "e02d9274-aa68-4e2c-9211-b226f1e6423e", + Code = "10", + IsDeleted = 0ul, + Remark = "授权", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "授权" + }, + new + { + Id = "023244cd-eb32-4a19-bb3c-97301be1e769", + Code = "11", + IsDeleted = 0ul, + Remark = "强退", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "强退" + }, + new + { + Id = "beb773cd-a22a-44e2-ac4b-5ab6f21aa3c4", + Code = "12", + IsDeleted = 0ul, + Remark = "清空", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "清空" + }, + new + { + Id = "b6f55ff4-6b6a-452a-b372-32ac2f1f2b30", + Code = "13", + IsDeleted = 0ul, + Remark = "修改状态", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "修改状态" + }, + new + { + Id = "f86e19a0-8ba8-4588-91f6-be2af525f490", + Code = "1", + IsDeleted = 0ul, + Remark = "阿里云", + Sort = 100, + Status = 0, + TypeId = "b924e0c1-3f23-4e37-9f27-90e945381304", + Value = "阿里云" + }, + new + { + Id = "91c522b5-4f6f-48a5-ba79-962d56821bdc", + Code = "2", + IsDeleted = 0ul, + Remark = "腾讯云", + Sort = 100, + Status = 0, + TypeId = "b924e0c1-3f23-4e37-9f27-90e945381304", + Value = "腾讯云" + }, + new + { + Id = "cc64be62-3213-4442-a98a-c508bc35104b", + Code = "3", + IsDeleted = 0ul, + Remark = "minio", + Sort = 100, + Status = 0, + TypeId = "b924e0c1-3f23-4e37-9f27-90e945381304", + Value = "minio" + }, + new + { + Id = "cdc4a9ee-7436-4807-87cd-4350a72745b0", + Code = "4", + IsDeleted = 0ul, + Remark = "本地", + Sort = 100, + Status = 0, + TypeId = "b924e0c1-3f23-4e37-9f27-90e945381304", + Value = "本地" + }, + new + { + Id = "76e885e8-1b40-45b6-bb0f-5519c6839df2", + Code = "1", + IsDeleted = 0ul, + Remark = "运行", + Sort = 100, + Status = 0, + TypeId = "0f1b8660-d932-4a53-a681-a38bebae91e0", + Value = "运行" + }, + new + { + Id = "6e3591ec-2902-4bf3-b5a2-7ebc94ebc08f", + Code = "2", + IsDeleted = 0ul, + Remark = "停止", + Sort = 100, + Status = 0, + TypeId = "0f1b8660-d932-4a53-a681-a38bebae91e0", + Value = "停止" }); }); modelBuilder.Entity("Ewide.Core.SysDictType", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Code") @@ -1985,11 +2013,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("编码"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -1997,8 +2026,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("创建者名称"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -2018,11 +2048,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("状态"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -2040,9 +2071,9 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070906483L, + Id = "b0cfa91c-1189-4f39-bc5a-f035885d0604", Code = "common_status", - IsDeleted = false, + IsDeleted = 0ul, Name = "通用状态", Remark = "通用状态", Sort = 100, @@ -2050,9 +2081,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906484L, + Id = "301ed120-dfc5-4d7c-af59-b56a519581c9", Code = "sex", - IsDeleted = false, + IsDeleted = 0ul, Name = "性别", Remark = "性别字典", Sort = 100, @@ -2060,9 +2091,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906485L, + Id = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", Code = "consts_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "常量的分类", Remark = "常量的分类,用于区别一组配置", Sort = 100, @@ -2070,9 +2101,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906486L, + Id = "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", Code = "yes_or_no", - IsDeleted = false, + IsDeleted = 0ul, Name = "是否", Remark = "是否", Sort = 100, @@ -2080,9 +2111,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906487L, + Id = "2cecf329-cf95-44eb-a8d7-3fb77b13e093", Code = "vis_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "访问类型", Remark = "访问类型", Sort = 100, @@ -2090,9 +2121,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906488L, + Id = "e973d383-c28e-42e0-9e23-5f2bd592fef5", Code = "menu_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单类型", Remark = "菜单类型", Sort = 100, @@ -2100,9 +2131,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906489L, + Id = "058db370-3718-42c3-8ba7-095341b1fe13", Code = "send_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "发送类型", Remark = "发送类型", Sort = 100, @@ -2110,9 +2141,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906490L, + Id = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", Code = "open_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "打开方式", Remark = "打开方式", Sort = 100, @@ -2120,9 +2151,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906491L, + Id = "b3235678-f7fe-442b-8fba-e792a89b78f2", Code = "menu_weight", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单权重", Remark = "菜单权重", Sort = 100, @@ -2130,9 +2161,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906492L, + Id = "a2068ed1-62a6-463c-b720-06111d994079", Code = "data_scope_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "数据范围类型", Remark = "数据范围类型", Sort = 100, @@ -2140,9 +2171,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906493L, + Id = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", Code = "sms_send_source", - IsDeleted = false, + IsDeleted = 0ul, Name = "短信发送来源", Remark = "短信发送来源", Sort = 100, @@ -2150,9 +2181,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906494L, + Id = "8461bd1d-311b-487e-b579-d6049c6fb191", Code = "op_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "操作类型", Remark = "操作类型", Sort = 100, @@ -2160,9 +2191,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906495L, + Id = "b924e0c1-3f23-4e37-9f27-90e945381304", Code = "file_storage_location", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件存储位置", Remark = "文件存储位置", Sort = 100, @@ -2170,9 +2201,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910533L, + Id = "0f1b8660-d932-4a53-a681-a38bebae91e0", Code = "run_status", - IsDeleted = false, + IsDeleted = 0ul, Name = "运行状态", Remark = "定时任务运行状态", Sort = 100, @@ -2180,9 +2211,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910534L, + Id = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", Code = "notice_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "通知公告类型", Remark = "通知公告类型", Sort = 100, @@ -2190,9 +2221,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910535L, + Id = "b30937e6-03cd-4d98-a413-10b06d605e5a", Code = "notice_status", - IsDeleted = false, + IsDeleted = 0ul, Name = "通知公告状态", Remark = "通知公告状态", Sort = 100, @@ -2200,9 +2231,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910536L, + Id = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", Code = "yes_true_false", - IsDeleted = false, + IsDeleted = 0ul, Name = "是否boolean", Remark = "是否boolean", Sort = 100, @@ -2210,9 +2241,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910537L, + Id = "430d0538-054a-4b37-a459-1095d0ccf4ae", Code = "code_gen_create_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "代码生成方式", Remark = "代码生成方式", Sort = 100, @@ -2220,9 +2251,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910538L, + Id = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", Code = "request_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "请求方式", Remark = "请求方式", Sort = 100, @@ -2230,9 +2261,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070922827L, + Id = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Code = "code_gen_effect_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "代码生成作用类型", Remark = "代码生成作用类型", Sort = 100, @@ -2240,9 +2271,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070922828L, + Id = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Code = "code_gen_query_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "代码生成查询类型", Remark = "代码生成查询类型", Sort = 100, @@ -2250,9 +2281,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070922829L, + Id = "28f653d4-e573-4f54-8e5c-4e308780145a", Code = "code_gen_net_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "代码生成.NET类型", Remark = "代码生成.NET类型", Sort = 100, @@ -2262,16 +2293,18 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysEmp", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("用户Id"); b.Property("JobNum") .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("工号"); - b.Property("OrgId") - .HasColumnType("bigint") + b.Property("OrgId") + .HasColumnType("varchar(36)") + .HasColumnName("OrgId") .HasComment("机构Id"); b.Property("OrgName") @@ -2288,39 +2321,42 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910551L, + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", JobNum = "D1001", - OrgId = 142307070910539L, + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", OrgName = "华夏集团" }, new { - Id = 142307070910552L, + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", JobNum = "D1002", - OrgId = 142307070910539L, + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", OrgName = "华夏集团" }, new { - Id = 142307070910553L, + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", JobNum = "D1003", - OrgId = 142307070910539L, + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", OrgName = "华夏集团" }); }); modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => { - b.Property("SysEmpId") - .HasColumnType("bigint") + b.Property("SysEmpId") + .HasColumnType("varchar(36)") + .HasColumnName("SysEmpId") .HasComment("员工Id"); - b.Property("SysOrgId") - .HasColumnType("bigint") + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") .HasComment("机构Id"); - b.Property("SysPosId") - .HasColumnType("bigint") + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") .HasComment("职位Id"); b.HasKey("SysEmpId", "SysOrgId", "SysPosId"); @@ -2337,44 +2373,46 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - SysEmpId = 142307070910551L, - SysOrgId = 142307070910539L, - SysPosId = 142307070910547L + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" }, new { - SysEmpId = 142307070910551L, - SysOrgId = 142307070910540L, - SysPosId = 142307070910548L + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" }, new { - SysEmpId = 142307070910551L, - SysOrgId = 142307070910541L, - SysPosId = 142307070910549L + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "127c0a5d-43ac-4370-b313-082361885aca", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" }, new { - SysEmpId = 142307070910551L, - SysOrgId = 142307070910542L, - SysPosId = 142307070910550L + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + SysPosId = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66" }, new { - SysEmpId = 142307070910553L, - SysOrgId = 142307070910542L, - SysPosId = 142307070910547L + SysEmpId = "16a74726-e156-499f-9942-0e0e24ad0c3f", + SysOrgId = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" }); }); modelBuilder.Entity("Ewide.Core.SysEmpPos", b => { - b.Property("SysEmpId") - .HasColumnType("bigint") + b.Property("SysEmpId") + .HasColumnType("varchar(36)") + .HasColumnName("SysEmpId") .HasComment("员工Id"); - b.Property("SysPosId") - .HasColumnType("bigint") + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") .HasComment("职位Id"); b.HasKey("SysEmpId", "SysPosId"); @@ -2389,38 +2427,40 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - SysEmpId = 142307070910551L, - SysPosId = 142307070910547L + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" }, new { - SysEmpId = 142307070910551L, - SysPosId = 142307070910548L + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" }, new { - SysEmpId = 142307070910552L, - SysPosId = 142307070910549L + SysEmpId = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" }, new { - SysEmpId = 142307070910553L, - SysPosId = 142307070910547L + SysEmpId = "16a74726-e156-499f-9942-0e0e24ad0c3f", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" }); }); modelBuilder.Entity("Ewide.Core.SysFile", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -2460,16 +2500,18 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("文件后缀"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -2496,7 +2538,7 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("列名"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("操作时间"); b.Property("NewValue") @@ -2515,8 +2557,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("表名"); - b.Property("UserId") - .HasColumnType("bigint") + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") .HasComment("操作人Id"); b.Property("UserName") @@ -2574,7 +2617,7 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("名称"); b.Property("OpTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("操作时间"); b.Property("OpType") @@ -2652,7 +2695,7 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("是否执行成功"); b.Property("VisTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("访问时间"); b.Property("VisType") @@ -2669,8 +2712,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysMenu", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Application") @@ -2686,11 +2730,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("组件地址"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -2702,8 +2747,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("图标"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Link") @@ -2722,8 +2768,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("权限标识"); - b.Property("Pid") - .HasColumnType("bigint") + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") .HasComment("父Id"); b.Property("Pids") @@ -2754,11 +2801,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("菜单类型"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -2766,8 +2814,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("修改者名称"); - b.Property("Visible") - .HasColumnType("longtext CHARACTER SET utf8mb4") + b.Property("Visible") + .HasColumnType("bit") + .HasColumnName("Visible") .HasComment("是否可见"); b.Property("Weight") @@ -2784,2648 +2833,2649 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910560L, + Id = "83ce02c9-b37f-4885-96e3-9b34371edb2e", Application = "system", Code = "system_index", Component = "RouteView", Icon = "home", - IsDeleted = false, + IsDeleted = 0ul, Name = "主控面板", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Redirect = "/analysis", Router = "/", Sort = 1, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910561L, + Id = "914a520d-9e4f-465b-ae05-7248b37d4be1", Application = "system", Code = "system_index_dashboard", Component = "system/dashboard/Analysis", - IsDeleted = false, + IsDeleted = 0ul, Name = "分析页", OpenType = 0, - Pid = 142307070910560L, - Pids = "[0],[142307070910560],", + Pid = "83ce02c9-b37f-4885-96e3-9b34371edb2e", + Pids = "[00000000-0000-0000-0000-000000000000],[83ce02c9-b37f-4885-96e3-9b34371edb2e],", Router = "analysis", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910562L, + Id = "72981ad9-9036-4aa7-b8f4-dc407eda50b4", Application = "system", Code = "system_index_workplace", Component = "system/dashboard/Workplace", - IsDeleted = false, + IsDeleted = 0ul, Name = "工作台", OpenType = 0, - Pid = 142307070910560L, - Pids = "[0],[142307070910560],", + Pid = "83ce02c9-b37f-4885-96e3-9b34371edb2e", + Pids = "[00000000-0000-0000-0000-000000000000],[83ce02c9-b37f-4885-96e3-9b34371edb2e],", Router = "workplace", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910563L, + Id = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", Application = "system", Code = "sys_mgr", Component = "PageView", Icon = "team", - IsDeleted = false, + IsDeleted = 0ul, Name = "组织架构", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/sys", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910564L, + Id = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", Application = "system", Code = "sys_user_mgr", Component = "system/user/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户管理", OpenType = 1, - Pid = 142307070910563L, - Pids = "[0],[142307070910563],", + Pid = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],", Router = "/mgr_user", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910565L, + Id = "bff7e542-6463-4f82-a03d-b1022e60d4b6", Application = "system", Code = "sys_user_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户查询", OpenType = 0, Permission = "sysUser:page", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910566L, + Id = "936440c7-93ef-4d2f-adff-6151f4317355", Application = "system", Code = "sys_user_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户编辑", OpenType = 0, Permission = "sysUser:edit", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910567L, + Id = "281888e3-d183-4711-ba27-298ef6e64659", Application = "system", Code = "sys_user_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户增加", OpenType = 0, Permission = "sysUser:add", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910568L, + Id = "e4aff800-d34a-416b-bd6e-dcebaa1dd436", Application = "system", Code = "sys_user_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户删除", OpenType = 0, Permission = "sysUser:delete", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910569L, + Id = "7a266494-e17b-480d-8f50-cc234e6fe424", Application = "system", Code = "sys_user_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户详情", OpenType = 0, Permission = "sysUser:detail", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910570L, + Id = "0d93f763-20d3-4c95-add3-3d94770b110e", Application = "system", Code = "sys_user_mgr_export", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户导出", OpenType = 0, Permission = "sysUser:export", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910571L, + Id = "17d047c3-6e95-4f7d-93db-97817d886fa2", Application = "system", Code = "sys_user_mgr_selector", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户选择器", OpenType = 0, Permission = "sysUser:selector", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910572L, + Id = "5fc44256-2e56-4805-9382-b5504ca5b6cb", Application = "system", Code = "sys_user_mgr_grant_role", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户授权角色", OpenType = 0, Permission = "sysUser:grantRole", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910573L, + Id = "ceff7899-6779-4708-b9ed-a2d5b488cff2", Application = "system", Code = "sys_user_mgr_own_role", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户拥有角色", OpenType = 0, Permission = "sysUser:ownRole", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910574L, + Id = "38ba9ccc-eb96-4a60-a5ab-f6ea013f8291", Application = "system", Code = "sys_user_mgr_grant_data", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户授权数据", OpenType = 0, Permission = "sysUser:grantData", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910575L, + Id = "cf2f8faf-b280-456c-8865-64115e04019f", Application = "system", Code = "sys_user_mgr_own_data", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户拥有数据", OpenType = 0, Permission = "sysUser:ownData", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910576L, + Id = "711563e5-fed6-44d6-bcf3-138c73cfbfca", Application = "system", Code = "sys_user_mgr_update_info", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户更新信息", OpenType = 0, Permission = "sysUser:updateInfo", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910577L, + Id = "306fe9bf-3132-4011-9f3f-1a2f4ead7734", Application = "system", Code = "sys_user_mgr_update_pwd", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户修改密码", OpenType = 0, Permission = "sysUser:updatePwd", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910578L, + Id = "791b0d88-7e25-490f-a94f-a2e32bb3b6e6", Application = "system", Code = "sys_user_mgr_change_status", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户修改状态", OpenType = 0, Permission = "sysUser:changeStatus", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910579L, + Id = "9d681aac-528a-46b0-9718-ffc4abe9c29e", Application = "system", Code = "sys_user_mgr_update_avatar", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户修改头像", OpenType = 0, Permission = "sysUser:updateAvatar", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910580L, + Id = "471b5259-5f55-4643-841c-f07089cfafdf", Application = "system", Code = "sys_user_mgr_reset_pwd", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户重置密码", OpenType = 0, Permission = "sysUser:resetPwd", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918777L, + Id = "471d3098-90a4-47e1-bd07-5d3ed8d21fb0", Application = "system", Code = "sys_user_mgr_login", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户登录信息", OpenType = 0, Permission = "getLoginUser", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 1, Type = 2, - Visible = "N", + Visible = 0ul, Weight = 1 }, new { - Id = 142307070910581L, + Id = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", Application = "system", Code = "sys_org_mgr", Component = "system/org/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构管理", OpenType = 1, - Pid = 142307070910563L, - Pids = "[0],[142307070910563],", + Pid = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],", Router = "/org", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910582L, + Id = "b7c34c9b-933e-4c48-b1d0-af15a1f7da1f", Application = "system", Code = "sys_org_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构查询", OpenType = 0, Permission = "sysOrg:page", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910583L, + Id = "917064b2-c715-4fa4-9b2d-20a11b784ed1", Application = "system", Code = "sys_org_mgr_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构列表", OpenType = 0, Permission = "sysOrg:list", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910584L, + Id = "d7c18d60-f28f-4a57-90b3-26fc95249ae0", Application = "system", Code = "sys_org_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构增加", OpenType = 0, Permission = "sysOrg:add", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910585L, + Id = "e65eb1e3-cc9e-4309-8c7a-9ac41765b239", Application = "system", Code = "sys_org_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构编辑", OpenType = 0, Permission = "sysOrg:edit", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910586L, + Id = "c2450c4c-89c6-46e8-8f89-11331790cbe3", Application = "system", Code = "sys_org_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构删除", OpenType = 0, Permission = "sysOrg:delete", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910587L, + Id = "695a6018-82c3-466e-a2a1-dab16039bfdb", Application = "system", Code = "sys_org_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构详情", OpenType = 0, Permission = "sysOrg:detail", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910588L, + Id = "2d153046-279b-43be-8f57-46875118fd2c", Application = "system", Code = "sys_org_mgr_tree", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构树", OpenType = 0, Permission = "sysOrg:tree", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910589L, + Id = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", Application = "system", Code = "sys_pos_mgr", Component = "system/pos/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位管理", OpenType = 1, - Pid = 142307070910563L, - Pids = "[0],[142307070910563],", + Pid = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],", Router = "/pos", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910590L, + Id = "d2436601-bc48-4610-ba67-5b666f8ce33a", Application = "system", Code = "sys_pos_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位查询", OpenType = 0, Permission = "sysPos:page", - Pid = 142307070910589L, - Pids = "[0],[142307070910563],[142307070910589],", + Pid = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910591L, + Id = "1305efaa-b81a-475f-9dde-8f6549ca7743", Application = "system", Code = "sys_pos_mgr_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位列表", OpenType = 0, Permission = "sysPos:list", - Pid = 142307070910589L, - Pids = "[0],[142307070910563],[142307070910589],", + Pid = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914629L, + Id = "c227e732-f231-4488-89b0-d1c9dad78950", Application = "system", Code = "sys_pos_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位增加", OpenType = 0, Permission = "sysPos:add", - Pid = 142307070910589L, - Pids = "[0],[142307070910563],[142307070910589],", + Pid = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914630L, + Id = "9dafbe04-83c9-482c-9c83-81f4da045da5", Application = "system", Code = "sys_pos_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位编辑", OpenType = 0, Permission = "sysPos:edit", - Pid = 142307070910589L, - Pids = "[0],[142307070910563],[142307070910589],", + Pid = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914631L, + Id = "031df05e-b7c6-4ecd-aff2-f189c994e86d", Application = "system", Code = "sys_pos_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位删除", OpenType = 0, Permission = "sysPos:delete", - Pid = 142307070910589L, - Pids = "[0],[142307070910563],[142307070910589],", + Pid = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914632L, + Id = "fe5ee8a1-2145-43c6-bdeb-518f3a9c127d", Application = "system", Code = "sys_pos_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位详情", OpenType = 0, Permission = "sysPos:detail", - Pid = 142307070910589L, - Pids = "[0],[142307070910563],[142307070910589],", + Pid = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914633L, + Id = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", Application = "system", Code = "auth_manager", Component = "PageView", Icon = "safety-certificate", - IsDeleted = false, + IsDeleted = 0ul, Name = "权限管理", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/auth", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914634L, + Id = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", Application = "system", Code = "sys_app_mgr", Component = "system/app/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用管理", OpenType = 1, - Pid = 142307070914633L, - Pids = "[0],[142307070914633],", + Pid = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],", Router = "/app", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914635L, + Id = "dbaa7a6d-234f-4cc9-977f-4544b8bb45b8", Application = "system", Code = "sys_app_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用查询", OpenType = 0, Permission = "sysApp:page", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914636L, + Id = "ab7b2b41-b0bc-4b9c-9017-f5c6918e393e", Application = "system", Code = "sys_app_mgr_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用列表", OpenType = 0, Permission = "sysApp:list", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914637L, + Id = "f4e1d63b-5d92-46eb-82aa-267335a5a3f3", Application = "system", Code = "sys_app_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用增加", OpenType = 0, Permission = "sysApp:add", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914638L, + Id = "f33a3791-1c01-4d30-bcc3-d9fdf5246376", Application = "system", Code = "sys_app_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用编辑", OpenType = 0, Permission = "sysApp:edit", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914639L, + Id = "e0a6cf90-0a8b-44e4-a32f-5f43ef996b82", Application = "system", Code = "sys_app_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用删除", OpenType = 0, Permission = "sysApp:delete", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914640L, + Id = "a0abe974-5ae9-440b-9d16-2412eab52d70", Application = "system", Code = "sys_app_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用详情", OpenType = 0, Permission = "sysApp:detail", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914641L, + Id = "f640e243-b439-4109-8aea-c66205ef6b12", Application = "system", Code = "sys_app_mgr_set_as_default", - IsDeleted = false, + IsDeleted = 0ul, Name = "设为默认应用", OpenType = 0, Permission = "sysApp:setAsDefault", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914642L, + Id = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", Application = "system", Code = "sys_menu_mgr", Component = "system/menu/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单管理", OpenType = 1, - Pid = 142307070914633L, - Pids = "[0],[142307070914633],", + Pid = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],", Router = "/menu", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914643L, + Id = "e9982e73-1833-4674-9403-ee3dee2efdf7", Application = "system", Code = "sys_menu_mgr_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单列表", OpenType = 0, Permission = "sysMenu:list", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914644L, + Id = "758e15e6-75a6-4b72-8f94-5da379e53354", Application = "system", Code = "sys_menu_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单增加", OpenType = 0, Permission = "sysMenu:add", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914645L, + Id = "07139c19-6b39-49f5-9e22-c4dc7e9d947b", Application = "system", Code = "sys_menu_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单编辑", OpenType = 0, Permission = "sysMenu:edit", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914646L, + Id = "857fb581-78ff-4884-a6fb-8dfb4951fef9", Application = "system", Code = "sys_menu_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单删除", OpenType = 0, Permission = "sysMenu:delete", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914647L, + Id = "cd43a8ee-9f98-4355-bf81-ba40f388b23f", Application = "system", Code = "sys_menu_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单详情", OpenType = 0, Permission = "sysMenu:detail", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914648L, + Id = "ec318997-596d-403a-91be-f303b234b02d", Application = "system", Code = "sys_menu_mgr_grant_tree", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单授权树", OpenType = 0, Permission = "sysMenu:treeForGrant", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914649L, + Id = "3892ef5d-39b2-4a4d-8047-cb96542fb54f", Application = "system", Code = "sys_menu_mgr_tree", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单树", OpenType = 0, Permission = "sysMenu:tree", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914650L, + Id = "00831a3b-d080-411f-afb9-9f415334b192", Application = "system", Code = "sys_menu_mgr_change", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单切换", OpenType = 0, Permission = "sysMenu:change", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914651L, + Id = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", Application = "system", Code = "sys_role_mgr", Component = "system/role/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色管理", OpenType = 1, - Pid = 142307070914633L, - Pids = "[0],[142307070914633],", + Pid = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],", Router = "/role", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914652L, + Id = "4241f4a0-89ab-4a6a-80bb-2830f855d3be", Application = "system", Code = "sys_role_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色查询", OpenType = 0, Permission = "sysRole:page", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914653L, + Id = "6a48beb1-c828-43d6-af3d-3e18ef163070", Application = "system", Code = "sys_role_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色增加", OpenType = 0, Permission = "sysRole:add", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914654L, + Id = "1198a602-a23d-4a06-aa9a-76aaf5f065a7", Application = "system", Code = "sys_role_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色编辑", OpenType = 0, Permission = "sysRole:edit", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914655L, + Id = "e7708eeb-2c87-4c3d-bc71-c395e5d708db", Application = "system", Code = "sys_role_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色删除", OpenType = 0, Permission = "sysRole:delete", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914656L, + Id = "63ab477f-88fb-4f4b-9dcd-0cb83ac767f6", Application = "system", Code = "sys_role_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色详情", OpenType = 0, Permission = "sysRole:detail", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914657L, + Id = "2622348c-dd8f-4ade-a350-de0a8f01e1f6", Application = "system", Code = "sys_role_mgr_drop_down", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色下拉", OpenType = 0, Permission = "sysRole:dropDown", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914658L, + Id = "73d84863-b381-40be-84bc-ec8381fa6c0a", Application = "system", Code = "sys_role_mgr_grant_menu", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色授权菜单", OpenType = 0, Permission = "sysRole:grantMenu", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914659L, + Id = "bbc5e792-3d72-4d0d-8ddb-25cf2c4e1374", Application = "system", Code = "sys_role_mgr_own_menu", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色拥有菜单", OpenType = 0, Permission = "sysRole:ownMenu", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914660L, + Id = "19234814-6007-484c-818c-88a664a2a339", Application = "system", Code = "sys_role_mgr_grant_data", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色授权数据", OpenType = 0, Permission = "sysRole:grantData", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914661L, + Id = "19e5c5f6-b598-4c42-8eed-3d46fb11b465", Application = "system", Code = "sys_role_mgr_own_data", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色拥有数据", OpenType = 0, Permission = "sysRole:ownData", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914662L, + Id = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", Application = "system", Code = "system_tools", Component = "PageView", Icon = "euro", - IsDeleted = false, + IsDeleted = 0ul, Name = "开发管理", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/tools", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914663L, + Id = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", Application = "system", Code = "system_tools_config", Component = "system/config/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "系统配置", OpenType = 1, - Pid = 142307070914662L, - Pids = "[0],[142307070914662],", + Pid = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", Router = "/config", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914664L, + Id = "c14c82bd-632d-4cc9-9236-37aa64b15ecf", Application = "system", Code = "system_tools_config_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "配置查询", OpenType = 0, Permission = "sysConfig:page", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914665L, + Id = "78d31d68-9c9b-4e02-94c9-8a74eea4c1fb", Application = "system", Code = "system_tools_config_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "配置列表", OpenType = 0, Permission = "sysConfig:list", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914666L, + Id = "fc91afb5-2b9e-428b-b5ff-b0ef35dd5336", Application = "system", Code = "system_tools_config_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "配置增加", OpenType = 0, Permission = "sysConfig:add", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914667L, + Id = "1efb72e8-3449-490a-92e0-308b124c338f", Application = "system", Code = "system_tools_config_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "配置编辑", OpenType = 0, Permission = "sysConfig:edit", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914668L, + Id = "5760230f-e6fc-4c3d-ba38-1c8a5a923eb3", Application = "system", Code = "system_tools_config_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "配置删除", OpenType = 0, Permission = "sysConfig:delete", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914669L, + Id = "6bfc0c53-5d6c-437c-9757-bc79e664d0f5", Application = "system", Code = "system_tools_config_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "配置详情", OpenType = 0, Permission = "sysConfig:detail", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914670L, + Id = "f7fe47a3-86b2-4660-9920-0c9836755666", Application = "system", Code = "sys_app_mgr_set_as_default", - IsDeleted = false, + IsDeleted = 0ul, Name = "设为默认应用", OpenType = 0, Permission = "sysApp:setAsDefault", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914671L, + Id = "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", Application = "system", Code = "sys_email_mgr", Component = "system/email/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮件发送", OpenType = 1, - Pid = 142307070914662L, - Pids = "[0],[142307070914662],", + Pid = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", Router = "/email", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914672L, + Id = "4d4cf5b3-bd4c-4f17-9fb2-47b28b00681f", Application = "system", Code = "sys_email_mgr_send_email", - IsDeleted = false, + IsDeleted = 0ul, Name = "发送文本邮件", OpenType = 0, Permission = "email:sendEmail", - Pid = 142307070914671L, - Pids = "[0],[142307070914662],[142307070914671],", + Pid = "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[cde43456-baae-4e9b-b6f9-b0ea9ab49adb],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914673L, + Id = "51e45073-1461-4b3b-ae06-d0d3dcf222e0", Application = "system", Code = "sys_email_mgr_send_email_html", - IsDeleted = false, + IsDeleted = 0ul, Name = "发送html邮件", OpenType = 0, Permission = "email:sendEmailHtml", - Pid = 142307070914671L, - Pids = "[0],[142307070914662],[142307070914671],", + Pid = "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[cde43456-baae-4e9b-b6f9-b0ea9ab49adb],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914674L, + Id = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", Application = "system", Code = "sys_sms_mgr", Component = "system/sms/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "短信管理", OpenType = 1, - Pid = 142307070914662L, - Pids = "[0],[142307070914662],", + Pid = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", Router = "/sms", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914675L, + Id = "2afa4925-b927-457e-88a1-d215b7d75fb6", Application = "system", Code = "sys_sms_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "短信发送查询", OpenType = 0, Permission = "sms:page", - Pid = 142307070914674L, - Pids = "[0],[142307070914662],[142307070914674],", + Pid = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[e571a1c9-8b43-459f-9dc6-1dcf967627b7],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914676L, + Id = "97c1b073-5e19-4542-89e2-d8da44d0f1df", Application = "system", Code = "sys_sms_mgr_send_login_message", - IsDeleted = false, + IsDeleted = 0ul, Name = "发送验证码短信", OpenType = 0, Permission = "sms:sendLoginMessage", - Pid = 142307070914674L, - Pids = "[0],[142307070914662],[142307070914674],", + Pid = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[e571a1c9-8b43-459f-9dc6-1dcf967627b7],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914677L, + Id = "d2454bd2-f300-4b28-95c0-12432c28cbdf", Application = "system", Code = "sys_sms_mgr_validate_message", - IsDeleted = false, + IsDeleted = 0ul, Name = "验证短信验证码", OpenType = 0, Permission = "sms:validateMessage", - Pid = 142307070914674L, - Pids = "[0],[142307070914662],[142307070914674],", + Pid = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[e571a1c9-8b43-459f-9dc6-1dcf967627b7],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914678L, + Id = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", Application = "system", Code = "sys_dict_mgr", Component = "system/dict/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典管理", OpenType = 1, - Pid = 142307070914662L, - Pids = "[0],[142307070914662],", + Pid = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", Router = "/dict", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914679L, + Id = "70c5e8c5-6104-4e53-99c0-4743e557456b", Application = "system", Code = "sys_dict_mgr_dict_type_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型查询", OpenType = 0, Permission = "sysDictType:page", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914680L, + Id = "1bd1d982-e05a-4bdc-a4e0-752d94f3196c", Application = "system", Code = "sys_dict_mgr_dict_type_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型列表", OpenType = 0, Permission = "sysDictType:list", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914681L, + Id = "bd09b023-0884-4f31-8cf7-f66f789fa3db", Application = "system", Code = "sys_dict_mgr_dict_type_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型增加", OpenType = 0, Permission = "sysDictType:add", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914682L, + Id = "1f7a41ff-5a46-449c-81f3-1618dfdcb4cd", Application = "system", Code = "sys_dict_mgr_dict_type_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型删除", OpenType = 0, Permission = "sysDictType:delete", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914683L, + Id = "2381cde4-2174-47e7-a1e5-e58da70e7a11", Application = "system", Code = "sys_dict_mgr_dict_type_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型编辑", OpenType = 0, Permission = "sysDictType:edit", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914684L, + Id = "8f7d3c74-8800-4922-9662-ac6af378c882", Application = "system", Code = "sys_dict_mgr_dict_type_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型详情", OpenType = 0, Permission = "sysDictType:detail", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914685L, + Id = "4f87b6de-be62-4398-b680-1f8611f2cd70", Application = "system", Code = "sys_dict_mgr_dict_type_drop_down", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型下拉", OpenType = 0, Permission = "sysDictType:dropDown", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914686L, + Id = "07c799b2-e8e9-4955-83da-97560f161d87", Application = "system", Code = "sys_dict_mgr_dict_type_change_status", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型修改状态", OpenType = 0, Permission = "sysDictType:changeStatus", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914687L, + Id = "29be8e3c-c2bb-4162-b282-fdf58c218b9d", Application = "system", Code = "sys_dict_mgr_dict_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值查询", OpenType = 0, Permission = "sysDictData:page", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918725L, + Id = "b8cbc4e1-ac10-4cda-b1e4-f816a2632d02", Application = "system", Code = "sys_dict_mgr_dict_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值列表", OpenType = 0, Permission = "sysDictData:list", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918726L, + Id = "54e97bde-94d6-42df-89e3-4c3ace153b22", Application = "system", Code = "sys_dict_mgr_dict_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值增加", OpenType = 0, Permission = "sysDictData:add", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918727L, + Id = "be98da08-a3b0-463c-8208-05d843620258", Application = "system", Code = "sys_dict_mgr_dict_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值删除", OpenType = 0, Permission = "sysDictData:delete", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918728L, + Id = "38809fc3-163f-4fe9-a488-c9bb5bce752a", Application = "system", Code = "sys_dict_mgr_dict_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值编辑", OpenType = 0, Permission = "sysDictData:edit", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918729L, + Id = "fc511b42-f0a1-489b-8418-7ef94b0fb374", Application = "system", Code = "sys_role_mgr_grant_data", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值详情", OpenType = 0, Permission = "sysDictData:detail", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918730L, + Id = "200428b3-1605-4c70-b840-e691e302ae69", Application = "system", Code = "sys_dict_mgr_dict_change_status", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值修改状态", OpenType = 0, Permission = "sysDictData:changeStatus", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918731L, + Id = "d40f424d-d5fc-4b86-a2bd-3a5a76076bc1", Application = "system", Code = "sys_swagger_mgr", Component = "Iframe", - IsDeleted = false, + IsDeleted = 0ul, Link = "http://127.0.0.1:5566/", Name = "接口文档", OpenType = 2, - Pid = 142307070914662L, - Pids = "[0],[142307070914662],", + Pid = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", Router = "/swagger", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918732L, + Id = "eec4563e-9307-4ccd-ac3a-93598badb195", Application = "system", Code = "sys_log_mgr", Component = "PageView", Icon = "read", - IsDeleted = false, + IsDeleted = 0ul, Name = "日志管理", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/log", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918733L, + Id = "322b2cb6-df29-483b-b011-54dce1532fae", Application = "system", Code = "sys_log_mgr_vis_log", Component = "system/log/vislog/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "访问日志", OpenType = 1, - Pid = 142307070918732L, - Pids = "[0],[142307070918732],", + Pid = "eec4563e-9307-4ccd-ac3a-93598badb195", + Pids = "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],", Router = "/vislog", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918734L, + Id = "122641c1-ab6d-4f91-9527-16fc8fea9708", Application = "system", Code = "sys_log_mgr_vis_log_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "访问日志查询", OpenType = 0, Permission = "sysVisLog:page", - Pid = 142307070918733L, - Pids = "[0],[142307070918732],[142307070918733],", + Pid = "322b2cb6-df29-483b-b011-54dce1532fae", + Pids = "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],[322b2cb6-df29-483b-b011-54dce1532fae],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918735L, + Id = "f2367804-6382-4e72-8282-e4f6f988ecd1", Application = "system", Code = "sys_log_mgr_vis_log_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "访问日志清空", OpenType = 0, Permission = "sysVisLog:delete", - Pid = 142307070918733L, - Pids = "[0],[142307070918732],[142307070918733],", + Pid = "322b2cb6-df29-483b-b011-54dce1532fae", + Pids = "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],[322b2cb6-df29-483b-b011-54dce1532fae],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918736L, + Id = "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", Application = "system", Code = "sys_log_mgr_op_log", Component = "system/log/oplog/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "操作日志", OpenType = 1, - Pid = 142307070918732L, - Pids = "[0],[142307070918732],", + Pid = "eec4563e-9307-4ccd-ac3a-93598badb195", + Pids = "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],", Router = "/oplog", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918737L, + Id = "7f44f49e-6458-4149-bbcd-9a937f552cec", Application = "system", Code = "sys_log_mgr_op_log_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "操作日志查询", OpenType = 0, Permission = "sysOpLog:page", - Pid = 142307070918736L, - Pids = "[0],[142307070918732],[142307070918736],", + Pid = "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", + Pids = "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],[1a1a13cb-f9a9-4ffe-924d-d523db79f7bf],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918738L, + Id = "263e0c00-2796-411c-9f50-0aa361f7781c", Application = "system", Code = "sys_log_mgr_op_log_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "操作日志清空", OpenType = 0, Permission = "sysOpLog:delete", - Pid = 142307070918736L, - Pids = "[0],[142307070918732],[142307070918736],", + Pid = "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", + Pids = "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],[1a1a13cb-f9a9-4ffe-924d-d523db79f7bf],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918739L, + Id = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", Application = "system", Code = "sys_monitor_mgr", Component = "PageView", Icon = "deployment-unit", - IsDeleted = false, + IsDeleted = 0ul, Name = "系统监控", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/monitor", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918740L, + Id = "c1e70042-fe3f-4efc-a6cc-86de8507f948", Application = "system", Code = "sys_monitor_mgr_machine_monitor", Component = "system/machine/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "服务监控", OpenType = 1, - Pid = 142307070918739L, - Pids = "[0],[142307070918739],", + Pid = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", + Pids = "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],", Router = "/machine", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918741L, + Id = "444f3658-defe-47a7-880e-bf0af8b66591", Application = "system", Code = "sys_monitor_mgr_machine_monitor_query", - IsDeleted = false, + IsDeleted = 0ul, Name = "服务监控查询", OpenType = 0, Permission = "sysMachine:query", - Pid = 142307070918740L, - Pids = "[0],[142307070918739],[142307070918740],", + Pid = "c1e70042-fe3f-4efc-a6cc-86de8507f948", + Pids = "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],[c1e70042-fe3f-4efc-a6cc-86de8507f948],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918742L, + Id = "49a8b476-327b-4f33-87b8-2d9bc50dc390", Application = "system", Code = "sys_monitor_mgr_online_user", Component = "system/onlineUser/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "在线用户", OpenType = 1, - Pid = 142307070918739L, - Pids = "[0],[142307070918739],", + Pid = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", + Pids = "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],", Router = "/onlineUser", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918743L, + Id = "4785eb5a-678a-4f9c-b07c-3b92acdd6de0", Application = "system", Code = "sys_monitor_mgr_online_user_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "在线用户列表", OpenType = 0, Permission = "sysOnlineUser:list", - Pid = 142307070918742L, - Pids = "[0],[142307070918739],[142307070918742],", + Pid = "49a8b476-327b-4f33-87b8-2d9bc50dc390", + Pids = "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],[49a8b476-327b-4f33-87b8-2d9bc50dc390],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918744L, + Id = "4dbf6765-ac79-4708-a9d5-16a4d4b09164", Application = "system", Code = "sys_monitor_mgr_online_user_force_exist", - IsDeleted = false, + IsDeleted = 0ul, Name = "在线用户强退", OpenType = 0, Permission = "sysOnlineUser:forceExist", - Pid = 142307070918742L, - Pids = "[0],[142307070918739],[142307070918742],", + Pid = "49a8b476-327b-4f33-87b8-2d9bc50dc390", + Pids = "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],[49a8b476-327b-4f33-87b8-2d9bc50dc390],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918745L, + Id = "31c2af01-b856-4a1d-a131-cdf8e847b1a4", Application = "system", Code = "sys_monitor_mgr_druid", Component = "Iframe", - IsDeleted = false, + IsDeleted = 0ul, Link = "http://localhost:82/druid/login.html", Name = "数据监控", OpenType = 2, - Pid = 142307070918739L, - Pids = "[0],[142307070918739],", + Pid = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", + Pids = "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],", Router = "/druid", Sort = 100, Status = 0, Type = 1, - Visible = "N", + Visible = 0ul, Weight = 1 }, new { - Id = 142307070918746L, + Id = "d4cac841-99e5-4014-af17-2986c9340306", Application = "system", Code = "sys_notice", Component = "PageView", Icon = "sound", - IsDeleted = false, + IsDeleted = 0ul, Name = "通知公告", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/notice", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918747L, + Id = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", Application = "system", Code = "sys_notice_mgr", Component = "system/notice/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告管理", OpenType = 1, - Pid = 142307070918746L, - Pids = "[0],[142307070918746],", + Pid = "d4cac841-99e5-4014-af17-2986c9340306", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],", Router = "/notice", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918748L, + Id = "54584ab7-25d1-45b7-b3d4-76ba21511f97", Application = "system", Code = "sys_notice_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告查询", OpenType = 0, Permission = "sysNotice:page", - Pid = 142307070918747L, - Pids = "[0],[142307070918746],[142307070918747],", + Pid = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918749L, + Id = "f27c8431-7da5-4ffe-a8f3-b511cf44c0c8", Application = "system", Code = "sys_notice_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告增加", OpenType = 0, Permission = "sysNotice:add", - Pid = 142307070918747L, - Pids = "[0],[142307070918746],[142307070918747],", + Pid = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918750L, + Id = "f84c1f3a-3a51-4be2-97c9-7543b044e457", Application = "system", Code = "sys_notice_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告编辑", OpenType = 0, Permission = "sysNotice:edit", - Pid = 142307070918747L, - Pids = "[0],[142307070918746],[142307070918747],", + Pid = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918751L, + Id = "a8abcb85-ad3b-47b9-8c9b-e7d1876b90cf", Application = "system", Code = "sys_notice_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告删除", OpenType = 0, Permission = "sysNotice:delete", - Pid = 142307070918747L, - Pids = "[0],[142307070918746],[142307070918747],", + Pid = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918752L, + Id = "fe9cbb41-7b05-4f32-b960-87a1ef146166", Application = "system", Code = "sys_notice_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告查看", OpenType = 0, Permission = "sysNotice:detail", - Pid = 142307070918747L, - Pids = "[0],[142307070918746],[142307070918747],", + Pid = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918753L, + Id = "3e547bb0-4cf5-4cf0-8386-48d2f3c12dcb", Application = "system", Code = "sys_notice_mgr_changeStatus", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告修改状态", OpenType = 0, Permission = "sysNotice:changeStatus", - Pid = 142307070918747L, - Pids = "[0],[142307070918746],[142307070918747],", + Pid = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918754L, + Id = "ac3065ff-d239-4e0e-86e5-d72cc658224c", Application = "system", Code = "sys_notice_mgr_received", Component = "system/noticeReceived/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "已收公告", OpenType = 1, - Pid = 142307070918746L, - Pids = "[0],[142307070918746],", + Pid = "d4cac841-99e5-4014-af17-2986c9340306", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],", Router = "/noticeReceived", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918755L, + Id = "e2d4b13b-eb3e-4ead-8fb8-4c61a3004726", Application = "system", Code = "sys_notice_mgr_received_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "已收公告查询", OpenType = 0, Permission = "sysNotice:received", - Pid = 142307070918754L, - Pids = "[0],[142307070918746],[142307070918754],", + Pid = "ac3065ff-d239-4e0e-86e5-d72cc658224c", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[ac3065ff-d239-4e0e-86e5-d72cc658224c],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918756L, + Id = "05326e62-f496-4950-8a29-40e8a479424f", Application = "system", Code = "sys_file_mgr", Component = "PageView", Icon = "file", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件管理", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/file", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918757L, + Id = "0af2a460-bbb0-472c-b027-8532970425df", Application = "system", Code = "sys_file_mgr_sys_file", Component = "system/file/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "系统文件", OpenType = 1, - Pid = 142307070918756L, - Pids = "[0],[142307070918756],", + Pid = "05326e62-f496-4950-8a29-40e8a479424f", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],", Router = "/file", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918758L, + Id = "c7bac800-b922-4173-bd8d-9888b4eab1d4", Application = "system", Code = "sys_file_mgr_sys_file_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件查询", OpenType = 0, Permission = "sysFileInfo:page", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918759L, + Id = "f47e1fa7-6329-4d67-8fe6-36ca06aad54b", Application = "system", Code = "sys_file_mgr_sys_file_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件列表", OpenType = 0, Permission = "sysFileInfo:list", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918760L, + Id = "cca0a2ee-cfb9-4996-affb-dc8d8168ac10", Application = "system", Code = "sys_file_mgr_sys_file_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件删除", OpenType = 0, Permission = "sysFileInfo:delete", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918761L, + Id = "eb738eaa-5eed-466d-b422-4eb6f4662dd9", Application = "system", Code = "sys_file_mgr_sys_file_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件详情", OpenType = 0, Permission = "sysFileInfo:detail", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918762L, + Id = "69b97ace-d849-4e52-8fc2-9da7d93e325f", Application = "system", Code = "sys_file_mgr_sys_file_upload", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件上传", OpenType = 0, Permission = "sysFileInfo:upload", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918763L, + Id = "e286d53d-bf3c-4711-b0a3-15cfad0a7521", Application = "system", Code = "sys_file_mgr_sys_file_download", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件下载", OpenType = 0, Permission = "sysFileInfo:download", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918764L, + Id = "1975891b-7940-44a8-a513-9f2e8b05dda1", Application = "system", Code = "sys_file_mgr_sys_file_preview", - IsDeleted = false, + IsDeleted = 0ul, Name = "图片预览", OpenType = 0, Permission = "sysFileInfo:preview", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918765L, + Id = "ba03cfd5-5d72-465f-87b6-71134da68fab", Application = "system", Code = "sys_timers", Component = "PageView", Icon = "dashboard", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/timers", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918766L, + Id = "8d4643d7-ec15-48ba-b896-816f8dab1b31", Application = "system", Code = "sys_timers_mgr", Component = "system/timers/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "任务管理", OpenType = 1, - Pid = 142307070918765L, - Pids = "[0],[142307070918765],", + Pid = "ba03cfd5-5d72-465f-87b6-71134da68fab", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],", Router = "/timers", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918767L, + Id = "db62154a-470e-43c8-8959-a686b954fe7d", Application = "system", Code = "sys_timers_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务查询", OpenType = 0, Permission = "sysTimers:page", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918768L, + Id = "dc07cd9f-4a53-40d9-988e-70290a146eff", Application = "system", Code = "sys_timers_mgr_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务列表", OpenType = 0, Permission = "sysTimers:list", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918769L, + Id = "1e562d31-c2f8-4af8-be4b-47e3b251d9a3", Application = "system", Code = "sys_timers_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务详情", OpenType = 0, Permission = "sysTimers:detail", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918770L, + Id = "f27ba442-7d6f-499f-8053-a737adc3492a", Application = "system", Code = "sys_timers_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务增加", OpenType = 0, Permission = "sysTimers:add", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918771L, + Id = "99129601-0be5-43ee-842b-a428603f013b", Application = "system", Code = "sys_timers_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务删除", OpenType = 0, Permission = "sysTimers:delete", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918772L, + Id = "5e118fc0-f580-4d06-a89d-f321a84e5654", Application = "system", Code = "sys_timers_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务编辑", OpenType = 0, Permission = "sysTimers:edit", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918773L, + Id = "4272f2e4-4a8b-45bb-b688-2b9471c35e83", Application = "system", Code = "sys_timers_mgr_get_action_classes", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务可执行列表", OpenType = 0, Permission = "sysTimers:getActionClasses", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918774L, + Id = "54094687-f661-4cba-bdfc-e76f22db8d76", Application = "system", Code = "sys_timers_mgr_start", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务启动", OpenType = 0, Permission = "sysTimers:start", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918775L, + Id = "6b82d407-d1ea-440e-9245-128ad03dffc0", Application = "system", Code = "sys_timers_mgr_stop", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务关闭", OpenType = 0, Permission = "sysTimers:stop", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918776L, + Id = "5172265d-eda3-4b8a-a542-d582467a51a1", Application = "system_tool", Code = "code_gen", Component = "gen/codeGenerate/index", Icon = "thunderbolt", - IsDeleted = false, + IsDeleted = 0ul, Name = "代码生成", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/codeGenerate/index", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070922870L, + Id = "cf51df0a-8e0b-4252-ba06-9646cad648d1", Application = "system_tool", Code = "form_design", Component = "system/formDesign/index", Icon = "robot", - IsDeleted = false, + IsDeleted = 0ul, Name = "表单设计", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/formDesign/index", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918782L, + Id = "f4cf2a3d-0714-4ca4-a691-0b363c172f82", Application = "advanced", Code = "sys_tenant", Component = "PageView", Icon = "switcher", - IsDeleted = false, + IsDeleted = 0ul, Name = "SaaS租户", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/tenant", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918783L, + Id = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", Application = "advanced", Code = "sys_tenant_mgr", Component = "system/tenant/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "租户管理", OpenType = 1, - Pid = 142307070918782L, - Pids = "[0],[142307070918782],", + Pid = "f4cf2a3d-0714-4ca4-a691-0b363c172f82", + Pids = "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],", Router = "/tenant", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070922821L, + Id = "8985ec0a-5060-4812-bf47-4f3102948066", Application = "advanced", Code = "sys_tenant_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "租户查询", OpenType = 0, Permission = "sysTenant:page", - Pid = 142307070918783L, - Pids = "[0],[142307070918782],[142307070918783],", + Pid = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Pids = "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070922822L, + Id = "d9584afb-18de-4f7e-b992-c21ad77b1aae", Application = "advanced", Code = "sys_tenant_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "租户详情", OpenType = 0, Permission = "sysTenant:detail", - Pid = 142307070918783L, - Pids = "[0],[142307070918782],[142307070918783],", + Pid = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Pids = "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070922823L, + Id = "01ae6b95-9c1e-4882-a9ac-ebb9f1868c54", Application = "advanced", Code = "sys_tenant_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "租户增加", OpenType = 0, Permission = "sysTenant:add", - Pid = 142307070918783L, - Pids = "[0],[142307070918782],[142307070918783],", + Pid = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Pids = "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070922824L, + Id = "59e9f6da-151a-4201-bea1-00ef06fe5842", Application = "advanced", Code = "sys_tenant_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "租户删除", OpenType = 0, Permission = "sysTenant:delete", - Pid = 142307070918783L, - Pids = "[0],[142307070918782],[142307070918783],", + Pid = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Pids = "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070922825L, + Id = "220b6a86-e65d-469b-8aa0-46c4f5e77ab8", Application = "advanced", Code = "sys_tenant_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "租户编辑", OpenType = 0, Permission = "sysTenant:edit", - Pid = 142307070918783L, - Pids = "[0],[142307070918782],[142307070918783],", + Pid = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Pids = "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }); }); modelBuilder.Entity("Ewide.Core.SysNotice", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("CancelTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("撤回时间"); b.Property("Content") @@ -5433,11 +5483,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("内容"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -5445,12 +5496,14 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("创建者名称"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); - b.Property("PublicOrgId") - .HasColumnType("bigint") + b.Property("PublicOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicOrgId") .HasComment("发布机构Id"); b.Property("PublicOrgName") @@ -5458,11 +5511,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("发布机构名称"); b.Property("PublicTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("发布时间"); - b.Property("PublicUserId") - .HasColumnType("bigint") + b.Property("PublicUserId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicUserId") .HasComment("发布人Id"); b.Property("PublicUserName") @@ -5482,11 +5536,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("类型"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -5504,8 +5559,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysNoticeUser", b => { - b.Property("NoticeId") - .HasColumnType("bigint") + b.Property("NoticeId") + .HasColumnType("varchar(36)") + .HasColumnName("NoticeId") .HasComment("通知公告Id"); b.Property("ReadStatus") @@ -5513,11 +5569,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("状态"); b.Property("ReadTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("阅读时间"); - b.Property("UserId") - .HasColumnType("bigint") + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") .HasComment("用户Id"); b.ToTable("sys_notice_user"); @@ -5528,8 +5585,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysOauthUser", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("AccessToken") @@ -5549,11 +5607,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("所在公司"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -5569,8 +5628,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("性别"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Location") @@ -5594,11 +5654,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("用户来源"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -5620,8 +5681,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysOrg", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Code") @@ -5633,11 +5695,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("联系人"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -5645,21 +5708,23 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("创建者名称"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("名称"); - b.Property("Pid") - .HasColumnType("bigint") + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") .HasComment("父Id"); b.Property("Pids") .HasColumnType("longtext CHARACTER SET utf8mb4") - .HasComment("父Ids"); + .HasComment("Pids"); b.Property("Remark") .HasColumnType("longtext CHARACTER SET utf8mb4") @@ -5678,11 +5743,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("电话"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -5700,96 +5766,96 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910539L, + Id = "12d888de-f55d-4c88-b0a0-7c3510664d97", Code = "hxjt", - IsDeleted = false, + IsDeleted = 0ul, Name = "华夏集团", - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Remark = "华夏集团", Sort = 100, Status = 0 }, new { - Id = 142307070910540L, + Id = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", Code = "hxjt_bj", - IsDeleted = false, + IsDeleted = 0ul, Name = "华夏集团北京分公司", - Pid = 142307070910539L, - Pids = "[0],[142307070910539],", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", Remark = "华夏集团北京分公司", Sort = 100, Status = 0 }, new { - Id = 142307070910541L, + Id = "127c0a5d-43ac-4370-b313-082361885aca", Code = "hxjt_cd", - IsDeleted = false, + IsDeleted = 0ul, Name = "华夏集团成都分公司", - Pid = 142307070910539L, - Pids = "[0],[142307070910539],", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", Remark = "华夏集团成都分公司", Sort = 100, Status = 0 }, new { - Id = 142307070910542L, + Id = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", Code = "hxjt_bj_yfb", - IsDeleted = false, + IsDeleted = 0ul, Name = "研发部", - Pid = 142307070910540L, - Pids = "[0],[142307070910539],[142307070910540],", + Pid = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[8a2271d6-5bda-4544-bdd3-27e53a8b418e],", Remark = "华夏集团北京分公司研发部", Sort = 100, Status = 0 }, new { - Id = 142307070910543L, + Id = "07322be0-2015-41f2-859e-132b5e142fca", Code = "hxjt_bj_qhb", - IsDeleted = false, + IsDeleted = 0ul, Name = "企划部", - Pid = 142307070910540L, - Pids = "[0],[142307070910539],[142307070910540],", + Pid = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[8a2271d6-5bda-4544-bdd3-27e53a8b418e],", Remark = "华夏集团北京分公司企划部", Sort = 100, Status = 0 }, new { - Id = 142307070910544L, + Id = "49dc3f25-873d-4998-9767-46978d79d8e6", Code = "hxjt_cd_scb", - IsDeleted = false, + IsDeleted = 0ul, Name = "市场部", - Pid = 142307070910541L, - Pids = "[0],[142307070910539],[142307070910541],", + Pid = "127c0a5d-43ac-4370-b313-082361885aca", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[127c0a5d-43ac-4370-b313-082361885aca],", Remark = "华夏集团成都分公司市场部", Sort = 100, Status = 0 }, new { - Id = 142307070910545L, + Id = "56b7a823-cc62-492b-a91b-0b053ef2683b", Code = "hxjt_cd_cwb", - IsDeleted = false, + IsDeleted = 0ul, Name = "财务部", - Pid = 142307070910541L, - Pids = "[0],[142307070910539],[142307070910541],", + Pid = "127c0a5d-43ac-4370-b313-082361885aca", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[127c0a5d-43ac-4370-b313-082361885aca],", Remark = "华夏集团成都分公司财务部", Sort = 100, Status = 0 }, new { - Id = 142307070910546L, + Id = "e9f97d63-a585-40ff-bf0c-7406e785f660", Code = "hxjt_cd_scb_2b", - IsDeleted = false, + IsDeleted = 0ul, Name = "市场部二部", - Pid = 142307070910544L, - Pids = "[0],[142307070910539],[142307070910541],[142307070910544],", + Pid = "49dc3f25-873d-4998-9767-46978d79d8e6", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[127c0a5d-43ac-4370-b313-082361885aca],[49dc3f25-873d-4998-9767-46978d79d8e6],", Remark = "华夏集团成都分公司市场部二部", Sort = 100, Status = 0 @@ -5798,8 +5864,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysPos", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Code") @@ -5807,11 +5874,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("编码"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -5819,8 +5887,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("创建者名称"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -5840,11 +5909,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("状态"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -5862,9 +5932,9 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910547L, + Id = "269236c4-d74e-4e54-9d50-f6f61580a197", Code = "zjl", - IsDeleted = false, + IsDeleted = 0ul, Name = "总经理", Remark = "总经理", Sort = 100, @@ -5872,9 +5942,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910548L, + Id = "46c68a62-f119-4ff7-b621-0bbd77504538", Code = "fzjl", - IsDeleted = false, + IsDeleted = 0ul, Name = "副总经理", Remark = "副总经理", Sort = 101, @@ -5882,9 +5952,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910549L, + Id = "5bd8c466-2bca-4386-a551-daac78e3cee8", Code = "bmjl", - IsDeleted = false, + IsDeleted = 0ul, Name = "部门经理", Remark = "部门经理", Sort = 102, @@ -5892,9 +5962,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910550L, + Id = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66", Code = "gzry", - IsDeleted = false, + IsDeleted = 0ul, Name = "工作人员", Remark = "工作人员", Sort = 103, @@ -5904,8 +5974,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysRole", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Code") @@ -5913,11 +5984,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("编码"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -5929,8 +6001,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("int") .HasComment("数据范围类型"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -5950,11 +6023,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("状态"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -5972,10 +6046,10 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910554L, + Id = "6dfe9189-ce10-434e-a7a7-5cdc46e85047", Code = "sys_manager_role", DataScopeType = 1, - IsDeleted = false, + IsDeleted = 0ul, Name = "系统管理员", Remark = "系统管理员", Sort = 100, @@ -5983,10 +6057,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910555L, + Id = "cd187ebd-ab3d-4768-9669-85e2219c2910", Code = "common_role", DataScopeType = 5, - IsDeleted = false, + IsDeleted = 0ul, Name = "普通用户", Remark = "普通用户", Sort = 101, @@ -5996,12 +6070,14 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => { - b.Property("SysRoleId") - .HasColumnType("bigint") + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") .HasComment("角色Id"); - b.Property("SysOrgId") - .HasColumnType("bigint") + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") .HasComment("机构Id"); b.HasKey("SysRoleId", "SysOrgId"); @@ -6016,12 +6092,14 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => { - b.Property("SysRoleId") - .HasColumnType("bigint") + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") .HasComment("角色Id"); - b.Property("SysMenuId") - .HasColumnType("bigint") + b.Property("SysMenuId") + .HasColumnType("varchar(36)") + .HasColumnName("SysMenuId") .HasComment("菜单Id"); b.HasKey("SysRoleId", "SysMenuId"); @@ -6036,8 +6114,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysTenant", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Connection") @@ -6045,11 +6124,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("数据库连接"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -6065,8 +6145,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("主机"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -6086,11 +6167,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("架构"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -6108,20 +6190,22 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysTimer", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("BeginTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("开始时间"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -6134,7 +6218,7 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("Cron表达式"); b.Property("EndTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("结束时间"); b.Property("Headers") @@ -6145,8 +6229,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("int") .HasComment("执行间隔时间"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("JobGroup") @@ -6182,11 +6267,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("触发器类型"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -6204,10 +6290,10 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910556L, + Id = "971bc338-0c03-46d4-8113-c7738d54ea18", BeginTime = new DateTimeOffset(new DateTime(2021, 3, 21, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), Interval = 30, - IsDeleted = false, + IsDeleted = 0ul, JobGroup = "默认分组", JobName = "百度api", RequestType = 2, @@ -6218,8 +6304,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysUser", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Account") @@ -6237,15 +6324,16 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("头像"); b.Property("Birthday") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("生日"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -6258,8 +6346,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(30) CHARACTER SET utf8mb4") .HasComment("邮箱"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("LastLoginIp") @@ -6268,7 +6357,7 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("最后登录IP"); b.Property("LastLoginTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("最后登录时间"); b.Property("Name") @@ -6305,11 +6394,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("电话"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -6327,11 +6417,11 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910551L, + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", Account = "superAdmin", AdminType = 1, Birthday = new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), - IsDeleted = false, + IsDeleted = 0ul, LastLoginTime = new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0)), Name = "superAdmin", Password = "e10adc3949ba59abbe56e057f20f883e", @@ -6341,11 +6431,11 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910552L, + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", Account = "admin", AdminType = 1, Birthday = new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), - IsDeleted = false, + IsDeleted = 0ul, LastLoginTime = new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0)), Name = "admin", Password = "e10adc3949ba59abbe56e057f20f883e", @@ -6355,11 +6445,11 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910553L, + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", Account = "zuohuaijun", AdminType = 2, Birthday = new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), - IsDeleted = false, + IsDeleted = 0ul, LastLoginTime = new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0)), Name = "zuohuaijun", Password = "e10adc3949ba59abbe56e057f20f883e", @@ -6371,12 +6461,14 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => { - b.Property("SysUserId") - .HasColumnType("bigint") + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") .HasComment("用户Id"); - b.Property("SysOrgId") - .HasColumnType("bigint") + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") .HasComment("机构Id"); b.HasKey("SysUserId", "SysOrgId"); @@ -6391,12 +6483,14 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysUserRole", b => { - b.Property("SysUserId") - .HasColumnType("bigint") + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") .HasComment("用户Id"); - b.Property("SysRoleId") - .HasColumnType("bigint") + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") .HasComment("角色Id"); b.HasKey("SysUserId", "SysRoleId"); @@ -6413,9 +6507,7 @@ namespace Ewide.Database.Migrations.Migrations { b.HasOne("Ewide.Core.SysDictType", "SysDictType") .WithMany("SysDictDatas") - .HasForeignKey("TypeId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); + .HasForeignKey("TypeId"); b.Navigation("SysDictType"); }); diff --git a/Api/Ewide.Database.Migrations/Migrations/20210425072018_Init.cs b/Api/Ewide.Database.Migrations/Migrations/20210425072018_Init.cs new file mode 100644 index 0000000..f97e846 --- /dev/null +++ b/Api/Ewide.Database.Migrations/Migrations/20210425072018_Init.cs @@ -0,0 +1,1320 @@ +using System; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Ewide.Database.Migrations.Migrations +{ + public partial class Init : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "code_gen_test", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), + NickName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "昵称"), + Birthday = table.Column(type: "datetime(6)", nullable: false, comment: "生日"), + Age = table.Column(type: "int", nullable: false, comment: "年龄"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_code_gen_test", x => x.Id); + }, + comment: "代码生成业务"); + + migrationBuilder.CreateTable( + name: "sys_app", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), + Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), + Icon = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "图标"), + Color = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "图标颜色"), + Active = table.Column(type: "bit", nullable: false, comment: "是否默认激活"), + Status = table.Column(type: "int", nullable: false, comment: "状态"), + Sort = table.Column(type: "int", nullable: false, comment: "排序"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_app", x => x.Id); + }, + comment: "系统应用表"); + + migrationBuilder.CreateTable( + name: "sys_code_gen", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + AuthorName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "作者姓名"), + TablePrefix = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否移除表前缀"), + GenerateType = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "生成方式"), + TableName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "数据库表名"), + NameSpace = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "命名空间"), + BusName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "业务名"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_code_gen", x => x.Id); + }, + comment: "代码生成表"); + + migrationBuilder.CreateTable( + name: "sys_code_gen_config", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + CodeGenId = table.Column(type: "varchar(36)", nullable: true, comment: "代码生成主表ID"), + ColumnName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "数据库字段名"), + ColumnComment = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "字段描述"), + NetType = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: ".NET数据类型"), + EffectType = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "作用类型"), + DictTypeCode = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "字典Code"), + WhetherRetract = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "列表是否缩进"), + WhetherRequired = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否必填"), + QueryWhether = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否是查询条件"), + QueryType = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "查询方式"), + WhetherTable = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "列表显示"), + WhetherAddUpdate = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "增改"), + ColumnKey = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "主外键"), + DataType = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "数据库中类型"), + WhetherCommon = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否通用字段"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_code_gen_config", x => x.Id); + }, + comment: "代码生成字段配置表"); + + migrationBuilder.CreateTable( + name: "sys_config", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), + Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), + Value = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "属性值"), + SysFlag = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否是系统参数"), + Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), + Status = table.Column(type: "int", nullable: false, comment: "状态"), + GroupCode = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "常量所属分类的编码"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_config", x => x.Id); + }, + comment: "参数配置表"); + + migrationBuilder.CreateTable( + name: "sys_dict_type", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), + Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), + Sort = table.Column(type: "int", nullable: false, comment: "排序"), + Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), + Status = table.Column(type: "int", nullable: false, comment: "状态"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_dict_type", x => x.Id); + }, + comment: "字典类型表"); + + migrationBuilder.CreateTable( + name: "sys_emp", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "用户Id"), + JobNum = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "工号"), + OrgId = table.Column(type: "varchar(36)", nullable: true, comment: "机构Id"), + OrgName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "机构名称") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_emp", x => x.Id); + }, + comment: "员工表"); + + migrationBuilder.CreateTable( + name: "sys_file", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + FileLocation = table.Column(type: "int", nullable: false, comment: "文件存储位置"), + FileBucket = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "文件仓库"), + FileOriginName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "文件名称"), + FileSuffix = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "文件后缀"), + FileSizeKb = table.Column(type: "bigint", nullable: false, comment: "文件大小kb"), + FileSizeInfo = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "文件大小信息"), + FileObjectName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "存储到bucket的名称"), + FilePath = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "存储路径"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_file", x => x.Id); + }, + comment: "文件信息表"); + + migrationBuilder.CreateTable( + name: "sys_log_audit", + columns: table => new + { + Id = table.Column(type: "int", nullable: false) + .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), + TableName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "表名"), + ColumnName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "列名"), + NewValue = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "新值"), + OldValue = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "旧值"), + CreatedTime = table.Column(type: "datetime(6)", nullable: false, comment: "操作时间"), + UserId = table.Column(type: "varchar(36)", nullable: true, comment: "操作人Id"), + UserName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "操作人名称"), + Operate = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "操作方式") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_log_audit", x => x.Id); + }, + comment: "审计日志表"); + + migrationBuilder.CreateTable( + name: "sys_log_op", + columns: table => new + { + Id = table.Column(type: "int", nullable: false) + .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), + Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), + OpType = table.Column(type: "int", nullable: true, comment: "操作类型"), + Success = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否执行成功"), + Message = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "具体消息"), + Ip = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "IP"), + Location = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "地址"), + Browser = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "浏览器"), + Os = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "操作系统"), + Url = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "请求地址"), + ClassName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "类名称"), + MethodName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "方法名称"), + ReqMethod = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "请求方式"), + Param = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "请求参数"), + Result = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "返回结果"), + ElapsedTime = table.Column(type: "bigint", nullable: false, comment: "耗时"), + OpTime = table.Column(type: "datetime(6)", nullable: false, comment: "操作时间"), + Account = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "操作人") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_log_op", x => x.Id); + }, + comment: "操作日志表"); + + migrationBuilder.CreateTable( + name: "sys_log_vis", + columns: table => new + { + Id = table.Column(type: "int", nullable: false) + .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), + Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), + Success = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "是否执行成功"), + Message = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "具体消息"), + Ip = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "IP"), + Location = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "地址"), + Browser = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "浏览器"), + Os = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "操作系统"), + VisType = table.Column(type: "int", nullable: true, comment: "访问类型"), + VisTime = table.Column(type: "datetime(6)", nullable: false, comment: "访问时间"), + Account = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "访问人") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_log_vis", x => x.Id); + }, + comment: "访问日志表"); + + migrationBuilder.CreateTable( + name: "sys_menu", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + Pid = table.Column(type: "varchar(36)", nullable: true, comment: "父Id"), + Pids = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "父Ids"), + Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), + Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), + Type = table.Column(type: "int", nullable: false, comment: "菜单类型"), + Icon = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "图标"), + Router = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "路由地址"), + Component = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "组件地址"), + Permission = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "权限标识"), + Application = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "应用分类"), + OpenType = table.Column(type: "int", nullable: false, comment: "打开方式"), + Visible = table.Column(type: "bit", nullable: false, comment: "是否可见"), + Link = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "内链地址"), + Redirect = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "重定向地址"), + Weight = table.Column(type: "int", nullable: false, comment: "权重"), + Sort = table.Column(type: "int", nullable: false, comment: "排序"), + Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), + Status = table.Column(type: "int", nullable: false), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_menu", x => x.Id); + }, + comment: "菜单表"); + + migrationBuilder.CreateTable( + name: "sys_notice", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + Title = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "标题"), + Content = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "内容"), + Type = table.Column(type: "int", nullable: false, comment: "类型"), + PublicUserId = table.Column(type: "varchar(36)", nullable: true, comment: "发布人Id"), + PublicUserName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "发布人姓名"), + PublicOrgId = table.Column(type: "varchar(36)", nullable: true, comment: "发布机构Id"), + PublicOrgName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "发布机构名称"), + PublicTime = table.Column(type: "datetime(6)", nullable: false, comment: "发布时间"), + CancelTime = table.Column(type: "datetime(6)", nullable: false, comment: "撤回时间"), + Status = table.Column(type: "int", nullable: false, comment: "状态"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_notice", x => x.Id); + }, + comment: "通知公告表"); + + migrationBuilder.CreateTable( + name: "sys_notice_user", + columns: table => new + { + NoticeId = table.Column(type: "varchar(36)", nullable: true, comment: "通知公告Id"), + UserId = table.Column(type: "varchar(36)", nullable: true, comment: "用户Id"), + ReadTime = table.Column(type: "datetime(6)", nullable: false, comment: "阅读时间"), + ReadStatus = table.Column(type: "int", nullable: false, comment: "状态") + }, + constraints: table => + { + }, + comment: "通知公告用户表"); + + migrationBuilder.CreateTable( + name: "sys_oauth_user", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + Uuid = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "UUID"), + AccessToken = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "Token"), + NickName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "昵称"), + Avatar = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "头像"), + Gender = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "性别"), + Phone = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "电话"), + Email = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "邮箱"), + Location = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "位置"), + Blog = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "用户网址"), + Company = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "所在公司"), + Source = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "用户来源"), + Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_oauth_user", x => x.Id); + }, + comment: "Oauth登录用户表"); + + migrationBuilder.CreateTable( + name: "sys_org", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + Pid = table.Column(type: "varchar(36)", nullable: true, comment: "父Id"), + Pids = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "Pids"), + Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), + Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), + Contacts = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "联系人"), + Tel = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "电话"), + Sort = table.Column(type: "int", nullable: false, comment: "排序"), + Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), + Status = table.Column(type: "int", nullable: false, comment: "状态"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_org", x => x.Id); + }, + comment: "组织机构表"); + + migrationBuilder.CreateTable( + name: "sys_pos", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), + Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), + Sort = table.Column(type: "int", nullable: false, comment: "排序"), + Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), + Status = table.Column(type: "int", nullable: false, comment: "状态"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_pos", x => x.Id); + }, + comment: "职位表"); + + migrationBuilder.CreateTable( + name: "sys_role", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), + Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), + Sort = table.Column(type: "int", nullable: false, comment: "排序"), + DataScopeType = table.Column(type: "int", nullable: false, comment: "数据范围类型"), + Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), + Status = table.Column(type: "int", nullable: false, comment: "状态"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_role", x => x.Id); + }, + comment: "角色表"); + + migrationBuilder.CreateTable( + name: "sys_tenant", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + Name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "名称"), + Host = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "主机"), + Email = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "电子邮箱"), + Phone = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "电话"), + Connection = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "数据库连接"), + Schema = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "架构"), + Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_tenant", x => x.Id); + }, + comment: "租户表"); + + migrationBuilder.CreateTable( + name: "sys_timer", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + JobName = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "任务名称"), + JobGroup = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "任务分组"), + BeginTime = table.Column(type: "datetime(6)", nullable: false, comment: "开始时间"), + EndTime = table.Column(type: "datetime(6)", nullable: true, comment: "结束时间"), + Cron = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "Cron表达式"), + RunNumber = table.Column(type: "int", nullable: true, comment: "执行次数"), + Interval = table.Column(type: "int", nullable: true, comment: "执行间隔时间"), + TriggerType = table.Column(type: "int", nullable: false, comment: "触发器类型"), + RequestUrl = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "请求url"), + RequestParameters = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "请求参数"), + Headers = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "Headers"), + RequestType = table.Column(type: "int", nullable: false, comment: "请求类型"), + Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_timer", x => x.Id); + }, + comment: "定时任务表"); + + migrationBuilder.CreateTable( + name: "sys_user", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + Account = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: false, comment: "账号"), + Password = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: false, comment: "密码"), + NickName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "昵称"), + Name = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "姓名"), + Avatar = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "头像"), + Birthday = table.Column(type: "datetime(6)", nullable: false, comment: "生日"), + Sex = table.Column(type: "int", nullable: false, comment: "性别-男_1、女_2"), + Email = table.Column(type: "varchar(30) CHARACTER SET utf8mb4", maxLength: 30, nullable: true, comment: "邮箱"), + Phone = table.Column(type: "varchar(30) CHARACTER SET utf8mb4", maxLength: 30, nullable: true, comment: "手机"), + Tel = table.Column(type: "varchar(30) CHARACTER SET utf8mb4", maxLength: 30, nullable: true, comment: "电话"), + LastLoginIp = table.Column(type: "varchar(30) CHARACTER SET utf8mb4", maxLength: 30, nullable: true, comment: "最后登录IP"), + LastLoginTime = table.Column(type: "datetime(6)", nullable: false, comment: "最后登录时间"), + AdminType = table.Column(type: "int", nullable: false, comment: "管理员类型-超级管理员_1、非管理员_2"), + Status = table.Column(type: "int", nullable: false, comment: "状态-正常_0、停用_1、删除_2"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_user", x => x.Id); + }, + comment: "用户表"); + + migrationBuilder.CreateTable( + name: "sys_dict_data", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + TypeId = table.Column(type: "varchar(36)", nullable: true, comment: "字典类型Id"), + Value = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "值"), + Code = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "编码"), + Sort = table.Column(type: "int", nullable: false, comment: "排序"), + Remark = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "备注"), + Status = table.Column(type: "int", nullable: false, comment: "状态"), + CreatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime(6)", nullable: true, comment: "更新时间"), + CreatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "创建者Id"), + CreatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "创建者名称"), + UpdatedUserId = table.Column(type: "varchar(36)", nullable: true, comment: "修改者Id"), + UpdatedUserName = table.Column(type: "varchar(20) CHARACTER SET utf8mb4", maxLength: 20, nullable: true, comment: "修改者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_dict_data", x => x.Id); + table.ForeignKey( + name: "FK_sys_dict_data_sys_dict_type_TypeId", + column: x => x.TypeId, + principalTable: "sys_dict_type", + principalColumn: "Id", + onDelete: ReferentialAction.Restrict); + }, + comment: "字典值表"); + + migrationBuilder.CreateTable( + name: "sys_emp_ext_org_pos", + columns: table => new + { + SysEmpId = table.Column(type: "varchar(36)", nullable: false, comment: "员工Id"), + SysOrgId = table.Column(type: "varchar(36)", nullable: false, comment: "机构Id"), + SysPosId = table.Column(type: "varchar(36)", nullable: false, comment: "职位Id") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_emp_ext_org_pos", x => new { x.SysEmpId, x.SysOrgId, x.SysPosId }); + table.ForeignKey( + name: "FK_sys_emp_ext_org_pos_sys_emp_SysEmpId", + column: x => x.SysEmpId, + principalTable: "sys_emp", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_sys_emp_ext_org_pos_sys_org_SysOrgId", + column: x => x.SysOrgId, + principalTable: "sys_org", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_sys_emp_ext_org_pos_sys_pos_SysPosId", + column: x => x.SysPosId, + principalTable: "sys_pos", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }, + comment: "员工附属机构职位表"); + + migrationBuilder.CreateTable( + name: "sys_emp_pos", + columns: table => new + { + SysEmpId = table.Column(type: "varchar(36)", nullable: false, comment: "员工Id"), + SysPosId = table.Column(type: "varchar(36)", nullable: false, comment: "职位Id") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_emp_pos", x => new { x.SysEmpId, x.SysPosId }); + table.ForeignKey( + name: "FK_sys_emp_pos_sys_emp_SysEmpId", + column: x => x.SysEmpId, + principalTable: "sys_emp", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_sys_emp_pos_sys_pos_SysPosId", + column: x => x.SysPosId, + principalTable: "sys_pos", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }, + comment: "员工职位表"); + + migrationBuilder.CreateTable( + name: "sys_role_data_scope", + columns: table => new + { + SysRoleId = table.Column(type: "varchar(36)", nullable: false, comment: "角色Id"), + SysOrgId = table.Column(type: "varchar(36)", nullable: false, comment: "机构Id") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_role_data_scope", x => new { x.SysRoleId, x.SysOrgId }); + table.ForeignKey( + name: "FK_sys_role_data_scope_sys_org_SysOrgId", + column: x => x.SysOrgId, + principalTable: "sys_org", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_sys_role_data_scope_sys_role_SysRoleId", + column: x => x.SysRoleId, + principalTable: "sys_role", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }, + comment: "角色数据范围表"); + + migrationBuilder.CreateTable( + name: "sys_role_menu", + columns: table => new + { + SysRoleId = table.Column(type: "varchar(36)", nullable: false, comment: "角色Id"), + SysMenuId = table.Column(type: "varchar(36)", nullable: false, comment: "菜单Id") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_role_menu", x => new { x.SysRoleId, x.SysMenuId }); + table.ForeignKey( + name: "FK_sys_role_menu_sys_menu_SysMenuId", + column: x => x.SysMenuId, + principalTable: "sys_menu", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_sys_role_menu_sys_role_SysRoleId", + column: x => x.SysRoleId, + principalTable: "sys_role", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }, + comment: "角色菜单表"); + + migrationBuilder.CreateTable( + name: "sys_user_data_scope", + columns: table => new + { + SysUserId = table.Column(type: "varchar(36)", nullable: false, comment: "用户Id"), + SysOrgId = table.Column(type: "varchar(36)", nullable: false, comment: "机构Id") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_user_data_scope", x => new { x.SysUserId, x.SysOrgId }); + table.ForeignKey( + name: "FK_sys_user_data_scope_sys_org_SysOrgId", + column: x => x.SysOrgId, + principalTable: "sys_org", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_sys_user_data_scope_sys_user_SysUserId", + column: x => x.SysUserId, + principalTable: "sys_user", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }, + comment: "用户数据范围表"); + + migrationBuilder.CreateTable( + name: "sys_user_role", + columns: table => new + { + SysUserId = table.Column(type: "varchar(36)", nullable: false, comment: "用户Id"), + SysRoleId = table.Column(type: "varchar(36)", nullable: false, comment: "角色Id") + }, + constraints: table => + { + table.PrimaryKey("PK_sys_user_role", x => new { x.SysUserId, x.SysRoleId }); + table.ForeignKey( + name: "FK_sys_user_role_sys_role_SysRoleId", + column: x => x.SysRoleId, + principalTable: "sys_role", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_sys_user_role_sys_user_SysUserId", + column: x => x.SysUserId, + principalTable: "sys_user", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }, + comment: "用户角色表"); + + migrationBuilder.InsertData( + table: "sys_app", + columns: new[] { "Id", "Active", "Code", "Color", "CreatedTime", "CreatedUserId", "CreatedUserName", "Icon", "IsDeleted", "Name", "Sort", "Status", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, + values: new object[,] + { + { "8b2aeb5e-09a6-4afd-bcae-8ee8e5a1e6ec", 0ul, "busapp", null, null, null, null, null, 0ul, "业务应用", 100, 0, null, null, null }, + { "d781b8f1-0d08-48c8-b7a5-ed75ddfa676c", 1ul, "system", null, null, null, null, null, 0ul, "系统管理", 100, 0, null, null, null }, + { "850ab86f-cd6a-4d49-b920-77dfa5d78813", 0ul, "system_tool", null, null, null, null, null, 0ul, "系统工具", 100, 0, null, null, null }, + { "05a32be5-82e8-423f-affa-e17232a63ee1", 0ul, "advanced", null, null, null, null, null, 0ul, "高级功能", 100, 0, null, null, null } + }); + + migrationBuilder.InsertData( + table: "sys_config", + columns: new[] { "Id", "Code", "CreatedTime", "CreatedUserId", "CreatedUserName", "GroupCode", "IsDeleted", "Name", "Remark", "Status", "SysFlag", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "Value" }, + values: new object[,] + { + { "8beac2a0-4c67-4499-a7ce-27e989546ce9", "DILON_EMAIL_FROM", null, null, null, "EMAIL", 0ul, "邮箱发件人", "邮箱发件人", 0, "Y", null, null, null, "test@126.com" }, + { "d2db41ee-ce1f-46de-ac00-5860634afed9", "DILON_FILE_UPLOAD_PATH_FOR_LINUX", null, null, null, "FILE_PATH", 0ul, "Linux/Mac本地上传文件路径", "Linux/Mac本地上传文件路径", 0, "Y", null, null, null, "/tmp" }, + { "ff8debdd-eca0-4f91-8213-e2080f76b35d", "DILON_UN_XSS_FILTER_URL", null, null, null, "DEFAULT", 0ul, "放开XSS过滤的接口", "多个url可以用英文逗号隔开", 0, "Y", null, null, null, "/demo/xssfilter,/demo/unxss" }, + { "5584fb84-f580-463f-b06d-bbb80a4dfb72", "DILON_ENABLE_SINGLE_LOGIN", null, null, null, "DEFAULT", 0ul, "单用户登陆的开关", "true-打开,false-关闭,如果一个人登录两次,就会将上一次登陆挤下去", 0, "Y", null, null, null, "false" }, + { "53b0afb2-4917-4b85-bcca-fe7c7723ae22", "DILON_CAPTCHA_OPEN", null, null, null, "DEFAULT", 0ul, "登录验证码的开关", "true-打开,false-关闭", 0, "Y", null, null, null, "true" }, + { "974740d8-8647-4cf8-8102-542eea53e97f", "DILON_DRUID_USERNAME", null, null, null, "DEFAULT", 0ul, "Druid监控登录账号", "Druid监控登录账号", 0, "Y", null, null, null, "superAdmin" }, + { "8cee44ea-ba4c-42db-a57d-69b8b5316ca5", "DILON_DRUID_PASSWORD", null, null, null, "DEFAULT", 0ul, "Druid监控界面登录密码", "Druid监控界面登录密码", 0, "Y", null, null, null, "123456" }, + { "d3597d8a-562a-4b24-93c7-8655c5445d74", "DILON_IP_GEO_APP_CODE", null, null, null, "DEFAULT", 0ul, "阿里云定位appCode", "阿里云定位appCode", 0, "Y", null, null, null, "461535aabeae4f34861884d392f5d452" }, + { "dc462c05-de23-4f90-bcdc-88de4abcdf22", "DILON_EMAIL_SSL", null, null, null, "EMAIL", 0ul, "邮箱是否开启ssl", "邮箱是否开启ssl", 0, "Y", null, null, null, "true" }, + { "59c8a6f2-9e3c-4e9e-b9cf-8ecad5f0cb45", "DILON_ENABLE_OAUTH_LOGIN", null, null, null, "OAUTH", 0ul, "Oauth用户登录的开关", "Oauth用户登录的开关", 0, "Y", null, null, null, "true" }, + { "ff502ee7-8129-4828-8d16-fb04562ef52c", "DILON_OAUTH_GITEE_CLIENT_ID", null, null, null, "OAUTH", 0ul, "Oauth码云登录ClientId", "Oauth码云登录ClientId", 0, "Y", null, null, null, "你的clientId" }, + { "a1d957ef-2b70-456f-8eda-b70a4cf01535", "DILON_OAUTH_GITEE_CLIENT_SECRET", null, null, null, "OAUTH", 0ul, "Oauth码云登录ClientSecret", "Oauth码云登录ClientSecret", 0, "Y", null, null, null, "你的clientSecret" }, + { "b32ee22b-671d-40bf-8070-32e1054fef96", "DILON_OAUTH_GITEE_REDIRECT_URI", null, null, null, "OAUTH", 0ul, "Oauth码云登录回调地址", "Oauth码云登录回调地址", 0, "Y", null, null, null, "http://127.0.0.1:5566/oauth/callback/gitee" }, + { "38dda85c-2a98-4768-aebd-a60ab286052c", "DILON_DEMO_ENV_FLAG", null, null, null, "DEFAULT", 0ul, "演示环境", "演示环境的开关,true-打开,false-关闭,如果演示环境开启,则只能读数据不能写数据", 0, "Y", null, null, null, "false" }, + { "efc235ab-9b05-4820-afe4-32a1eb59e4de", "DILON_IP_GEO_API", null, null, null, "DEFAULT", 0ul, "阿里云定位api接口地址", "阿里云定位api接口地址", 0, "Y", null, null, null, "http://api01.aliyun.venuscn.com/ip?ip=%s" }, + { "67e468f7-e791-4e91-a896-62e9f7411635", "DILON_EMAIL_PORT", null, null, null, "EMAIL", 0ul, "邮箱端口", "邮箱端口", 0, "Y", null, null, null, "465" }, + { "55756524-ecb8-444e-9cdd-a0fc767c4b96", "DILON_FILE_UPLOAD_PATH_FOR_WINDOWS", null, null, null, "FILE_PATH", 0ul, "Win本地上传文件路径", "Win本地上传文件路径", 0, "Y", null, null, null, "D:/tmp" }, + { "997a9bc6-22ed-4fe6-a20c-c3c2a0b682a0", "DILON_EMAIL_USERNAME", null, null, null, "EMAIL", 0ul, "邮箱用户名", "邮箱用户名", 0, "Y", null, null, null, "test@126.com" }, + { "7c2765cd-d39b-4772-8d6c-0dbcdcfa1ff8", "DILON_JWT_SECRET", null, null, null, "DEFAULT", 0ul, "jwt密钥", "(重要)jwt密钥,默认为空,自行设置", 0, "Y", null, null, null, "xiaonuo" }, + { "e3553657-14cf-4c26-ba7b-dbb4bfd4bc55", "DILON_DEFAULT_PASSWORD", null, null, null, "DEFAULT", 0ul, "默认密码", "默认密码", 0, "Y", null, null, null, "123456" }, + { "2c677cd2-2a54-46c6-971d-f9fe20f101f3", "DILON_TOKEN_EXPIRE", null, null, null, "DEFAULT", 0ul, "token过期时间", "token过期时间(单位:秒)", 0, "Y", null, null, null, "86400" }, + { "633d1851-41d9-4ebd-b83b-3aa4501cd1a7", "DILON_EMAIL_PASSWORD", null, null, null, "EMAIL", 0ul, "邮箱密码", "邮箱密码", 0, "Y", null, null, null, "你的邮箱密码" }, + { "beb2e9e7-f4d9-43b1-bfab-3557ea232f8d", "DILON_ALIYUN_SMS_ACCESSKEY_ID", null, null, null, "ALIYUN_SMS", 0ul, "阿里云短信keyId", "阿里云短信keyId", 0, "Y", null, null, null, "你的keyId" }, + { "ead14cd0-9fd4-4fd6-b75c-239d8b2ebed8", "DILON_ALIYUN_SMS_ACCESSKEY_SECRET", null, null, null, "ALIYUN_SMS", 0ul, "阿里云短信secret", "阿里云短信secret", 0, "Y", null, null, null, "你的secret" }, + { "beaaafc2-3fdf-42af-9b06-ead3a6dd6306", "DILON_ALIYUN_SMS_SIGN_NAME", null, null, null, "ALIYUN_SMS", 0ul, "阿里云短信签名", "阿里云短信签名", 0, "Y", null, null, null, "你的签名" }, + { "8938506d-2e00-44e0-8592-48453d43f9f5", "DILON_SESSION_EXPIRE", null, null, null, "DEFAULT", 0ul, "session会话过期时间", "session会话过期时间(单位:秒)", 0, "Y", null, null, null, "7200" }, + { "24d3f286-efca-49af-91b4-e3ce42cce36e", "DILON_ALIYUN_SMS_INVALIDATE_MINUTES", null, null, null, "ALIYUN_SMS", 0ul, "阿里云短信默认失效时间", "阿里云短信默认失效时间(单位:分钟)", 0, "Y", null, null, null, "5" }, + { "c6540a07-ce32-47b4-ab83-b647bdb14491", "DILON_TENCENT_SMS_SECRET_ID", null, null, null, "TENCENT_SMS", 0ul, "腾讯云短信secretId", "腾讯云短信secretId", 0, "Y", null, null, null, "你的secretId" }, + { "a0412212-d50b-42aa-9484-3cef8fe3cc59", "DILON_TENCENT_SMS_SECRET_KEY", null, null, null, "TENCENT_SMS", 0ul, "腾讯云短信secretKey", "腾讯云短信secretKey", 0, "Y", null, null, null, "你的secretkey" }, + { "c928ca11-5137-4b71-bf1c-f3bc95bcd34d", "DILON_TENCENT_SMS_SDK_APP_ID", null, null, null, "TENCENT_SMS", 0ul, "腾讯云短信sdkAppId", "腾讯云短信sdkAppId", 0, "Y", null, null, null, "1400375123" }, + { "16ce1b6e-c8ad-4299-9293-6caff0e5cb49", "DILON_TENCENT_SMS_SIGN", null, null, null, "TENCENT_SMS", 0ul, "腾讯云短信签名", "腾讯云短信签名", 0, "Y", null, null, null, "你的签名" }, + { "66e63d64-b7eb-4e6a-b5b6-c87811c2e700", "DILON_EMAIL_HOST", null, null, null, "EMAIL", 0ul, "邮箱host", "邮箱host", 0, "Y", null, null, null, "smtp.126.com" }, + { "e26a10cf-911a-4fe0-a113-76965be749a0", "DILON_ALIYUN_SMS_LOGIN_TEMPLATE_CODE", null, null, null, "ALIYUN_SMS", 0ul, "阿里云短信-登录模板号", "阿里云短信-登录模板号", 0, "Y", null, null, null, "SMS_1877123456" } + }); + + migrationBuilder.InsertData( + table: "sys_dict_type", + columns: new[] { "Id", "Code", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "Name", "Remark", "Sort", "Status", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, + values: new object[,] + { + { "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", "notice_type", null, null, null, 0ul, "通知公告类型", "通知公告类型", 100, 0, null, null, null }, + { "b30937e6-03cd-4d98-a413-10b06d605e5a", "notice_status", null, null, null, 0ul, "通知公告状态", "通知公告状态", 100, 0, null, null, null }, + { "80aea9e7-ad1b-4f57-b4db-9d15813707bd", "yes_true_false", null, null, null, 0ul, "是否boolean", "是否boolean", 100, 0, null, null, null }, + { "430d0538-054a-4b37-a459-1095d0ccf4ae", "code_gen_create_type", null, null, null, 0ul, "代码生成方式", "代码生成方式", 100, 0, null, null, null }, + { "41bc31f6-cef5-400d-b03a-bf51d27b2432", "code_gen_query_type", null, null, null, 0ul, "代码生成查询类型", "代码生成查询类型", 100, 0, null, null, null }, + { "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", "code_gen_effect_type", null, null, null, 0ul, "代码生成作用类型", "代码生成作用类型", 100, 0, null, null, null }, + { "28f653d4-e573-4f54-8e5c-4e308780145a", "code_gen_net_type", null, null, null, 0ul, "代码生成.NET类型", "代码生成.NET类型", 100, 0, null, null, null }, + { "0f1b8660-d932-4a53-a681-a38bebae91e0", "run_status", null, null, null, 0ul, "运行状态", "定时任务运行状态", 100, 0, null, null, null }, + { "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", "request_type", null, null, null, 0ul, "请求方式", "请求方式", 100, 0, null, null, null }, + { "8461bd1d-311b-487e-b579-d6049c6fb191", "op_type", null, null, null, 0ul, "操作类型", "操作类型", 100, 0, null, null, null }, + { "b924e0c1-3f23-4e37-9f27-90e945381304", "file_storage_location", null, null, null, 0ul, "文件存储位置", "文件存储位置", 100, 0, null, null, null }, + { "a2068ed1-62a6-463c-b720-06111d994079", "data_scope_type", null, null, null, 0ul, "数据范围类型", "数据范围类型", 100, 0, null, null, null }, + { "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", "sms_send_source", null, null, null, 0ul, "短信发送来源", "短信发送来源", 100, 0, null, null, null }, + { "301ed120-dfc5-4d7c-af59-b56a519581c9", "sex", null, null, null, 0ul, "性别", "性别字典", 100, 0, null, null, null }, + { "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", "consts_type", null, null, null, 0ul, "常量的分类", "常量的分类,用于区别一组配置", 100, 0, null, null, null }, + { "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", "yes_or_no", null, null, null, 0ul, "是否", "是否", 100, 0, null, null, null }, + { "2cecf329-cf95-44eb-a8d7-3fb77b13e093", "vis_type", null, null, null, 0ul, "访问类型", "访问类型", 100, 0, null, null, null }, + { "b0cfa91c-1189-4f39-bc5a-f035885d0604", "common_status", null, null, null, 0ul, "通用状态", "通用状态", 100, 0, null, null, null }, + { "058db370-3718-42c3-8ba7-095341b1fe13", "send_type", null, null, null, 0ul, "发送类型", "发送类型", 100, 0, null, null, null }, + { "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", "open_type", null, null, null, 0ul, "打开方式", "打开方式", 100, 0, null, null, null }, + { "b3235678-f7fe-442b-8fba-e792a89b78f2", "menu_weight", null, null, null, 0ul, "菜单权重", "菜单权重", 100, 0, null, null, null }, + { "e973d383-c28e-42e0-9e23-5f2bd592fef5", "menu_type", null, null, null, 0ul, "菜单类型", "菜单类型", 100, 0, null, null, null } + }); + + migrationBuilder.InsertData( + table: "sys_emp", + columns: new[] { "Id", "JobNum", "OrgId", "OrgName" }, + values: new object[,] + { + { "d0ead3dc-5096-4e15-bc6d-f640be5301ec", "D1001", "12d888de-f55d-4c88-b0a0-7c3510664d97", "华夏集团" }, + { "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", "D1002", "12d888de-f55d-4c88-b0a0-7c3510664d97", "华夏集团" }, + { "16a74726-e156-499f-9942-0e0e24ad0c3f", "D1003", "12d888de-f55d-4c88-b0a0-7c3510664d97", "华夏集团" } + }); + + migrationBuilder.InsertData( + table: "sys_menu", + columns: new[] { "Id", "Application", "Code", "Component", "CreatedTime", "CreatedUserId", "CreatedUserName", "Icon", "IsDeleted", "Link", "Name", "OpenType", "Permission", "Pid", "Pids", "Redirect", "Remark", "Router", "Sort", "Status", "Type", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "Visible", "Weight" }, + values: new object[,] + { + { "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", "system", "sys_log_mgr_op_log", "system/log/oplog/index", null, null, null, null, 0ul, null, "操作日志", 1, null, "eec4563e-9307-4ccd-ac3a-93598badb195", "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],", null, null, "/oplog", 100, 0, 1, null, null, null, 1ul, 1 }, + { "eec4563e-9307-4ccd-ac3a-93598badb195", "system", "sys_log_mgr", "PageView", null, null, null, "read", 0ul, null, "日志管理", 0, null, "00000000-0000-0000-0000-000000000000", "[00000000-0000-0000-0000-000000000000],", null, null, "/log", 100, 0, 0, null, null, null, 1ul, 1 }, + { "322b2cb6-df29-483b-b011-54dce1532fae", "system", "sys_log_mgr_vis_log", "system/log/vislog/index", null, null, null, null, 0ul, null, "访问日志", 1, null, "eec4563e-9307-4ccd-ac3a-93598badb195", "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],", null, null, "/vislog", 100, 0, 1, null, null, null, 1ul, 1 }, + { "d40f424d-d5fc-4b86-a2bd-3a5a76076bc1", "system", "sys_swagger_mgr", "Iframe", null, null, null, null, 0ul, "http://127.0.0.1:5566/", "接口文档", 2, null, "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", null, null, "/swagger", 100, 0, 1, null, null, null, 1ul, 1 }, + { "122641c1-ab6d-4f91-9527-16fc8fea9708", "system", "sys_log_mgr_vis_log_page", null, null, null, null, null, 0ul, null, "访问日志查询", 0, "sysVisLog:page", "322b2cb6-df29-483b-b011-54dce1532fae", "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],[322b2cb6-df29-483b-b011-54dce1532fae],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "f2367804-6382-4e72-8282-e4f6f988ecd1", "system", "sys_log_mgr_vis_log_delete", null, null, null, null, null, 0ul, null, "访问日志清空", 0, "sysVisLog:delete", "322b2cb6-df29-483b-b011-54dce1532fae", "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],[322b2cb6-df29-483b-b011-54dce1532fae],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "7f44f49e-6458-4149-bbcd-9a937f552cec", "system", "sys_log_mgr_op_log_page", null, null, null, null, null, 0ul, null, "操作日志查询", 0, "sysOpLog:page", "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],[1a1a13cb-f9a9-4ffe-924d-d523db79f7bf],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "4785eb5a-678a-4f9c-b07c-3b92acdd6de0", "system", "sys_monitor_mgr_online_user_list", null, null, null, null, null, 0ul, null, "在线用户列表", 0, "sysOnlineUser:list", "49a8b476-327b-4f33-87b8-2d9bc50dc390", "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],[49a8b476-327b-4f33-87b8-2d9bc50dc390],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", "system", "sys_monitor_mgr", "PageView", null, null, null, "deployment-unit", 0ul, null, "系统监控", 0, null, "00000000-0000-0000-0000-000000000000", "[00000000-0000-0000-0000-000000000000],", null, null, "/monitor", 100, 0, 0, null, null, null, 1ul, 1 }, + { "c1e70042-fe3f-4efc-a6cc-86de8507f948", "system", "sys_monitor_mgr_machine_monitor", "system/machine/index", null, null, null, null, 0ul, null, "服务监控", 1, null, "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],", null, null, "/machine", 100, 0, 1, null, null, null, 1ul, 1 }, + { "444f3658-defe-47a7-880e-bf0af8b66591", "system", "sys_monitor_mgr_machine_monitor_query", null, null, null, null, null, 0ul, null, "服务监控查询", 0, "sysMachine:query", "c1e70042-fe3f-4efc-a6cc-86de8507f948", "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],[c1e70042-fe3f-4efc-a6cc-86de8507f948],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "49a8b476-327b-4f33-87b8-2d9bc50dc390", "system", "sys_monitor_mgr_online_user", "system/onlineUser/index", null, null, null, null, 0ul, null, "在线用户", 1, null, "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],", null, null, "/onlineUser", 100, 0, 1, null, null, null, 1ul, 1 }, + { "200428b3-1605-4c70-b840-e691e302ae69", "system", "sys_dict_mgr_dict_change_status", null, null, null, null, null, 0ul, null, "字典值修改状态", 0, "sysDictData:changeStatus", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "4dbf6765-ac79-4708-a9d5-16a4d4b09164", "system", "sys_monitor_mgr_online_user_force_exist", null, null, null, null, null, 0ul, null, "在线用户强退", 0, "sysOnlineUser:forceExist", "49a8b476-327b-4f33-87b8-2d9bc50dc390", "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],[49a8b476-327b-4f33-87b8-2d9bc50dc390],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "31c2af01-b856-4a1d-a131-cdf8e847b1a4", "system", "sys_monitor_mgr_druid", "Iframe", null, null, null, null, 0ul, "http://localhost:82/druid/login.html", "数据监控", 2, null, "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],", null, null, "/druid", 100, 0, 1, null, null, null, 0ul, 1 }, + { "263e0c00-2796-411c-9f50-0aa361f7781c", "system", "sys_log_mgr_op_log_delete", null, null, null, null, null, 0ul, null, "操作日志清空", 0, "sysOpLog:delete", "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],[1a1a13cb-f9a9-4ffe-924d-d523db79f7bf],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "fc511b42-f0a1-489b-8418-7ef94b0fb374", "system", "sys_role_mgr_grant_data", null, null, null, null, null, 0ul, null, "字典值详情", 0, "sysDictData:detail", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "4f87b6de-be62-4398-b680-1f8611f2cd70", "system", "sys_dict_mgr_dict_type_drop_down", null, null, null, null, null, 0ul, null, "字典类型下拉", 0, "sysDictType:dropDown", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "be98da08-a3b0-463c-8208-05d843620258", "system", "sys_dict_mgr_dict_delete", null, null, null, null, null, 0ul, null, "字典值删除", 0, "sysDictData:delete", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "d4cac841-99e5-4014-af17-2986c9340306", "system", "sys_notice", "PageView", null, null, null, "sound", 0ul, null, "通知公告", 0, null, "00000000-0000-0000-0000-000000000000", "[00000000-0000-0000-0000-000000000000],", null, null, "/notice", 100, 0, 0, null, null, null, 1ul, 1 }, + { "e571a1c9-8b43-459f-9dc6-1dcf967627b7", "system", "sys_sms_mgr", "system/sms/index", null, null, null, null, 0ul, null, "短信管理", 1, null, "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", null, null, "/sms", 100, 0, 1, null, null, null, 1ul, 1 }, + { "2afa4925-b927-457e-88a1-d215b7d75fb6", "system", "sys_sms_mgr_page", null, null, null, null, null, 0ul, null, "短信发送查询", 0, "sms:page", "e571a1c9-8b43-459f-9dc6-1dcf967627b7", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[e571a1c9-8b43-459f-9dc6-1dcf967627b7],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "97c1b073-5e19-4542-89e2-d8da44d0f1df", "system", "sys_sms_mgr_send_login_message", null, null, null, null, null, 0ul, null, "发送验证码短信", 0, "sms:sendLoginMessage", "e571a1c9-8b43-459f-9dc6-1dcf967627b7", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[e571a1c9-8b43-459f-9dc6-1dcf967627b7],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "d2454bd2-f300-4b28-95c0-12432c28cbdf", "system", "sys_sms_mgr_validate_message", null, null, null, null, null, 0ul, null, "验证短信验证码", 0, "sms:validateMessage", "e571a1c9-8b43-459f-9dc6-1dcf967627b7", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[e571a1c9-8b43-459f-9dc6-1dcf967627b7],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "system", "sys_dict_mgr", "system/dict/index", null, null, null, null, 0ul, null, "字典管理", 1, null, "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", null, null, "/dict", 100, 0, 1, null, null, null, 1ul, 1 }, + { "70c5e8c5-6104-4e53-99c0-4743e557456b", "system", "sys_dict_mgr_dict_type_page", null, null, null, null, null, 0ul, null, "字典类型查询", 0, "sysDictType:page", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "38809fc3-163f-4fe9-a488-c9bb5bce752a", "system", "sys_dict_mgr_dict_edit", null, null, null, null, null, 0ul, null, "字典值编辑", 0, "sysDictData:edit", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "1bd1d982-e05a-4bdc-a4e0-752d94f3196c", "system", "sys_dict_mgr_dict_type_list", null, null, null, null, null, 0ul, null, "字典类型列表", 0, "sysDictType:list", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "1f7a41ff-5a46-449c-81f3-1618dfdcb4cd", "system", "sys_dict_mgr_dict_type_delete", null, null, null, null, null, 0ul, null, "字典类型删除", 0, "sysDictType:delete", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "2381cde4-2174-47e7-a1e5-e58da70e7a11", "system", "sys_dict_mgr_dict_type_edit", null, null, null, null, null, 0ul, null, "字典类型编辑", 0, "sysDictType:edit", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "8f7d3c74-8800-4922-9662-ac6af378c882", "system", "sys_dict_mgr_dict_type_detail", null, null, null, null, null, 0ul, null, "字典类型详情", 0, "sysDictType:detail", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "07c799b2-e8e9-4955-83da-97560f161d87", "system", "sys_dict_mgr_dict_type_change_status", null, null, null, null, null, 0ul, null, "字典类型修改状态", 0, "sysDictType:changeStatus", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "29be8e3c-c2bb-4162-b282-fdf58c218b9d", "system", "sys_dict_mgr_dict_page", null, null, null, null, null, 0ul, null, "字典值查询", 0, "sysDictData:page", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "b8cbc4e1-ac10-4cda-b1e4-f816a2632d02", "system", "sys_dict_mgr_dict_list", null, null, null, null, null, 0ul, null, "字典值列表", 0, "sysDictData:list", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "54e97bde-94d6-42df-89e3-4c3ace153b22", "system", "sys_dict_mgr_dict_add", null, null, null, null, null, 0ul, null, "字典值增加", 0, "sysDictData:add", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "bd09b023-0884-4f31-8cf7-f66f789fa3db", "system", "sys_dict_mgr_dict_type_add", null, null, null, null, null, 0ul, null, "字典类型增加", 0, "sysDictType:add", "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", "system", "sys_notice_mgr", "system/notice/index", null, null, null, null, 0ul, null, "公告管理", 1, null, "d4cac841-99e5-4014-af17-2986c9340306", "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],", null, null, "/notice", 100, 0, 1, null, null, null, 1ul, 1 }, + { "f4cf2a3d-0714-4ca4-a691-0b363c172f82", "advanced", "sys_tenant", "PageView", null, null, null, "switcher", 0ul, null, "SaaS租户", 0, null, "00000000-0000-0000-0000-000000000000", "[00000000-0000-0000-0000-000000000000],", null, null, "/tenant", 100, 0, 1, null, null, null, 1ul, 1 }, + { "f27c8431-7da5-4ffe-a8f3-b511cf44c0c8", "system", "sys_notice_mgr_add", null, null, null, null, null, 0ul, null, "公告增加", 0, "sysNotice:add", "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "f27ba442-7d6f-499f-8053-a737adc3492a", "system", "sys_timers_mgr_add", null, null, null, null, null, 0ul, null, "定时任务增加", 0, "sysTimers:add", "8d4643d7-ec15-48ba-b896-816f8dab1b31", "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "99129601-0be5-43ee-842b-a428603f013b", "system", "sys_timers_mgr_delete", null, null, null, null, null, 0ul, null, "定时任务删除", 0, "sysTimers:delete", "8d4643d7-ec15-48ba-b896-816f8dab1b31", "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "5e118fc0-f580-4d06-a89d-f321a84e5654", "system", "sys_timers_mgr_edit", null, null, null, null, null, 0ul, null, "定时任务编辑", 0, "sysTimers:edit", "8d4643d7-ec15-48ba-b896-816f8dab1b31", "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "4272f2e4-4a8b-45bb-b688-2b9471c35e83", "system", "sys_timers_mgr_get_action_classes", null, null, null, null, null, 0ul, null, "定时任务可执行列表", 0, "sysTimers:getActionClasses", "8d4643d7-ec15-48ba-b896-816f8dab1b31", "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "54094687-f661-4cba-bdfc-e76f22db8d76", "system", "sys_timers_mgr_start", null, null, null, null, null, 0ul, null, "定时任务启动", 0, "sysTimers:start", "8d4643d7-ec15-48ba-b896-816f8dab1b31", "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "6b82d407-d1ea-440e-9245-128ad03dffc0", "system", "sys_timers_mgr_stop", null, null, null, null, null, 0ul, null, "定时任务关闭", 0, "sysTimers:stop", "8d4643d7-ec15-48ba-b896-816f8dab1b31", "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "5172265d-eda3-4b8a-a542-d582467a51a1", "system_tool", "code_gen", "gen/codeGenerate/index", null, null, null, "thunderbolt", 0ul, null, "代码生成", 0, null, "00000000-0000-0000-0000-000000000000", "[00000000-0000-0000-0000-000000000000],", null, null, "/codeGenerate/index", 100, 0, 1, null, null, null, 1ul, 1 }, + { "cf51df0a-8e0b-4252-ba06-9646cad648d1", "system_tool", "form_design", "system/formDesign/index", null, null, null, "robot", 0ul, null, "表单设计", 0, null, "00000000-0000-0000-0000-000000000000", "[00000000-0000-0000-0000-000000000000],", null, null, "/formDesign/index", 100, 0, 1, null, null, null, 1ul, 1 } + }); + + migrationBuilder.InsertData( + table: "sys_menu", + columns: new[] { "Id", "Application", "Code", "Component", "CreatedTime", "CreatedUserId", "CreatedUserName", "Icon", "IsDeleted", "Link", "Name", "OpenType", "Permission", "Pid", "Pids", "Redirect", "Remark", "Router", "Sort", "Status", "Type", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "Visible", "Weight" }, + values: new object[,] + { + { "51e45073-1461-4b3b-ae06-d0d3dcf222e0", "system", "sys_email_mgr_send_email_html", null, null, null, null, null, 0ul, null, "发送html邮件", 0, "email:sendEmailHtml", "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[cde43456-baae-4e9b-b6f9-b0ea9ab49adb],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", "advanced", "sys_tenant_mgr", "system/tenant/index", null, null, null, null, 0ul, null, "租户管理", 1, null, "f4cf2a3d-0714-4ca4-a691-0b363c172f82", "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],", null, null, "/tenant", 100, 0, 1, null, null, null, 1ul, 1 }, + { "8985ec0a-5060-4812-bf47-4f3102948066", "advanced", "sys_tenant_mgr_page", null, null, null, null, null, 0ul, null, "租户查询", 0, "sysTenant:page", "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "d9584afb-18de-4f7e-b992-c21ad77b1aae", "advanced", "sys_tenant_mgr_detail", null, null, null, null, null, 0ul, null, "租户详情", 0, "sysTenant:detail", "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "01ae6b95-9c1e-4882-a9ac-ebb9f1868c54", "advanced", "sys_tenant_mgr_add", null, null, null, null, null, 0ul, null, "租户增加", 0, "sysTenant:add", "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "59e9f6da-151a-4201-bea1-00ef06fe5842", "advanced", "sys_tenant_mgr_delete", null, null, null, null, null, 0ul, null, "租户删除", 0, "sysTenant:delete", "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "220b6a86-e65d-469b-8aa0-46c4f5e77ab8", "advanced", "sys_tenant_mgr_edit", null, null, null, null, null, 0ul, null, "租户编辑", 0, "sysTenant:edit", "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "1e562d31-c2f8-4af8-be4b-47e3b251d9a3", "system", "sys_timers_mgr_detail", null, null, null, null, null, 0ul, null, "定时任务详情", 0, "sysTimers:detail", "8d4643d7-ec15-48ba-b896-816f8dab1b31", "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "dc07cd9f-4a53-40d9-988e-70290a146eff", "system", "sys_timers_mgr_list", null, null, null, null, null, 0ul, null, "定时任务列表", 0, "sysTimers:list", "8d4643d7-ec15-48ba-b896-816f8dab1b31", "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "db62154a-470e-43c8-8959-a686b954fe7d", "system", "sys_timers_mgr_page", null, null, null, null, null, 0ul, null, "定时任务查询", 0, "sysTimers:page", "8d4643d7-ec15-48ba-b896-816f8dab1b31", "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "8d4643d7-ec15-48ba-b896-816f8dab1b31", "system", "sys_timers_mgr", "system/timers/index", null, null, null, null, 0ul, null, "任务管理", 1, null, "ba03cfd5-5d72-465f-87b6-71134da68fab", "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],", null, null, "/timers", 100, 0, 1, null, null, null, 1ul, 1 }, + { "f84c1f3a-3a51-4be2-97c9-7543b044e457", "system", "sys_notice_mgr_edit", null, null, null, null, null, 0ul, null, "公告编辑", 0, "sysNotice:edit", "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "a8abcb85-ad3b-47b9-8c9b-e7d1876b90cf", "system", "sys_notice_mgr_delete", null, null, null, null, null, 0ul, null, "公告删除", 0, "sysNotice:delete", "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "fe9cbb41-7b05-4f32-b960-87a1ef146166", "system", "sys_notice_mgr_detail", null, null, null, null, null, 0ul, null, "公告查看", 0, "sysNotice:detail", "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "3e547bb0-4cf5-4cf0-8386-48d2f3c12dcb", "system", "sys_notice_mgr_changeStatus", null, null, null, null, null, 0ul, null, "公告修改状态", 0, "sysNotice:changeStatus", "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "ac3065ff-d239-4e0e-86e5-d72cc658224c", "system", "sys_notice_mgr_received", "system/noticeReceived/index", null, null, null, null, 0ul, null, "已收公告", 1, null, "d4cac841-99e5-4014-af17-2986c9340306", "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],", null, null, "/noticeReceived", 100, 0, 1, null, null, null, 1ul, 1 }, + { "e2d4b13b-eb3e-4ead-8fb8-4c61a3004726", "system", "sys_notice_mgr_received_page", null, null, null, null, null, 0ul, null, "已收公告查询", 0, "sysNotice:received", "ac3065ff-d239-4e0e-86e5-d72cc658224c", "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[ac3065ff-d239-4e0e-86e5-d72cc658224c],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "05326e62-f496-4950-8a29-40e8a479424f", "system", "sys_file_mgr", "PageView", null, null, null, "file", 0ul, null, "文件管理", 0, null, "00000000-0000-0000-0000-000000000000", "[00000000-0000-0000-0000-000000000000],", null, null, "/file", 100, 0, 0, null, null, null, 1ul, 1 }, + { "54584ab7-25d1-45b7-b3d4-76ba21511f97", "system", "sys_notice_mgr_page", null, null, null, null, null, 0ul, null, "公告查询", 0, "sysNotice:page", "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "0af2a460-bbb0-472c-b027-8532970425df", "system", "sys_file_mgr_sys_file", "system/file/index", null, null, null, null, 0ul, null, "系统文件", 1, null, "05326e62-f496-4950-8a29-40e8a479424f", "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],", null, null, "/file", 100, 0, 1, null, null, null, 1ul, 1 }, + { "f47e1fa7-6329-4d67-8fe6-36ca06aad54b", "system", "sys_file_mgr_sys_file_list", null, null, null, null, null, 0ul, null, "文件列表", 0, "sysFileInfo:list", "0af2a460-bbb0-472c-b027-8532970425df", "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "cca0a2ee-cfb9-4996-affb-dc8d8168ac10", "system", "sys_file_mgr_sys_file_delete", null, null, null, null, null, 0ul, null, "文件删除", 0, "sysFileInfo:delete", "0af2a460-bbb0-472c-b027-8532970425df", "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "eb738eaa-5eed-466d-b422-4eb6f4662dd9", "system", "sys_file_mgr_sys_file_detail", null, null, null, null, null, 0ul, null, "文件详情", 0, "sysFileInfo:detail", "0af2a460-bbb0-472c-b027-8532970425df", "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "69b97ace-d849-4e52-8fc2-9da7d93e325f", "system", "sys_file_mgr_sys_file_upload", null, null, null, null, null, 0ul, null, "文件上传", 0, "sysFileInfo:upload", "0af2a460-bbb0-472c-b027-8532970425df", "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "e286d53d-bf3c-4711-b0a3-15cfad0a7521", "system", "sys_file_mgr_sys_file_download", null, null, null, null, null, 0ul, null, "文件下载", 0, "sysFileInfo:download", "0af2a460-bbb0-472c-b027-8532970425df", "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "1975891b-7940-44a8-a513-9f2e8b05dda1", "system", "sys_file_mgr_sys_file_preview", null, null, null, null, null, 0ul, null, "图片预览", 0, "sysFileInfo:preview", "0af2a460-bbb0-472c-b027-8532970425df", "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "ba03cfd5-5d72-465f-87b6-71134da68fab", "system", "sys_timers", "PageView", null, null, null, "dashboard", 0ul, null, "定时任务", 0, null, "00000000-0000-0000-0000-000000000000", "[00000000-0000-0000-0000-000000000000],", null, null, "/timers", 100, 0, 0, null, null, null, 1ul, 1 }, + { "c7bac800-b922-4173-bd8d-9888b4eab1d4", "system", "sys_file_mgr_sys_file_page", null, null, null, null, null, 0ul, null, "文件查询", 0, "sysFileInfo:page", "0af2a460-bbb0-472c-b027-8532970425df", "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "4d4cf5b3-bd4c-4f17-9fb2-47b28b00681f", "system", "sys_email_mgr_send_email", null, null, null, null, null, 0ul, null, "发送文本邮件", 0, "email:sendEmail", "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[cde43456-baae-4e9b-b6f9-b0ea9ab49adb],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "3892ef5d-39b2-4a4d-8047-cb96542fb54f", "system", "sys_menu_mgr_tree", null, null, null, null, null, 0ul, null, "菜单树", 0, "sysMenu:tree", "babff4e1-dd00-4e6b-909a-3aac76bb52cd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "f7fe47a3-86b2-4660-9920-0c9836755666", "system", "sys_app_mgr_set_as_default", null, null, null, null, null, 0ul, null, "设为默认应用", 0, "sysApp:setAsDefault", "abf3e33d-3d6a-4bbd-8743-179df5a95d48", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "471b5259-5f55-4643-841c-f07089cfafdf", "system", "sys_user_mgr_reset_pwd", null, null, null, null, null, 0ul, null, "用户重置密码", 0, "sysUser:resetPwd", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "471d3098-90a4-47e1-bd07-5d3ed8d21fb0", "system", "sys_user_mgr_login", null, null, null, null, null, 0ul, null, "用户登录信息", 0, "getLoginUser", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 1, 2, null, null, null, 0ul, 1 }, + { "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", "system", "sys_org_mgr", "system/org/index", null, null, null, null, 0ul, null, "机构管理", 1, null, "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],", null, null, "/org", 100, 0, 1, null, null, null, 1ul, 1 }, + { "b7c34c9b-933e-4c48-b1d0-af15a1f7da1f", "system", "sys_org_mgr_page", null, null, null, null, null, 0ul, null, "机构查询", 0, "sysOrg:page", "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "917064b2-c715-4fa4-9b2d-20a11b784ed1", "system", "sys_org_mgr_list", null, null, null, null, null, 0ul, null, "机构列表", 0, "sysOrg:list", "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "d7c18d60-f28f-4a57-90b3-26fc95249ae0", "system", "sys_org_mgr_add", null, null, null, null, null, 0ul, null, "机构增加", 0, "sysOrg:add", "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "e65eb1e3-cc9e-4309-8c7a-9ac41765b239", "system", "sys_org_mgr_edit", null, null, null, null, null, 0ul, null, "机构编辑", 0, "sysOrg:edit", "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "c2450c4c-89c6-46e8-8f89-11331790cbe3", "system", "sys_org_mgr_delete", null, null, null, null, null, 0ul, null, "机构删除", 0, "sysOrg:delete", "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", "system", "sys_email_mgr", "system/email/index", null, null, null, null, 0ul, null, "邮件发送", 1, null, "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", null, null, "/email", 100, 0, 1, null, null, null, 1ul, 1 }, + { "2d153046-279b-43be-8f57-46875118fd2c", "system", "sys_org_mgr_tree", null, null, null, null, null, 0ul, null, "机构树", 0, "sysOrg:tree", "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", "system", "sys_pos_mgr", "system/pos/index", null, null, null, null, 0ul, null, "职位管理", 1, null, "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],", null, null, "/pos", 100, 0, 1, null, null, null, 1ul, 1 }, + { "d2436601-bc48-4610-ba67-5b666f8ce33a", "system", "sys_pos_mgr_page", null, null, null, null, null, 0ul, null, "职位查询", 0, "sysPos:page", "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "1305efaa-b81a-475f-9dde-8f6549ca7743", "system", "sys_pos_mgr_list", null, null, null, null, null, 0ul, null, "职位列表", 0, "sysPos:list", "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "c227e732-f231-4488-89b0-d1c9dad78950", "system", "sys_pos_mgr_add", null, null, null, null, null, 0ul, null, "职位增加", 0, "sysPos:add", "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "9dafbe04-83c9-482c-9c83-81f4da045da5", "system", "sys_pos_mgr_edit", null, null, null, null, null, 0ul, null, "职位编辑", 0, "sysPos:edit", "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "9d681aac-528a-46b0-9718-ffc4abe9c29e", "system", "sys_user_mgr_update_avatar", null, null, null, null, null, 0ul, null, "用户修改头像", 0, "sysUser:updateAvatar", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "791b0d88-7e25-490f-a94f-a2e32bb3b6e6", "system", "sys_user_mgr_change_status", null, null, null, null, null, 0ul, null, "用户修改状态", 0, "sysUser:changeStatus", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "306fe9bf-3132-4011-9f3f-1a2f4ead7734", "system", "sys_user_mgr_update_pwd", null, null, null, null, null, 0ul, null, "用户修改密码", 0, "sysUser:updatePwd", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "711563e5-fed6-44d6-bcf3-138c73cfbfca", "system", "sys_user_mgr_update_info", null, null, null, null, null, 0ul, null, "用户更新信息", 0, "sysUser:updateInfo", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "83ce02c9-b37f-4885-96e3-9b34371edb2e", "system", "system_index", "RouteView", null, null, null, "home", 0ul, null, "主控面板", 0, null, "00000000-0000-0000-0000-000000000000", "[00000000-0000-0000-0000-000000000000],", "/analysis", null, "/", 1, 0, 0, null, null, null, 1ul, 1 }, + { "914a520d-9e4f-465b-ae05-7248b37d4be1", "system", "system_index_dashboard", "system/dashboard/Analysis", null, null, null, null, 0ul, null, "分析页", 0, null, "83ce02c9-b37f-4885-96e3-9b34371edb2e", "[00000000-0000-0000-0000-000000000000],[83ce02c9-b37f-4885-96e3-9b34371edb2e],", null, null, "analysis", 100, 0, 1, null, null, null, 1ul, 1 }, + { "72981ad9-9036-4aa7-b8f4-dc407eda50b4", "system", "system_index_workplace", "system/dashboard/Workplace", null, null, null, null, 0ul, null, "工作台", 0, null, "83ce02c9-b37f-4885-96e3-9b34371edb2e", "[00000000-0000-0000-0000-000000000000],[83ce02c9-b37f-4885-96e3-9b34371edb2e],", null, null, "workplace", 100, 0, 1, null, null, null, 1ul, 1 }, + { "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", "system", "sys_mgr", "PageView", null, null, null, "team", 0ul, null, "组织架构", 0, null, "00000000-0000-0000-0000-000000000000", "[00000000-0000-0000-0000-000000000000],", null, null, "/sys", 100, 0, 0, null, null, null, 1ul, 1 }, + { "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "system", "sys_user_mgr", "system/user/index", null, null, null, null, 0ul, null, "用户管理", 1, null, "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],", null, null, "/mgr_user", 100, 0, 1, null, null, null, 1ul, 1 }, + { "bff7e542-6463-4f82-a03d-b1022e60d4b6", "system", "sys_user_mgr_page", null, null, null, null, null, 0ul, null, "用户查询", 0, "sysUser:page", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "936440c7-93ef-4d2f-adff-6151f4317355", "system", "sys_user_mgr_edit", null, null, null, null, null, 0ul, null, "用户编辑", 0, "sysUser:edit", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "031df05e-b7c6-4ecd-aff2-f189c994e86d", "system", "sys_pos_mgr_delete", null, null, null, null, null, 0ul, null, "职位删除", 0, "sysPos:delete", "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "281888e3-d183-4711-ba27-298ef6e64659", "system", "sys_user_mgr_add", null, null, null, null, null, 0ul, null, "用户增加", 0, "sysUser:add", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "7a266494-e17b-480d-8f50-cc234e6fe424", "system", "sys_user_mgr_detail", null, null, null, null, null, 0ul, null, "用户详情", 0, "sysUser:detail", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "0d93f763-20d3-4c95-add3-3d94770b110e", "system", "sys_user_mgr_export", null, null, null, null, null, 0ul, null, "用户导出", 0, "sysUser:export", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "17d047c3-6e95-4f7d-93db-97817d886fa2", "system", "sys_user_mgr_selector", null, null, null, null, null, 0ul, null, "用户选择器", 0, "sysUser:selector", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "5fc44256-2e56-4805-9382-b5504ca5b6cb", "system", "sys_user_mgr_grant_role", null, null, null, null, null, 0ul, null, "用户授权角色", 0, "sysUser:grantRole", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "ceff7899-6779-4708-b9ed-a2d5b488cff2", "system", "sys_user_mgr_own_role", null, null, null, null, null, 0ul, null, "用户拥有角色", 0, "sysUser:ownRole", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "38ba9ccc-eb96-4a60-a5ab-f6ea013f8291", "system", "sys_user_mgr_grant_data", null, null, null, null, null, 0ul, null, "用户授权数据", 0, "sysUser:grantData", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "cf2f8faf-b280-456c-8865-64115e04019f", "system", "sys_user_mgr_own_data", null, null, null, null, null, 0ul, null, "用户拥有数据", 0, "sysUser:ownData", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "e4aff800-d34a-416b-bd6e-dcebaa1dd436", "system", "sys_user_mgr_delete", null, null, null, null, null, 0ul, null, "用户删除", 0, "sysUser:delete", "9f1f6051-15e6-474f-ab40-ab98a8713f7b", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "fe5ee8a1-2145-43c6-bdeb-518f3a9c127d", "system", "sys_pos_mgr_detail", null, null, null, null, null, 0ul, null, "职位详情", 0, "sysPos:detail", "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "695a6018-82c3-466e-a2a1-dab16039bfdb", "system", "sys_org_mgr_detail", null, null, null, null, null, 0ul, null, "机构详情", 0, "sysOrg:detail", "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", "system", "sys_app_mgr", "system/app/index", null, null, null, null, 0ul, null, "应用管理", 1, null, "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],", null, null, "/app", 100, 0, 1, null, null, null, 1ul, 1 }, + { "e7708eeb-2c87-4c3d-bc71-c395e5d708db", "system", "sys_role_mgr_delete", null, null, null, null, null, 0ul, null, "角色删除", 0, "sysRole:delete", "ee63be7b-5d06-4c15-81f3-875e2eb164dd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "63ab477f-88fb-4f4b-9dcd-0cb83ac767f6", "system", "sys_role_mgr_detail", null, null, null, null, null, 0ul, null, "角色详情", 0, "sysRole:detail", "ee63be7b-5d06-4c15-81f3-875e2eb164dd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "2622348c-dd8f-4ade-a350-de0a8f01e1f6", "system", "sys_role_mgr_drop_down", null, null, null, null, null, 0ul, null, "角色下拉", 0, "sysRole:dropDown", "ee63be7b-5d06-4c15-81f3-875e2eb164dd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "73d84863-b381-40be-84bc-ec8381fa6c0a", "system", "sys_role_mgr_grant_menu", null, null, null, null, null, 0ul, null, "角色授权菜单", 0, "sysRole:grantMenu", "ee63be7b-5d06-4c15-81f3-875e2eb164dd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "bbc5e792-3d72-4d0d-8ddb-25cf2c4e1374", "system", "sys_role_mgr_own_menu", null, null, null, null, null, 0ul, null, "角色拥有菜单", 0, "sysRole:ownMenu", "ee63be7b-5d06-4c15-81f3-875e2eb164dd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", "system", "auth_manager", "PageView", null, null, null, "safety-certificate", 0ul, null, "权限管理", 0, null, "00000000-0000-0000-0000-000000000000", "[00000000-0000-0000-0000-000000000000],", null, null, "/auth", 100, 0, 0, null, null, null, 1ul, 1 }, + { "19e5c5f6-b598-4c42-8eed-3d46fb11b465", "system", "sys_role_mgr_own_data", null, null, null, null, null, 0ul, null, "角色拥有数据", 0, "sysRole:ownData", "ee63be7b-5d06-4c15-81f3-875e2eb164dd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", "system", "system_tools", "PageView", null, null, null, "euro", 0ul, null, "开发管理", 0, null, "00000000-0000-0000-0000-000000000000", "[00000000-0000-0000-0000-000000000000],", null, null, "/tools", 100, 0, 0, null, null, null, 1ul, 1 }, + { "abf3e33d-3d6a-4bbd-8743-179df5a95d48", "system", "system_tools_config", "system/config/index", null, null, null, null, 0ul, null, "系统配置", 1, null, "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", null, null, "/config", 100, 0, 1, null, null, null, 1ul, 1 }, + { "c14c82bd-632d-4cc9-9236-37aa64b15ecf", "system", "system_tools_config_page", null, null, null, null, null, 0ul, null, "配置查询", 0, "sysConfig:page", "abf3e33d-3d6a-4bbd-8743-179df5a95d48", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 } + }); + + migrationBuilder.InsertData( + table: "sys_menu", + columns: new[] { "Id", "Application", "Code", "Component", "CreatedTime", "CreatedUserId", "CreatedUserName", "Icon", "IsDeleted", "Link", "Name", "OpenType", "Permission", "Pid", "Pids", "Redirect", "Remark", "Router", "Sort", "Status", "Type", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "Visible", "Weight" }, + values: new object[,] + { + { "78d31d68-9c9b-4e02-94c9-8a74eea4c1fb", "system", "system_tools_config_list", null, null, null, null, null, 0ul, null, "配置列表", 0, "sysConfig:list", "abf3e33d-3d6a-4bbd-8743-179df5a95d48", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "fc91afb5-2b9e-428b-b5ff-b0ef35dd5336", "system", "system_tools_config_add", null, null, null, null, null, 0ul, null, "配置增加", 0, "sysConfig:add", "abf3e33d-3d6a-4bbd-8743-179df5a95d48", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "1efb72e8-3449-490a-92e0-308b124c338f", "system", "system_tools_config_edit", null, null, null, null, null, 0ul, null, "配置编辑", 0, "sysConfig:edit", "abf3e33d-3d6a-4bbd-8743-179df5a95d48", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "5760230f-e6fc-4c3d-ba38-1c8a5a923eb3", "system", "system_tools_config_delete", null, null, null, null, null, 0ul, null, "配置删除", 0, "sysConfig:delete", "abf3e33d-3d6a-4bbd-8743-179df5a95d48", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "6bfc0c53-5d6c-437c-9757-bc79e664d0f5", "system", "system_tools_config_detail", null, null, null, null, null, 0ul, null, "配置详情", 0, "sysConfig:detail", "abf3e33d-3d6a-4bbd-8743-179df5a95d48", "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "1198a602-a23d-4a06-aa9a-76aaf5f065a7", "system", "sys_role_mgr_edit", null, null, null, null, null, 0ul, null, "角色编辑", 0, "sysRole:edit", "ee63be7b-5d06-4c15-81f3-875e2eb164dd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "6a48beb1-c828-43d6-af3d-3e18ef163070", "system", "sys_role_mgr_add", null, null, null, null, null, 0ul, null, "角色增加", 0, "sysRole:add", "ee63be7b-5d06-4c15-81f3-875e2eb164dd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "19234814-6007-484c-818c-88a664a2a339", "system", "sys_role_mgr_grant_data", null, null, null, null, null, 0ul, null, "角色授权数据", 0, "sysRole:grantData", "ee63be7b-5d06-4c15-81f3-875e2eb164dd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "ee63be7b-5d06-4c15-81f3-875e2eb164dd", "system", "sys_role_mgr", "system/role/index", null, null, null, null, 0ul, null, "角色管理", 1, null, "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],", null, null, "/role", 100, 0, 1, null, null, null, 1ul, 1 }, + { "4241f4a0-89ab-4a6a-80bb-2830f855d3be", "system", "sys_role_mgr_page", null, null, null, null, null, 0ul, null, "角色查询", 0, "sysRole:page", "ee63be7b-5d06-4c15-81f3-875e2eb164dd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "dbaa7a6d-234f-4cc9-977f-4544b8bb45b8", "system", "sys_app_mgr_page", null, null, null, null, null, 0ul, null, "应用查询", 0, "sysApp:page", "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "ab7b2b41-b0bc-4b9c-9017-f5c6918e393e", "system", "sys_app_mgr_list", null, null, null, null, null, 0ul, null, "应用列表", 0, "sysApp:list", "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "f4e1d63b-5d92-46eb-82aa-267335a5a3f3", "system", "sys_app_mgr_add", null, null, null, null, null, 0ul, null, "应用增加", 0, "sysApp:add", "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "f33a3791-1c01-4d30-bcc3-d9fdf5246376", "system", "sys_app_mgr_edit", null, null, null, null, null, 0ul, null, "应用编辑", 0, "sysApp:edit", "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "e0a6cf90-0a8b-44e4-a32f-5f43ef996b82", "system", "sys_app_mgr_delete", null, null, null, null, null, 0ul, null, "应用删除", 0, "sysApp:delete", "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "a0abe974-5ae9-440b-9d16-2412eab52d70", "system", "sys_app_mgr_detail", null, null, null, null, null, 0ul, null, "应用详情", 0, "sysApp:detail", "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "babff4e1-dd00-4e6b-909a-3aac76bb52cd", "system", "sys_menu_mgr", "system/menu/index", null, null, null, null, 0ul, null, "菜单管理", 1, null, "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],", null, null, "/menu", 100, 0, 1, null, null, null, 1ul, 1 }, + { "f640e243-b439-4109-8aea-c66205ef6b12", "system", "sys_app_mgr_set_as_default", null, null, null, null, null, 0ul, null, "设为默认应用", 0, "sysApp:setAsDefault", "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "758e15e6-75a6-4b72-8f94-5da379e53354", "system", "sys_menu_mgr_add", null, null, null, null, null, 0ul, null, "菜单增加", 0, "sysMenu:add", "babff4e1-dd00-4e6b-909a-3aac76bb52cd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "07139c19-6b39-49f5-9e22-c4dc7e9d947b", "system", "sys_menu_mgr_edit", null, null, null, null, null, 0ul, null, "菜单编辑", 0, "sysMenu:edit", "babff4e1-dd00-4e6b-909a-3aac76bb52cd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "857fb581-78ff-4884-a6fb-8dfb4951fef9", "system", "sys_menu_mgr_delete", null, null, null, null, null, 0ul, null, "菜单删除", 0, "sysMenu:delete", "babff4e1-dd00-4e6b-909a-3aac76bb52cd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "cd43a8ee-9f98-4355-bf81-ba40f388b23f", "system", "sys_menu_mgr_detail", null, null, null, null, null, 0ul, null, "菜单详情", 0, "sysMenu:detail", "babff4e1-dd00-4e6b-909a-3aac76bb52cd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "ec318997-596d-403a-91be-f303b234b02d", "system", "sys_menu_mgr_grant_tree", null, null, null, null, null, 0ul, null, "菜单授权树", 0, "sysMenu:treeForGrant", "babff4e1-dd00-4e6b-909a-3aac76bb52cd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "00831a3b-d080-411f-afb9-9f415334b192", "system", "sys_menu_mgr_change", null, null, null, null, null, 0ul, null, "菜单切换", 0, "sysMenu:change", "babff4e1-dd00-4e6b-909a-3aac76bb52cd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 }, + { "e9982e73-1833-4674-9403-ee3dee2efdf7", "system", "sys_menu_mgr_list", null, null, null, null, null, 0ul, null, "菜单列表", 0, "sysMenu:list", "babff4e1-dd00-4e6b-909a-3aac76bb52cd", "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", null, null, null, 100, 0, 2, null, null, null, 1ul, 1 } + }); + + migrationBuilder.InsertData( + table: "sys_org", + columns: new[] { "Id", "Code", "Contacts", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "Name", "Pid", "Pids", "Remark", "Sort", "Status", "Tel", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, + values: new object[,] + { + { "49dc3f25-873d-4998-9767-46978d79d8e6", "hxjt_cd_scb", null, null, null, null, 0ul, "市场部", "127c0a5d-43ac-4370-b313-082361885aca", "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[127c0a5d-43ac-4370-b313-082361885aca],", "华夏集团成都分公司市场部", 100, 0, null, null, null, null }, + { "e9f97d63-a585-40ff-bf0c-7406e785f660", "hxjt_cd_scb_2b", null, null, null, null, 0ul, "市场部二部", "49dc3f25-873d-4998-9767-46978d79d8e6", "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[127c0a5d-43ac-4370-b313-082361885aca],[49dc3f25-873d-4998-9767-46978d79d8e6],", "华夏集团成都分公司市场部二部", 100, 0, null, null, null, null }, + { "56b7a823-cc62-492b-a91b-0b053ef2683b", "hxjt_cd_cwb", null, null, null, null, 0ul, "财务部", "127c0a5d-43ac-4370-b313-082361885aca", "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[127c0a5d-43ac-4370-b313-082361885aca],", "华夏集团成都分公司财务部", 100, 0, null, null, null, null }, + { "07322be0-2015-41f2-859e-132b5e142fca", "hxjt_bj_qhb", null, null, null, null, 0ul, "企划部", "8a2271d6-5bda-4544-bdd3-27e53a8b418e", "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[8a2271d6-5bda-4544-bdd3-27e53a8b418e],", "华夏集团北京分公司企划部", 100, 0, null, null, null, null }, + { "12d888de-f55d-4c88-b0a0-7c3510664d97", "hxjt", null, null, null, null, 0ul, "华夏集团", "00000000-0000-0000-0000-000000000000", "[00000000-0000-0000-0000-000000000000],", "华夏集团", 100, 0, null, null, null, null }, + { "127c0a5d-43ac-4370-b313-082361885aca", "hxjt_cd", null, null, null, null, 0ul, "华夏集团成都分公司", "12d888de-f55d-4c88-b0a0-7c3510664d97", "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", "华夏集团成都分公司", 100, 0, null, null, null, null }, + { "8a2271d6-5bda-4544-bdd3-27e53a8b418e", "hxjt_bj", null, null, null, null, 0ul, "华夏集团北京分公司", "12d888de-f55d-4c88-b0a0-7c3510664d97", "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", "华夏集团北京分公司", 100, 0, null, null, null, null }, + { "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", "hxjt_bj_yfb", null, null, null, null, 0ul, "研发部", "8a2271d6-5bda-4544-bdd3-27e53a8b418e", "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[8a2271d6-5bda-4544-bdd3-27e53a8b418e],", "华夏集团北京分公司研发部", 100, 0, null, null, null, null } + }); + + migrationBuilder.InsertData( + table: "sys_pos", + columns: new[] { "Id", "Code", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "Name", "Remark", "Sort", "Status", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, + values: new object[,] + { + { "269236c4-d74e-4e54-9d50-f6f61580a197", "zjl", null, null, null, 0ul, "总经理", "总经理", 100, 0, null, null, null }, + { "46c68a62-f119-4ff7-b621-0bbd77504538", "fzjl", null, null, null, 0ul, "副总经理", "副总经理", 101, 0, null, null, null }, + { "5bd8c466-2bca-4386-a551-daac78e3cee8", "bmjl", null, null, null, 0ul, "部门经理", "部门经理", 102, 0, null, null, null }, + { "d89a3afe-e6ba-4018-bdae-3c98bb47ad66", "gzry", null, null, null, 0ul, "工作人员", "工作人员", 103, 0, null, null, null } + }); + + migrationBuilder.InsertData( + table: "sys_role", + columns: new[] { "Id", "Code", "CreatedTime", "CreatedUserId", "CreatedUserName", "DataScopeType", "IsDeleted", "Name", "Remark", "Sort", "Status", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, + values: new object[,] + { + { "6dfe9189-ce10-434e-a7a7-5cdc46e85047", "sys_manager_role", null, null, null, 1, 0ul, "系统管理员", "系统管理员", 100, 0, null, null, null }, + { "cd187ebd-ab3d-4768-9669-85e2219c2910", "common_role", null, null, null, 5, 0ul, "普通用户", "普通用户", 101, 0, null, null, null } + }); + + migrationBuilder.InsertData( + table: "sys_timer", + columns: new[] { "Id", "BeginTime", "CreatedTime", "CreatedUserId", "CreatedUserName", "Cron", "EndTime", "Headers", "Interval", "IsDeleted", "JobGroup", "JobName", "Remark", "RequestParameters", "RequestType", "RequestUrl", "RunNumber", "TriggerType", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, + values: new object[] { "971bc338-0c03-46d4-8113-c7738d54ea18", new DateTimeOffset(new DateTime(2021, 3, 21, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), null, null, null, null, null, null, 30, 0ul, "默认分组", "百度api", null, null, 2, "https://www.baidu.com", null, 1, null, null, null }); + + migrationBuilder.InsertData( + table: "sys_user", + columns: new[] { "Id", "Account", "AdminType", "Avatar", "Birthday", "CreatedTime", "CreatedUserId", "CreatedUserName", "Email", "IsDeleted", "LastLoginIp", "LastLoginTime", "Name", "NickName", "Password", "Phone", "Sex", "Status", "Tel", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, + values: new object[,] + { + { "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", "admin", 1, null, new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), null, null, null, null, 0ul, null, new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0)), "admin", null, "e10adc3949ba59abbe56e057f20f883e", "18020030720", 2, 0, null, null, null, null }, + { "d0ead3dc-5096-4e15-bc6d-f640be5301ec", "superAdmin", 1, null, new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), null, null, null, null, 0ul, null, new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0)), "superAdmin", null, "e10adc3949ba59abbe56e057f20f883e", "18020030720", 1, 0, null, null, null, null }, + { "16a74726-e156-499f-9942-0e0e24ad0c3f", "zuohuaijun", 2, null, new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), null, null, null, null, 0ul, null, new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0)), "zuohuaijun", null, "e10adc3949ba59abbe56e057f20f883e", "18020030720", 1, 0, null, null, null, null } + }); + + migrationBuilder.InsertData( + table: "sys_dict_data", + columns: new[] { "Id", "Code", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "Remark", "Sort", "Status", "TypeId", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "Value" }, + values: new object[,] + { + { "e3c9ebce-bdae-45a3-92b1-fc2e35a23242", "0", null, null, null, 0ul, "正常", 100, 0, "b0cfa91c-1189-4f39-bc5a-f035885d0604", null, null, null, "正常" }, + { "443f965e-96b4-4fd2-93e9-07fe00a47205", "input", null, null, null, 0ul, "输入框", 100, 0, "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", null, null, null, "输入框" }, + { "0e4dc1f1-8654-401b-800a-22b31f62ced1", "4", null, null, null, 0ul, "DELETE", 100, 0, "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", null, null, null, "DELETE" }, + { "69a34c0b-85ce-4e53-9ad4-a592057dddd4", "3", null, null, null, 0ul, "PUT", 100, 0, "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", null, null, null, "PUT" }, + { "10070836-0c89-4b89-96e3-c65c7e33a86c", "2", null, null, null, 0ul, "POST", 100, 0, "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", null, null, null, "POST" }, + { "b2a00b40-23e1-40e1-8995-60ab420eafe1", "1", null, null, null, 0ul, "GET", 100, 0, "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", null, null, null, "GET" }, + { "5bc8662d-b795-48f1-a88e-2f4be5279d37", "2", null, null, null, 0ul, "生成到本项目", 100, 0, "430d0538-054a-4b37-a459-1095d0ccf4ae", null, null, null, "生成到本项目" }, + { "881ebcf2-94a6-4938-81a4-55b81736f3b3", "1", null, null, null, 0ul, "下载压缩包", 100, 0, "430d0538-054a-4b37-a459-1095d0ccf4ae", null, null, null, "下载压缩包" }, + { "0724636d-e870-46c6-8e1e-67f1ea5f58e5", "false", null, null, null, 0ul, "否", 100, 0, "80aea9e7-ad1b-4f57-b4db-9d15813707bd", null, null, null, "否" }, + { "1f432e9d-f031-4787-a527-f37bb20ebe3a", "true", null, null, null, 0ul, "是", 100, 0, "80aea9e7-ad1b-4f57-b4db-9d15813707bd", null, null, null, "是" }, + { "bf7be9a2-53fb-4250-87fe-49d7f741d159", "datepicker", null, null, null, 0ul, "时间选择", 100, 0, "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", null, null, null, "时间选择" }, + { "6385916f-6ead-470e-889b-cfb9d2da6256", "3", null, null, null, 0ul, "删除", 100, 0, "b30937e6-03cd-4d98-a413-10b06d605e5a", null, null, null, "删除" }, + { "f5b49fa9-31a1-44c2-9df0-b28bf5daeee0", "1", null, null, null, 0ul, "发布", 100, 0, "b30937e6-03cd-4d98-a413-10b06d605e5a", null, null, null, "发布" }, + { "40d336cd-918a-4e90-8836-cba7c1bf6cdf", "0", null, null, null, 0ul, "草稿", 100, 0, "b30937e6-03cd-4d98-a413-10b06d605e5a", null, null, null, "草稿" }, + { "2616e6c2-a504-4fc6-993e-72701b48e79a", "2", null, null, null, 0ul, "公告", 100, 0, "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", null, null, null, "公告" }, + { "99b965d3-1f2b-4f5b-a62a-6763b8d64a64", "1", null, null, null, 0ul, "通知", 100, 0, "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", null, null, null, "通知" }, + { "6e3591ec-2902-4bf3-b5a2-7ebc94ebc08f", "2", null, null, null, 0ul, "停止", 100, 0, "0f1b8660-d932-4a53-a681-a38bebae91e0", null, null, null, "停止" }, + { "76e885e8-1b40-45b6-bb0f-5519c6839df2", "1", null, null, null, 0ul, "运行", 100, 0, "0f1b8660-d932-4a53-a681-a38bebae91e0", null, null, null, "运行" }, + { "cdc4a9ee-7436-4807-87cd-4350a72745b0", "4", null, null, null, 0ul, "本地", 100, 0, "b924e0c1-3f23-4e37-9f27-90e945381304", null, null, null, "本地" }, + { "cc64be62-3213-4442-a98a-c508bc35104b", "3", null, null, null, 0ul, "minio", 100, 0, "b924e0c1-3f23-4e37-9f27-90e945381304", null, null, null, "minio" }, + { "f86e19a0-8ba8-4588-91f6-be2af525f490", "1", null, null, null, 0ul, "阿里云", 100, 0, "b924e0c1-3f23-4e37-9f27-90e945381304", null, null, null, "阿里云" }, + { "d2f73bb4-05a1-4aa5-9273-e9f3c393996d", "2", null, null, null, 0ul, "撤回", 100, 0, "b30937e6-03cd-4d98-a413-10b06d605e5a", null, null, null, "撤回" }, + { "cea10919-47e2-43ab-a19b-9d41fe648310", "select", null, null, null, 0ul, "下拉框", 100, 0, "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", null, null, null, "下拉框" }, + { "7d534f44-cf66-472e-b0d3-20a4cc2ad432", "radio", null, null, null, 0ul, "单选框", 100, 0, "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", null, null, null, "单选框" }, + { "d63b06d4-be11-4ab7-9905-87f6f2ca056f", "switch", null, null, null, 0ul, "开关", 100, 0, "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", null, null, null, "开关" }, + { "c597306f-5fd0-4f75-9a46-12de340cd199", "DateTimeOffset", null, null, null, 0ul, "DateTimeOffset", 100, 0, "28f653d4-e573-4f54-8e5c-4e308780145a", null, null, null, "DateTimeOffset" }, + { "134d4173-8d93-4c19-bf6b-a640d35da097", "Guid", null, null, null, 0ul, "Guid", 100, 0, "28f653d4-e573-4f54-8e5c-4e308780145a", null, null, null, "Guid" }, + { "4b68cb83-f173-4864-bd10-a7a7d5248102", "decimal", null, null, null, 0ul, "decimal", 100, 0, "28f653d4-e573-4f54-8e5c-4e308780145a", null, null, null, "decimal" }, + { "a30c682e-744a-468d-a74f-827928c96c01", "float", null, null, null, 0ul, "float", 100, 0, "28f653d4-e573-4f54-8e5c-4e308780145a", null, null, null, "float" }, + { "259698cf-b25d-427a-8d22-33b9c1899eea", "DateTime", null, null, null, 0ul, "DateTime", 100, 0, "28f653d4-e573-4f54-8e5c-4e308780145a", null, null, null, "DateTime" }, + { "681c02ea-7570-4a97-85a7-957a77314df6", "double", null, null, null, 0ul, "double", 100, 0, "28f653d4-e573-4f54-8e5c-4e308780145a", null, null, null, "double" }, + { "496eef62-3849-4263-b274-a3e6090942e3", "bool", null, null, null, 0ul, "bool", 100, 0, "28f653d4-e573-4f54-8e5c-4e308780145a", null, null, null, "bool" }, + { "25be90ea-b439-4e9d-993c-48a5ce3b9358", "string", null, null, null, 0ul, "string", 100, 0, "28f653d4-e573-4f54-8e5c-4e308780145a", null, null, null, "string" }, + { "cffdd4b5-d4e0-4196-81b9-02045de8b189", "long", null, null, null, 0ul, "long", 100, 0, "28f653d4-e573-4f54-8e5c-4e308780145a", null, null, null, "long" }, + { "a5cdf75e-6361-490d-a043-f5929ccf65a9", "int", null, null, null, 0ul, "int", 100, 0, "28f653d4-e573-4f54-8e5c-4e308780145a", null, null, null, "int" }, + { "759ea7de-a18f-4ed7-9032-bbd1a4dadc9e", "isNotNull", null, null, null, 0ul, "不为空", 8, 0, "41bc31f6-cef5-400d-b03a-bf51d27b2432", null, null, null, "不为空" }, + { "7c9e8270-db5a-45b7-acd7-f95c8ee31547", "<=", null, null, null, 0ul, "小于等于", 7, 0, "41bc31f6-cef5-400d-b03a-bf51d27b2432", null, null, null, "小于等于" }, + { "4825f15d-077b-4c16-8ee7-0205d653e14d", ">=", null, null, null, 0ul, "大于等于", 6, 0, "41bc31f6-cef5-400d-b03a-bf51d27b2432", null, null, null, "大于等于" }, + { "218b5bac-343e-4594-a9da-30e391c7735c", "!=", null, null, null, 0ul, "不等于", 5, 0, "41bc31f6-cef5-400d-b03a-bf51d27b2432", null, null, null, "不等于" }, + { "a6812d98-7785-4db2-b2f8-d476a459c5ed", "<", null, null, null, 0ul, "小于", 4, 0, "41bc31f6-cef5-400d-b03a-bf51d27b2432", null, null, null, "小于" }, + { "efc18513-c17b-4fc1-8e0e-2e79fb9b0107", ">", null, null, null, 0ul, "大于", 3, 0, "41bc31f6-cef5-400d-b03a-bf51d27b2432", null, null, null, "大于" }, + { "2c8e1240-f3ef-4df1-bd68-3047109ad5b4", "like", null, null, null, 0ul, "模糊", 2, 0, "41bc31f6-cef5-400d-b03a-bf51d27b2432", null, null, null, "模糊" }, + { "ad759239-e34e-4fdf-a0d0-6b39eb41f880", "==", null, null, null, 0ul, "等于", 1, 0, "41bc31f6-cef5-400d-b03a-bf51d27b2432", null, null, null, "等于" }, + { "d00b3efa-2f9d-464c-8134-aa7013ef52bb", "textarea", null, null, null, 0ul, "文本域", 100, 0, "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", null, null, null, "文本域" }, + { "a8ac5009-93d3-4405-a6b9-81ed3e2811f2", "inputnumber", null, null, null, 0ul, "数字输入框", 100, 0, "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", null, null, null, "数字输入框" }, + { "46967f62-bac9-47fd-9278-b29c047b0c38", "checkbox", null, null, null, 0ul, "多选框", 100, 0, "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", null, null, null, "多选框" }, + { "b6f55ff4-6b6a-452a-b372-32ac2f1f2b30", "13", null, null, null, 0ul, "修改状态", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "修改状态" }, + { "beb773cd-a22a-44e2-ac4b-5ab6f21aa3c4", "12", null, null, null, 0ul, "清空", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "清空" }, + { "91c522b5-4f6f-48a5-ba79-962d56821bdc", "2", null, null, null, 0ul, "腾讯云", 100, 0, "b924e0c1-3f23-4e37-9f27-90e945381304", null, null, null, "腾讯云" }, + { "e02d9274-aa68-4e2c-9211-b226f1e6423e", "10", null, null, null, 0ul, "授权", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "授权" }, + { "e1e71562-015e-466b-b98b-29f4b8966bce", "2", null, null, null, 0ul, "发送失败", 100, 0, "058db370-3718-42c3-8ba7-095341b1fe13", null, null, null, "发送失败" }, + { "023244cd-eb32-4a19-bb3c-97301be1e769", "11", null, null, null, 0ul, "强退", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "强退" }, + { "7ec98dee-8dc9-47fe-9276-f3312ed5dd24", "0", null, null, null, 0ul, "未发送", 100, 0, "058db370-3718-42c3-8ba7-095341b1fe13", null, null, null, "未发送" }, + { "a4cba529-769a-4309-add6-b15b25ebf05a", "2", null, null, null, 0ul, "按钮", 100, 0, "e973d383-c28e-42e0-9e23-5f2bd592fef5", null, null, null, "按钮" }, + { "bb082602-57ea-4941-b68b-64460e7f63b6", "1", null, null, null, 0ul, "菜单", 100, 0, "e973d383-c28e-42e0-9e23-5f2bd592fef5", null, null, null, "菜单" }, + { "a8cd8263-4397-4d68-91db-d92330c67632", "0", null, null, null, 0ul, "目录", 100, 0, "e973d383-c28e-42e0-9e23-5f2bd592fef5", null, null, null, "目录" }, + { "934099f4-c1a6-4f63-8cff-a42356369dd9", "2", null, null, null, 0ul, "登出", 100, 0, "2cecf329-cf95-44eb-a8d7-3fb77b13e093", null, null, null, "登出" }, + { "8204daac-b2ea-41f6-ab52-ef299a05fd94", "1", null, null, null, 0ul, "登录", 100, 0, "2cecf329-cf95-44eb-a8d7-3fb77b13e093", null, null, null, "登录" }, + { "7d3115a8-938a-4d09-a2c9-21ad65b8b65a", "Y", null, null, null, 0ul, "是", 100, 0, "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", null, null, null, "是" }, + { "1159fc34-ef51-4e0f-b55b-0220d2445a1e", "N", null, null, null, 0ul, "否", 100, 0, "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", null, null, null, "否" }, + { "fdf38fa8-3d1e-4a43-84bc-785c0a394160", "OAUTH", null, null, null, 0ul, "Oauth配置", 100, 0, "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", null, null, null, "Oauth配置" }, + { "81d87a9c-a4ee-46dc-be69-71dcccb14d9d", "FILE_PATH", null, null, null, 0ul, "文件上传路径", 100, 0, "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", null, null, null, "文件上传路径" }, + { "9cba05e7-495a-43fb-b86b-fa459da5b04d", "EMAIL", null, null, null, 0ul, "邮件配置", 100, 0, "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", null, null, null, "邮件配置" }, + { "5e61f455-1975-438b-bd17-85a1f89abe84", "TENCENT_SMS", null, null, null, 0ul, "腾讯云短信", 100, 0, "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", null, null, null, "腾讯云短信" }, + { "e2271e0a-17a3-41f3-81fa-dbe895ce0466", "ALIYUN_SMS", null, null, null, 0ul, "阿里云短信配置", 100, 0, "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", null, null, null, "阿里云短信" }, + { "b6ad194b-ccfb-4ee7-b402-7b78e8bb8680", "DEFAULT", null, null, null, 0ul, "默认常量,都以XIAONUO_开头的", 100, 0, "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", null, null, null, "默认常量" }, + { "150e04a6-3bf5-4604-98d5-14fbd1608bc5", "3", null, null, null, 0ul, "未知性别", 100, 0, "301ed120-dfc5-4d7c-af59-b56a519581c9", null, null, null, "未知" }, + { "46ba4c21-cbde-4561-8e57-19ed0f752c17", "2", null, null, null, 0ul, "女性", 100, 0, "301ed120-dfc5-4d7c-af59-b56a519581c9", null, null, null, "女" }, + { "9b44b297-f6f0-4c31-b680-83baabf4c5b7", "1", null, null, null, 0ul, "男性", 100, 0, "301ed120-dfc5-4d7c-af59-b56a519581c9", null, null, null, "男" }, + { "297030a2-88d9-4646-b7c1-a17c9a8c0b98", "2", null, null, null, 0ul, "删除", 100, 0, "b0cfa91c-1189-4f39-bc5a-f035885d0604", null, null, null, "删除" }, + { "22492650-a92b-43f0-9954-3d3891ec6e45", "1", null, null, null, 0ul, "停用", 100, 0, "b0cfa91c-1189-4f39-bc5a-f035885d0604", null, null, null, "停用" }, + { "13e71f10-539b-4016-9acf-e3541c0f04db", "3", null, null, null, 0ul, "失效", 100, 0, "058db370-3718-42c3-8ba7-095341b1fe13", null, null, null, "失效" }, + { "f965b257-b2ff-4a18-9084-6e805547e9e6", "0", null, null, null, 0ul, "无", 100, 0, "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", null, null, null, "无" }, + { "83cf4407-dbe1-4da2-883d-a3e16a780f37", "1", null, null, null, 0ul, "发送成功", 100, 0, "058db370-3718-42c3-8ba7-095341b1fe13", null, null, null, "发送成功" }, + { "be3197fd-2fba-4e79-b252-793f05e51a21", "2", null, null, null, 0ul, "内链", 100, 0, "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", null, null, null, "内链" }, + { "db13458a-22b4-4f5e-b6f9-c3c9e1400909", "9", null, null, null, 0ul, "导出", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "导出" }, + { "2b9cf0b8-74ba-4b36-8504-275a2387729a", "8", null, null, null, 0ul, "导入", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "导入" }, + { "bf8f818f-060b-4815-8fe9-11bb356cb2e6", "7", null, null, null, 0ul, "树", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "树" }, + { "fe6e46ee-208b-446f-8aaa-05bd5eaa459b", "6", null, null, null, 0ul, "详情", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "详情" }, + { "d1334517-ddfa-47f3-b053-88ea999babc7", "5", null, null, null, 0ul, "查询", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "查询" }, + { "9edba767-7008-4623-8dbf-75417f1a0c82", "4", null, null, null, 0ul, "更新", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "更新" }, + { "75c40b12-07d1-4828-9b6c-132f4bca194c", "1", null, null, null, 0ul, "组件", 100, 0, "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", null, null, null, "组件" }, + { "387d403c-6af3-4bda-af05-d60472823480", "2", null, null, null, 0ul, "删除", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "删除" }, + { "e7585292-d6c6-475f-bf87-8ad473ce6be4", "1", null, null, null, 0ul, "增加", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "增加" }, + { "35aac71b-9939-4b2e-8533-d087618c1dca", "0", null, null, null, 0ul, "其它", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "其它" }, + { "4656bf7b-df6a-4c71-b963-18d8af3f93a7", "3", null, null, null, 0ul, "编辑", 100, 0, "8461bd1d-311b-487e-b579-d6049c6fb191", null, null, null, "编辑" }, + { "b1e821b3-4e7b-4e60-a67f-a40d327ab6d6", "2", null, null, null, 0ul, "pc", 100, 0, "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", null, null, null, "pc" }, + { "2a10adc6-b286-4fad-9719-7e7321c7a93e", "3", null, null, null, 0ul, "外链", 100, 0, "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", null, null, null, "外链" }, + { "2bce5da0-b386-4412-935d-d081b7cf4391", "3", null, null, null, 0ul, "其他", 100, 0, "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", null, null, null, "其他" }, + { "f4771570-e4a5-416f-b82f-1e3082c35ee8", "2", null, null, null, 0ul, "业务权重", 100, 0, "b3235678-f7fe-442b-8fba-e792a89b78f2", null, null, null, "业务权重" }, + { "a2d6bdfe-ee61-4425-94c9-7ece3de080fa", "1", null, null, null, 0ul, "全部数据", 100, 0, "a2068ed1-62a6-463c-b720-06111d994079", null, null, null, "全部数据" }, + { "d3984ed0-29d5-416e-87c6-75364010677b", "1", null, null, null, 0ul, "系统权重", 100, 0, "b3235678-f7fe-442b-8fba-e792a89b78f2", null, null, null, "系统权重" }, + { "375362c8-d694-40d9-8c55-07669e472460", "3", null, null, null, 0ul, "本部门数据", 100, 0, "a2068ed1-62a6-463c-b720-06111d994079", null, null, null, "本部门数据" }, + { "70afe4c1-3495-483a-bdd0-3d4ea45136b3", "4", null, null, null, 0ul, "仅本人数据", 100, 0, "a2068ed1-62a6-463c-b720-06111d994079", null, null, null, "仅本人数据" }, + { "6f395e69-8add-40ae-a378-0881d64a4413", "5", null, null, null, 0ul, "自定义数据", 100, 0, "a2068ed1-62a6-463c-b720-06111d994079", null, null, null, "自定义数据" }, + { "a819d549-6107-43a2-99d2-377cf0a5681a", "1", null, null, null, 0ul, "app", 100, 0, "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", null, null, null, "app" }, + { "d0b25877-165e-41b8-9034-7a8fea7e5776", "2", null, null, null, 0ul, "本部门及以下数据", 100, 0, "a2068ed1-62a6-463c-b720-06111d994079", null, null, null, "本部门及以下数据" } + }); + + migrationBuilder.InsertData( + table: "sys_emp_ext_org_pos", + columns: new[] { "SysEmpId", "SysOrgId", "SysPosId" }, + values: new object[,] + { + { "d0ead3dc-5096-4e15-bc6d-f640be5301ec", "12d888de-f55d-4c88-b0a0-7c3510664d97", "269236c4-d74e-4e54-9d50-f6f61580a197" }, + { "16a74726-e156-499f-9942-0e0e24ad0c3f", "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", "269236c4-d74e-4e54-9d50-f6f61580a197" }, + { "d0ead3dc-5096-4e15-bc6d-f640be5301ec", "8a2271d6-5bda-4544-bdd3-27e53a8b418e", "46c68a62-f119-4ff7-b621-0bbd77504538" }, + { "d0ead3dc-5096-4e15-bc6d-f640be5301ec", "127c0a5d-43ac-4370-b313-082361885aca", "5bd8c466-2bca-4386-a551-daac78e3cee8" }, + { "d0ead3dc-5096-4e15-bc6d-f640be5301ec", "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", "d89a3afe-e6ba-4018-bdae-3c98bb47ad66" } + }); + + migrationBuilder.InsertData( + table: "sys_emp_pos", + columns: new[] { "SysEmpId", "SysPosId" }, + values: new object[,] + { + { "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", "5bd8c466-2bca-4386-a551-daac78e3cee8" }, + { "d0ead3dc-5096-4e15-bc6d-f640be5301ec", "269236c4-d74e-4e54-9d50-f6f61580a197" }, + { "16a74726-e156-499f-9942-0e0e24ad0c3f", "269236c4-d74e-4e54-9d50-f6f61580a197" }, + { "d0ead3dc-5096-4e15-bc6d-f640be5301ec", "46c68a62-f119-4ff7-b621-0bbd77504538" } + }); + + migrationBuilder.CreateIndex( + name: "IX_sys_dict_data_TypeId", + table: "sys_dict_data", + column: "TypeId"); + + migrationBuilder.CreateIndex( + name: "IX_sys_emp_ext_org_pos_SysOrgId", + table: "sys_emp_ext_org_pos", + column: "SysOrgId"); + + migrationBuilder.CreateIndex( + name: "IX_sys_emp_ext_org_pos_SysPosId", + table: "sys_emp_ext_org_pos", + column: "SysPosId"); + + migrationBuilder.CreateIndex( + name: "IX_sys_emp_pos_SysPosId", + table: "sys_emp_pos", + column: "SysPosId"); + + migrationBuilder.CreateIndex( + name: "IX_sys_role_data_scope_SysOrgId", + table: "sys_role_data_scope", + column: "SysOrgId"); + + migrationBuilder.CreateIndex( + name: "IX_sys_role_menu_SysMenuId", + table: "sys_role_menu", + column: "SysMenuId"); + + migrationBuilder.CreateIndex( + name: "IX_sys_user_data_scope_SysOrgId", + table: "sys_user_data_scope", + column: "SysOrgId"); + + migrationBuilder.CreateIndex( + name: "IX_sys_user_role_SysRoleId", + table: "sys_user_role", + column: "SysRoleId"); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "code_gen_test"); + + migrationBuilder.DropTable( + name: "sys_app"); + + migrationBuilder.DropTable( + name: "sys_code_gen"); + + migrationBuilder.DropTable( + name: "sys_code_gen_config"); + + migrationBuilder.DropTable( + name: "sys_config"); + + migrationBuilder.DropTable( + name: "sys_dict_data"); + + migrationBuilder.DropTable( + name: "sys_emp_ext_org_pos"); + + migrationBuilder.DropTable( + name: "sys_emp_pos"); + + migrationBuilder.DropTable( + name: "sys_file"); + + migrationBuilder.DropTable( + name: "sys_log_audit"); + + migrationBuilder.DropTable( + name: "sys_log_op"); + + migrationBuilder.DropTable( + name: "sys_log_vis"); + + migrationBuilder.DropTable( + name: "sys_notice"); + + migrationBuilder.DropTable( + name: "sys_notice_user"); + + migrationBuilder.DropTable( + name: "sys_oauth_user"); + + migrationBuilder.DropTable( + name: "sys_role_data_scope"); + + migrationBuilder.DropTable( + name: "sys_role_menu"); + + migrationBuilder.DropTable( + name: "sys_tenant"); + + migrationBuilder.DropTable( + name: "sys_timer"); + + migrationBuilder.DropTable( + name: "sys_user_data_scope"); + + migrationBuilder.DropTable( + name: "sys_user_role"); + + migrationBuilder.DropTable( + name: "sys_dict_type"); + + migrationBuilder.DropTable( + name: "sys_emp"); + + migrationBuilder.DropTable( + name: "sys_pos"); + + migrationBuilder.DropTable( + name: "sys_menu"); + + migrationBuilder.DropTable( + name: "sys_org"); + + migrationBuilder.DropTable( + name: "sys_role"); + + migrationBuilder.DropTable( + name: "sys_user"); + } + } +} diff --git a/Api/Ewide.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs b/Api/Ewide.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs index 63ff9e4..cf9e873 100644 --- a/Api/Ewide.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs +++ b/Api/Ewide.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs @@ -19,8 +19,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Application.CodeGenTest", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Age") @@ -28,15 +29,16 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("年龄"); b.Property("Birthday") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("生日"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -44,8 +46,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("创建者名称"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -57,11 +60,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("昵称"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -79,12 +83,14 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysApp", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); - b.Property("Active") - .HasColumnType("longtext CHARACTER SET utf8mb4") + b.Property("Active") + .HasColumnType("bit") + .HasColumnName("Active") .HasComment("是否默认激活"); b.Property("Code") @@ -96,11 +102,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("图标颜色"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -112,8 +119,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("图标"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -129,11 +137,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("状态"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -151,40 +160,40 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070922869L, - Active = "N", + Id = "8b2aeb5e-09a6-4afd-bcae-8ee8e5a1e6ec", + Active = 0ul, Code = "busapp", - IsDeleted = false, + IsDeleted = 0ul, Name = "业务应用", Sort = 100, Status = 0 }, new { - Id = 142307070898245L, - Active = "Y", + Id = "d781b8f1-0d08-48c8-b7a5-ed75ddfa676c", + Active = 1ul, Code = "system", - IsDeleted = false, + IsDeleted = 0ul, Name = "系统管理", Sort = 100, Status = 0 }, new { - Id = 142307070902341L, - Active = "N", + Id = "850ab86f-cd6a-4d49-b920-77dfa5d78813", + Active = 0ul, Code = "system_tool", - IsDeleted = false, + IsDeleted = 0ul, Name = "系统工具", Sort = 100, Status = 0 }, new { - Id = 142307070922826L, - Active = "N", + Id = "05a32be5-82e8-423f-affa-e17232a63ee1", + Active = 0ul, Code = "advanced", - IsDeleted = false, + IsDeleted = 0ul, Name = "高级功能", Sort = 100, Status = 0 @@ -193,8 +202,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysCodeGen", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("AuthorName") @@ -206,11 +216,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("业务名"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -222,8 +233,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("生成方式"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("NameSpace") @@ -239,11 +251,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("是否移除表前缀"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -261,12 +274,14 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysCodeGenConfig", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); - b.Property("CodeGenId") - .HasColumnType("bigint") + b.Property("CodeGenId") + .HasColumnType("varchar(36)") + .HasColumnName("CodeGenId") .HasComment("代码生成主表ID"); b.Property("ColumnComment") @@ -282,11 +297,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("数据库字段名"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -306,8 +322,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("作用类型"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("NetType") @@ -323,11 +340,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("是否是查询条件"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -365,8 +383,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysConfig", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Code") @@ -374,11 +393,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("编码"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -390,8 +410,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("常量所属分类的编码"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -411,11 +432,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("是否是系统参数"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -437,10 +459,10 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070902342L, + Id = "7c2765cd-d39b-4772-8d6c-0dbcdcfa1ff8", Code = "DILON_JWT_SECRET", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "jwt密钥", Remark = "(重要)jwt密钥,默认为空,自行设置", Status = 0, @@ -449,10 +471,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902343L, + Id = "e3553657-14cf-4c26-ba7b-dbb4bfd4bc55", Code = "DILON_DEFAULT_PASSWORD", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "默认密码", Remark = "默认密码", Status = 0, @@ -461,10 +483,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902344L, + Id = "2c677cd2-2a54-46c6-971d-f9fe20f101f3", Code = "DILON_TOKEN_EXPIRE", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "token过期时间", Remark = "token过期时间(单位:秒)", Status = 0, @@ -473,10 +495,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902345L, + Id = "8938506d-2e00-44e0-8592-48453d43f9f5", Code = "DILON_SESSION_EXPIRE", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "session会话过期时间", Remark = "session会话过期时间(单位:秒)", Status = 0, @@ -485,10 +507,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902346L, + Id = "beb2e9e7-f4d9-43b1-bfab-3557ea232f8d", Code = "DILON_ALIYUN_SMS_ACCESSKEY_ID", GroupCode = "ALIYUN_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云短信keyId", Remark = "阿里云短信keyId", Status = 0, @@ -497,10 +519,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902347L, + Id = "ead14cd0-9fd4-4fd6-b75c-239d8b2ebed8", Code = "DILON_ALIYUN_SMS_ACCESSKEY_SECRET", GroupCode = "ALIYUN_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云短信secret", Remark = "阿里云短信secret", Status = 0, @@ -509,10 +531,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902348L, + Id = "beaaafc2-3fdf-42af-9b06-ead3a6dd6306", Code = "DILON_ALIYUN_SMS_SIGN_NAME", GroupCode = "ALIYUN_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云短信签名", Remark = "阿里云短信签名", Status = 0, @@ -521,10 +543,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902349L, + Id = "e26a10cf-911a-4fe0-a113-76965be749a0", Code = "DILON_ALIYUN_SMS_LOGIN_TEMPLATE_CODE", GroupCode = "ALIYUN_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云短信-登录模板号", Remark = "阿里云短信-登录模板号", Status = 0, @@ -533,10 +555,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902350L, + Id = "24d3f286-efca-49af-91b4-e3ce42cce36e", Code = "DILON_ALIYUN_SMS_INVALIDATE_MINUTES", GroupCode = "ALIYUN_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云短信默认失效时间", Remark = "阿里云短信默认失效时间(单位:分钟)", Status = 0, @@ -545,10 +567,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902351L, + Id = "c6540a07-ce32-47b4-ab83-b647bdb14491", Code = "DILON_TENCENT_SMS_SECRET_ID", GroupCode = "TENCENT_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "腾讯云短信secretId", Remark = "腾讯云短信secretId", Status = 0, @@ -557,10 +579,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902352L, + Id = "a0412212-d50b-42aa-9484-3cef8fe3cc59", Code = "DILON_TENCENT_SMS_SECRET_KEY", GroupCode = "TENCENT_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "腾讯云短信secretKey", Remark = "腾讯云短信secretKey", Status = 0, @@ -569,10 +591,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902353L, + Id = "c928ca11-5137-4b71-bf1c-f3bc95bcd34d", Code = "DILON_TENCENT_SMS_SDK_APP_ID", GroupCode = "TENCENT_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "腾讯云短信sdkAppId", Remark = "腾讯云短信sdkAppId", Status = 0, @@ -581,10 +603,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902354L, + Id = "16ce1b6e-c8ad-4299-9293-6caff0e5cb49", Code = "DILON_TENCENT_SMS_SIGN", GroupCode = "TENCENT_SMS", - IsDeleted = false, + IsDeleted = 0ul, Name = "腾讯云短信签名", Remark = "腾讯云短信签名", Status = 0, @@ -593,10 +615,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902355L, + Id = "66e63d64-b7eb-4e6a-b5b6-c87811c2e700", Code = "DILON_EMAIL_HOST", GroupCode = "EMAIL", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮箱host", Remark = "邮箱host", Status = 0, @@ -605,10 +627,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902356L, + Id = "997a9bc6-22ed-4fe6-a20c-c3c2a0b682a0", Code = "DILON_EMAIL_USERNAME", GroupCode = "EMAIL", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮箱用户名", Remark = "邮箱用户名", Status = 0, @@ -617,10 +639,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902357L, + Id = "633d1851-41d9-4ebd-b83b-3aa4501cd1a7", Code = "DILON_EMAIL_PASSWORD", GroupCode = "EMAIL", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮箱密码", Remark = "邮箱密码", Status = 0, @@ -629,10 +651,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902358L, + Id = "67e468f7-e791-4e91-a896-62e9f7411635", Code = "DILON_EMAIL_PORT", GroupCode = "EMAIL", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮箱端口", Remark = "邮箱端口", Status = 0, @@ -641,10 +663,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902359L, + Id = "dc462c05-de23-4f90-bcdc-88de4abcdf22", Code = "DILON_EMAIL_SSL", GroupCode = "EMAIL", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮箱是否开启ssl", Remark = "邮箱是否开启ssl", Status = 0, @@ -653,10 +675,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902360L, + Id = "8beac2a0-4c67-4499-a7ce-27e989546ce9", Code = "DILON_EMAIL_FROM", GroupCode = "EMAIL", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮箱发件人", Remark = "邮箱发件人", Status = 0, @@ -665,10 +687,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902361L, + Id = "55756524-ecb8-444e-9cdd-a0fc767c4b96", Code = "DILON_FILE_UPLOAD_PATH_FOR_WINDOWS", GroupCode = "FILE_PATH", - IsDeleted = false, + IsDeleted = 0ul, Name = "Win本地上传文件路径", Remark = "Win本地上传文件路径", Status = 0, @@ -677,10 +699,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902362L, + Id = "d2db41ee-ce1f-46de-ac00-5860634afed9", Code = "DILON_FILE_UPLOAD_PATH_FOR_LINUX", GroupCode = "FILE_PATH", - IsDeleted = false, + IsDeleted = 0ul, Name = "Linux/Mac本地上传文件路径", Remark = "Linux/Mac本地上传文件路径", Status = 0, @@ -689,10 +711,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902363L, + Id = "ff8debdd-eca0-4f91-8213-e2080f76b35d", Code = "DILON_UN_XSS_FILTER_URL", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "放开XSS过滤的接口", Remark = "多个url可以用英文逗号隔开", Status = 0, @@ -701,10 +723,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902364L, + Id = "5584fb84-f580-463f-b06d-bbb80a4dfb72", Code = "DILON_ENABLE_SINGLE_LOGIN", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "单用户登陆的开关", Remark = "true-打开,false-关闭,如果一个人登录两次,就会将上一次登陆挤下去", Status = 0, @@ -713,10 +735,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902365L, + Id = "53b0afb2-4917-4b85-bcca-fe7c7723ae22", Code = "DILON_CAPTCHA_OPEN", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "登录验证码的开关", Remark = "true-打开,false-关闭", Status = 0, @@ -725,10 +747,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902366L, + Id = "974740d8-8647-4cf8-8102-542eea53e97f", Code = "DILON_DRUID_USERNAME", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "Druid监控登录账号", Remark = "Druid监控登录账号", Status = 0, @@ -737,10 +759,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902367L, + Id = "8cee44ea-ba4c-42db-a57d-69b8b5316ca5", Code = "DILON_DRUID_PASSWORD", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "Druid监控界面登录密码", Remark = "Druid监控界面登录密码", Status = 0, @@ -749,10 +771,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902368L, + Id = "efc235ab-9b05-4820-afe4-32a1eb59e4de", Code = "DILON_IP_GEO_API", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云定位api接口地址", Remark = "阿里云定位api接口地址", Status = 0, @@ -761,10 +783,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902369L, + Id = "d3597d8a-562a-4b24-93c7-8655c5445d74", Code = "DILON_IP_GEO_APP_CODE", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "阿里云定位appCode", Remark = "阿里云定位appCode", Status = 0, @@ -773,10 +795,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902370L, + Id = "59c8a6f2-9e3c-4e9e-b9cf-8ecad5f0cb45", Code = "DILON_ENABLE_OAUTH_LOGIN", GroupCode = "OAUTH", - IsDeleted = false, + IsDeleted = 0ul, Name = "Oauth用户登录的开关", Remark = "Oauth用户登录的开关", Status = 0, @@ -785,10 +807,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902371L, + Id = "ff502ee7-8129-4828-8d16-fb04562ef52c", Code = "DILON_OAUTH_GITEE_CLIENT_ID", GroupCode = "OAUTH", - IsDeleted = false, + IsDeleted = 0ul, Name = "Oauth码云登录ClientId", Remark = "Oauth码云登录ClientId", Status = 0, @@ -797,10 +819,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902372L, + Id = "a1d957ef-2b70-456f-8eda-b70a4cf01535", Code = "DILON_OAUTH_GITEE_CLIENT_SECRET", GroupCode = "OAUTH", - IsDeleted = false, + IsDeleted = 0ul, Name = "Oauth码云登录ClientSecret", Remark = "Oauth码云登录ClientSecret", Status = 0, @@ -809,10 +831,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902373L, + Id = "b32ee22b-671d-40bf-8070-32e1054fef96", Code = "DILON_OAUTH_GITEE_REDIRECT_URI", GroupCode = "OAUTH", - IsDeleted = false, + IsDeleted = 0ul, Name = "Oauth码云登录回调地址", Remark = "Oauth码云登录回调地址", Status = 0, @@ -821,10 +843,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070902374L, + Id = "38dda85c-2a98-4768-aebd-a60ab286052c", Code = "DILON_DEMO_ENV_FLAG", GroupCode = "DEFAULT", - IsDeleted = false, + IsDeleted = 0ul, Name = "演示环境", Remark = "演示环境的开关,true-打开,false-关闭,如果演示环境开启,则只能读数据不能写数据", Status = 0, @@ -835,8 +857,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysDictData", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Code") @@ -844,11 +867,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("编码"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -856,8 +880,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("创建者名称"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Remark") @@ -872,16 +897,18 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("int") .HasComment("状态"); - b.Property("TypeId") - .HasColumnType("bigint") + b.Property("TypeId") + .HasColumnType("varchar(36)") + .HasColumnName("TypeId") .HasComment("字典类型Id"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -905,1077 +932,1078 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070902375L, + Id = "99b965d3-1f2b-4f5b-a62a-6763b8d64a64", Code = "1", - IsDeleted = false, - Remark = "男性", - Sort = 100, - Status = 0, - TypeId = 142307070906484L, - Value = "男" - }, - new - { - Id = 142307070902376L, - Code = "2", - IsDeleted = false, - Remark = "女性", - Sort = 100, - Status = 0, - TypeId = 142307070906484L, - Value = "女" - }, - new - { - Id = 142307070902377L, - Code = "3", - IsDeleted = false, - Remark = "未知性别", - Sort = 100, - Status = 0, - TypeId = 142307070906484L, - Value = "未知" - }, - new - { - Id = 142307070902378L, - Code = "DEFAULT", - IsDeleted = false, - Remark = "默认常量,都以XIAONUO_开头的", - Sort = 100, - Status = 0, - TypeId = 142307070906485L, - Value = "默认常量" - }, - new - { - Id = 142307070902379L, - Code = "ALIYUN_SMS", - IsDeleted = false, - Remark = "阿里云短信配置", - Sort = 100, - Status = 0, - TypeId = 142307070906485L, - Value = "阿里云短信" - }, - new - { - Id = 142307070902380L, - Code = "TENCENT_SMS", - IsDeleted = false, - Remark = "腾讯云短信", - Sort = 100, - Status = 0, - TypeId = 142307070906485L, - Value = "腾讯云短信" - }, - new - { - Id = 142307070902381L, - Code = "EMAIL", - IsDeleted = false, - Remark = "邮件配置", - Sort = 100, - Status = 0, - TypeId = 142307070906485L, - Value = "邮件配置" - }, - new - { - Id = 142307070902382L, - Code = "FILE_PATH", - IsDeleted = false, - Remark = "文件上传路径", - Sort = 100, - Status = 0, - TypeId = 142307070906485L, - Value = "文件上传路径" - }, - new - { - Id = 142307070902383L, - Code = "OAUTH", - IsDeleted = false, - Remark = "Oauth配置", - Sort = 100, - Status = 0, - TypeId = 142307070906485L, - Value = "Oauth配置" - }, - new - { - Id = 142307070902384L, - Code = "0", - IsDeleted = false, - Remark = "正常", - Sort = 100, - Status = 0, - TypeId = 142307070906483L, - Value = "正常" - }, - new - { - Id = 142307070902385L, - Code = "1", - IsDeleted = false, - Remark = "停用", - Sort = 100, - Status = 0, - TypeId = 142307070906483L, - Value = "停用" - }, - new - { - Id = 142307070902386L, - Code = "2", - IsDeleted = false, - Remark = "删除", - Sort = 100, - Status = 0, - TypeId = 142307070906483L, - Value = "删除" - }, - new - { - Id = 142307070902387L, - Code = "N", - IsDeleted = false, - Remark = "否", - Sort = 100, - Status = 0, - TypeId = 142307070906486L, - Value = "否" - }, - new - { - Id = 142307070902388L, - Code = "Y", - IsDeleted = false, - Remark = "是", - Sort = 100, - Status = 0, - TypeId = 142307070906486L, - Value = "是" - }, - new - { - Id = 142307070902389L, - Code = "1", - IsDeleted = false, - Remark = "登录", - Sort = 100, - Status = 0, - TypeId = 142307070906487L, - Value = "登录" - }, - new - { - Id = 142307070902390L, - Code = "2", - IsDeleted = false, - Remark = "登出", - Sort = 100, - Status = 0, - TypeId = 142307070906487L, - Value = "登出" - }, - new - { - Id = 142307070902391L, - Code = "0", - IsDeleted = false, - Remark = "目录", - Sort = 100, - Status = 0, - TypeId = 142307070906488L, - Value = "目录" - }, - new - { - Id = 142307070902392L, - Code = "1", - IsDeleted = false, - Remark = "菜单", - Sort = 100, - Status = 0, - TypeId = 142307070906488L, - Value = "菜单" - }, - new - { - Id = 142307070902393L, - Code = "2", - IsDeleted = false, - Remark = "按钮", - Sort = 100, - Status = 0, - TypeId = 142307070906488L, - Value = "按钮" - }, - new - { - Id = 142307070902394L, - Code = "0", - IsDeleted = false, - Remark = "未发送", - Sort = 100, - Status = 0, - TypeId = 142307070906489L, - Value = "未发送" - }, - new - { - Id = 142307070902395L, - Code = "1", - IsDeleted = false, - Remark = "发送成功", - Sort = 100, - Status = 0, - TypeId = 142307070906489L, - Value = "发送成功" - }, - new - { - Id = 142307070902396L, - Code = "2", - IsDeleted = false, - Remark = "发送失败", - Sort = 100, - Status = 0, - TypeId = 142307070906489L, - Value = "发送失败" - }, - new - { - Id = 142307070902397L, - Code = "3", - IsDeleted = false, - Remark = "失效", - Sort = 100, - Status = 0, - TypeId = 142307070906489L, - Value = "失效" - }, - new - { - Id = 142307070902398L, - Code = "0", - IsDeleted = false, - Remark = "无", - Sort = 100, - Status = 0, - TypeId = 142307070906490L, - Value = "无" - }, - new - { - Id = 142307070902399L, - Code = "1", - IsDeleted = false, - Remark = "组件", - Sort = 100, - Status = 0, - TypeId = 142307070906490L, - Value = "组件" - }, - new - { - Id = 142307070906437L, - Code = "2", - IsDeleted = false, - Remark = "内链", - Sort = 100, - Status = 0, - TypeId = 142307070906490L, - Value = "内链" - }, - new - { - Id = 142307070906438L, - Code = "3", - IsDeleted = false, - Remark = "外链", - Sort = 100, - Status = 0, - TypeId = 142307070906490L, - Value = "外链" - }, - new - { - Id = 142307070906439L, - Code = "1", - IsDeleted = false, - Remark = "系统权重", - Sort = 100, - Status = 0, - TypeId = 142307070906491L, - Value = "系统权重" - }, - new - { - Id = 142307070906440L, - Code = "2", - IsDeleted = false, - Remark = "业务权重", - Sort = 100, - Status = 0, - TypeId = 142307070906491L, - Value = "业务权重" - }, - new - { - Id = 142307070906441L, - Code = "1", - IsDeleted = false, - Remark = "全部数据", - Sort = 100, - Status = 0, - TypeId = 142307070906492L, - Value = "全部数据" - }, - new - { - Id = 142307070906442L, - Code = "2", - IsDeleted = false, - Remark = "本部门及以下数据", - Sort = 100, - Status = 0, - TypeId = 142307070906492L, - Value = "本部门及以下数据" - }, - new - { - Id = 142307070906443L, - Code = "3", - IsDeleted = false, - Remark = "本部门数据", - Sort = 100, - Status = 0, - TypeId = 142307070906492L, - Value = "本部门数据" - }, - new - { - Id = 142307070906444L, - Code = "4", - IsDeleted = false, - Remark = "仅本人数据", - Sort = 100, - Status = 0, - TypeId = 142307070906492L, - Value = "仅本人数据" - }, - new - { - Id = 142307070906445L, - Code = "5", - IsDeleted = false, - Remark = "自定义数据", - Sort = 100, - Status = 0, - TypeId = 142307070906492L, - Value = "自定义数据" - }, - new - { - Id = 142307070906446L, - Code = "1", - IsDeleted = false, - Remark = "app", - Sort = 100, - Status = 0, - TypeId = 142307070906493L, - Value = "app" - }, - new - { - Id = 142307070906447L, - Code = "2", - IsDeleted = false, - Remark = "pc", - Sort = 100, - Status = 0, - TypeId = 142307070906493L, - Value = "pc" - }, - new - { - Id = 142307070906448L, - Code = "3", - IsDeleted = false, - Remark = "其他", - Sort = 100, - Status = 0, - TypeId = 142307070906493L, - Value = "其他" - }, - new - { - Id = 142307070906449L, - Code = "0", - IsDeleted = false, - Remark = "其它", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "其它" - }, - new - { - Id = 142307070906450L, - Code = "1", - IsDeleted = false, - Remark = "增加", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "增加" - }, - new - { - Id = 142307070906451L, - Code = "2", - IsDeleted = false, - Remark = "删除", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "删除" - }, - new - { - Id = 142307070906452L, - Code = "3", - IsDeleted = false, - Remark = "编辑", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "编辑" - }, - new - { - Id = 142307070906453L, - Code = "4", - IsDeleted = false, - Remark = "更新", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "更新" - }, - new - { - Id = 142307070906454L, - Code = "5", - IsDeleted = false, - Remark = "查询", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "查询" - }, - new - { - Id = 142307070906455L, - Code = "6", - IsDeleted = false, - Remark = "详情", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "详情" - }, - new - { - Id = 142307070906456L, - Code = "7", - IsDeleted = false, - Remark = "树", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "树" - }, - new - { - Id = 142307070906457L, - Code = "8", - IsDeleted = false, - Remark = "导入", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "导入" - }, - new - { - Id = 142307070906458L, - Code = "9", - IsDeleted = false, - Remark = "导出", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "导出" - }, - new - { - Id = 142307070906459L, - Code = "10", - IsDeleted = false, - Remark = "授权", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "授权" - }, - new - { - Id = 142307070906460L, - Code = "11", - IsDeleted = false, - Remark = "强退", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "强退" - }, - new - { - Id = 142307070906461L, - Code = "12", - IsDeleted = false, - Remark = "清空", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "清空" - }, - new - { - Id = 142307070906462L, - Code = "13", - IsDeleted = false, - Remark = "修改状态", - Sort = 100, - Status = 0, - TypeId = 142307070906494L, - Value = "修改状态" - }, - new - { - Id = 142307070906463L, - Code = "1", - IsDeleted = false, - Remark = "阿里云", - Sort = 100, - Status = 0, - TypeId = 142307070906495L, - Value = "阿里云" - }, - new - { - Id = 142307070906464L, - Code = "2", - IsDeleted = false, - Remark = "腾讯云", - Sort = 100, - Status = 0, - TypeId = 142307070906495L, - Value = "腾讯云" - }, - new - { - Id = 142307070906465L, - Code = "3", - IsDeleted = false, - Remark = "minio", - Sort = 100, - Status = 0, - TypeId = 142307070906495L, - Value = "minio" - }, - new - { - Id = 142307070906466L, - Code = "4", - IsDeleted = false, - Remark = "本地", - Sort = 100, - Status = 0, - TypeId = 142307070906495L, - Value = "本地" - }, - new - { - Id = 142307070906467L, - Code = "1", - IsDeleted = false, - Remark = "运行", - Sort = 100, - Status = 0, - TypeId = 142307070910533L, - Value = "运行" - }, - new - { - Id = 142307070906468L, - Code = "2", - IsDeleted = false, - Remark = "停止", - Sort = 100, - Status = 0, - TypeId = 142307070910533L, - Value = "停止" - }, - new - { - Id = 142307070906469L, - Code = "1", - IsDeleted = false, + IsDeleted = 0ul, Remark = "通知", Sort = 100, Status = 0, - TypeId = 142307070910534L, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", Value = "通知" }, new { - Id = 142307070906470L, + Id = "2616e6c2-a504-4fc6-993e-72701b48e79a", Code = "2", - IsDeleted = false, + IsDeleted = 0ul, Remark = "公告", Sort = 100, Status = 0, - TypeId = 142307070910534L, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", Value = "公告" }, new { - Id = 142307070906471L, + Id = "40d336cd-918a-4e90-8836-cba7c1bf6cdf", Code = "0", - IsDeleted = false, + IsDeleted = 0ul, Remark = "草稿", Sort = 100, Status = 0, - TypeId = 142307070910535L, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", Value = "草稿" }, new { - Id = 142307070906472L, + Id = "f5b49fa9-31a1-44c2-9df0-b28bf5daeee0", Code = "1", - IsDeleted = false, + IsDeleted = 0ul, Remark = "发布", Sort = 100, Status = 0, - TypeId = 142307070910535L, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", Value = "发布" }, new { - Id = 142307070906473L, + Id = "d2f73bb4-05a1-4aa5-9273-e9f3c393996d", Code = "2", - IsDeleted = false, + IsDeleted = 0ul, Remark = "撤回", Sort = 100, Status = 0, - TypeId = 142307070910535L, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", Value = "撤回" }, new { - Id = 142307070906474L, + Id = "6385916f-6ead-470e-889b-cfb9d2da6256", Code = "3", - IsDeleted = false, + IsDeleted = 0ul, Remark = "删除", Sort = 100, Status = 0, - TypeId = 142307070910535L, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", Value = "删除" }, new { - Id = 142307070906475L, + Id = "1f432e9d-f031-4787-a527-f37bb20ebe3a", Code = "true", - IsDeleted = false, + IsDeleted = 0ul, Remark = "是", Sort = 100, Status = 0, - TypeId = 142307070910536L, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", Value = "是" }, new { - Id = 142307070906476L, + Id = "0724636d-e870-46c6-8e1e-67f1ea5f58e5", Code = "false", - IsDeleted = false, + IsDeleted = 0ul, Remark = "否", Sort = 100, Status = 0, - TypeId = 142307070910536L, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", Value = "否" }, new { - Id = 142307070906477L, + Id = "881ebcf2-94a6-4938-81a4-55b81736f3b3", Code = "1", - IsDeleted = false, + IsDeleted = 0ul, Remark = "下载压缩包", Sort = 100, Status = 0, - TypeId = 142307070910537L, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", Value = "下载压缩包" }, new { - Id = 142307070906478L, + Id = "5bc8662d-b795-48f1-a88e-2f4be5279d37", Code = "2", - IsDeleted = false, + IsDeleted = 0ul, Remark = "生成到本项目", Sort = 100, Status = 0, - TypeId = 142307070910537L, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", Value = "生成到本项目" }, new { - Id = 142307070906479L, + Id = "b2a00b40-23e1-40e1-8995-60ab420eafe1", Code = "1", - IsDeleted = false, + IsDeleted = 0ul, Remark = "GET", Sort = 100, Status = 0, - TypeId = 142307070910538L, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", Value = "GET" }, new { - Id = 142307070906480L, + Id = "10070836-0c89-4b89-96e3-c65c7e33a86c", Code = "2", - IsDeleted = false, + IsDeleted = 0ul, Remark = "POST", Sort = 100, Status = 0, - TypeId = 142307070910538L, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", Value = "POST" }, new { - Id = 142307070906481L, + Id = "69a34c0b-85ce-4e53-9ad4-a592057dddd4", Code = "3", - IsDeleted = false, + IsDeleted = 0ul, Remark = "PUT", Sort = 100, Status = 0, - TypeId = 142307070910538L, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", Value = "PUT" }, new { - Id = 142307070906482L, + Id = "0e4dc1f1-8654-401b-800a-22b31f62ced1", Code = "4", - IsDeleted = false, + IsDeleted = 0ul, Remark = "DELETE", Sort = 100, Status = 0, - TypeId = 142307070910538L, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", Value = "DELETE" }, new { - Id = 142307070922830L, + Id = "443f965e-96b4-4fd2-93e9-07fe00a47205", Code = "input", - IsDeleted = false, + IsDeleted = 0ul, Remark = "输入框", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "输入框" }, new { - Id = 142307070922831L, + Id = "bf7be9a2-53fb-4250-87fe-49d7f741d159", Code = "datepicker", - IsDeleted = false, + IsDeleted = 0ul, Remark = "时间选择", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "时间选择" }, new { - Id = 142307070922832L, + Id = "cea10919-47e2-43ab-a19b-9d41fe648310", Code = "select", - IsDeleted = false, + IsDeleted = 0ul, Remark = "下拉框", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "下拉框" }, new { - Id = 142307070922833L, + Id = "7d534f44-cf66-472e-b0d3-20a4cc2ad432", Code = "radio", - IsDeleted = false, + IsDeleted = 0ul, Remark = "单选框", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "单选框" }, new { - Id = 142307070922834L, + Id = "d63b06d4-be11-4ab7-9905-87f6f2ca056f", Code = "switch", - IsDeleted = false, + IsDeleted = 0ul, Remark = "开关", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "开关" }, new { - Id = 142307070922835L, + Id = "46967f62-bac9-47fd-9278-b29c047b0c38", Code = "checkbox", - IsDeleted = false, + IsDeleted = 0ul, Remark = "多选框", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "多选框" }, new { - Id = 142307070922836L, + Id = "a8ac5009-93d3-4405-a6b9-81ed3e2811f2", Code = "inputnumber", - IsDeleted = false, + IsDeleted = 0ul, Remark = "数字输入框", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "数字输入框" }, new { - Id = 142307070922837L, + Id = "d00b3efa-2f9d-464c-8134-aa7013ef52bb", Code = "textarea", - IsDeleted = false, + IsDeleted = 0ul, Remark = "文本域", Sort = 100, Status = 0, - TypeId = 142307070922827L, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Value = "文本域" }, new { - Id = 142307070922838L, + Id = "ad759239-e34e-4fdf-a0d0-6b39eb41f880", Code = "==", - IsDeleted = false, + IsDeleted = 0ul, Remark = "等于", Sort = 1, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "等于" }, new { - Id = 142307070922839L, + Id = "2c8e1240-f3ef-4df1-bd68-3047109ad5b4", Code = "like", - IsDeleted = false, + IsDeleted = 0ul, Remark = "模糊", Sort = 2, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "模糊" }, new { - Id = 142307070922840L, + Id = "efc18513-c17b-4fc1-8e0e-2e79fb9b0107", Code = ">", - IsDeleted = false, + IsDeleted = 0ul, Remark = "大于", Sort = 3, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "大于" }, new { - Id = 142307070922841L, + Id = "a6812d98-7785-4db2-b2f8-d476a459c5ed", Code = "<", - IsDeleted = false, + IsDeleted = 0ul, Remark = "小于", Sort = 4, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "小于" }, new { - Id = 142307070922842L, + Id = "218b5bac-343e-4594-a9da-30e391c7735c", Code = "!=", - IsDeleted = false, + IsDeleted = 0ul, Remark = "不等于", Sort = 5, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "不等于" }, new { - Id = 142307070922843L, + Id = "4825f15d-077b-4c16-8ee7-0205d653e14d", Code = ">=", - IsDeleted = false, + IsDeleted = 0ul, Remark = "大于等于", Sort = 6, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "大于等于" }, new { - Id = 142307070922844L, + Id = "7c9e8270-db5a-45b7-acd7-f95c8ee31547", Code = "<=", - IsDeleted = false, + IsDeleted = 0ul, Remark = "小于等于", Sort = 7, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "小于等于" }, new { - Id = 142307070922845L, + Id = "759ea7de-a18f-4ed7-9032-bbd1a4dadc9e", Code = "isNotNull", - IsDeleted = false, + IsDeleted = 0ul, Remark = "不为空", Sort = 8, Status = 0, - TypeId = 142307070922828L, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Value = "不为空" }, new { - Id = 142307070922851L, + Id = "a5cdf75e-6361-490d-a043-f5929ccf65a9", Code = "int", - IsDeleted = false, + IsDeleted = 0ul, Remark = "int", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "int" }, new { - Id = 142307070922846L, + Id = "cffdd4b5-d4e0-4196-81b9-02045de8b189", Code = "long", - IsDeleted = false, + IsDeleted = 0ul, Remark = "long", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "long" }, new { - Id = 142307070922847L, + Id = "25be90ea-b439-4e9d-993c-48a5ce3b9358", Code = "string", - IsDeleted = false, + IsDeleted = 0ul, Remark = "string", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "string" }, new { - Id = 142307070922850L, + Id = "496eef62-3849-4263-b274-a3e6090942e3", Code = "bool", - IsDeleted = false, + IsDeleted = 0ul, Remark = "bool", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "bool" }, new { - Id = 142307070922852L, + Id = "681c02ea-7570-4a97-85a7-957a77314df6", Code = "double", - IsDeleted = false, + IsDeleted = 0ul, Remark = "double", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "double" }, new { - Id = 142307070922848L, + Id = "259698cf-b25d-427a-8d22-33b9c1899eea", Code = "DateTime", - IsDeleted = false, + IsDeleted = 0ul, Remark = "DateTime", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "DateTime" }, new { - Id = 142307070922861L, + Id = "a30c682e-744a-468d-a74f-827928c96c01", Code = "float", - IsDeleted = false, + IsDeleted = 0ul, Remark = "float", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "float" }, new { - Id = 142307070922862L, + Id = "4b68cb83-f173-4864-bd10-a7a7d5248102", Code = "decimal", - IsDeleted = false, + IsDeleted = 0ul, Remark = "decimal", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "decimal" }, new { - Id = 142307070922863L, + Id = "134d4173-8d93-4c19-bf6b-a640d35da097", Code = "Guid", - IsDeleted = false, + IsDeleted = 0ul, Remark = "Guid", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "Guid" }, new { - Id = 142307070922864L, + Id = "c597306f-5fd0-4f75-9a46-12de340cd199", Code = "DateTimeOffset", - IsDeleted = false, + IsDeleted = 0ul, Remark = "DateTimeOffset", Sort = 100, Status = 0, - TypeId = 142307070922829L, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", Value = "DateTimeOffset" + }, + new + { + Id = "9b44b297-f6f0-4c31-b680-83baabf4c5b7", + Code = "1", + IsDeleted = 0ul, + Remark = "男性", + Sort = 100, + Status = 0, + TypeId = "301ed120-dfc5-4d7c-af59-b56a519581c9", + Value = "男" + }, + new + { + Id = "46ba4c21-cbde-4561-8e57-19ed0f752c17", + Code = "2", + IsDeleted = 0ul, + Remark = "女性", + Sort = 100, + Status = 0, + TypeId = "301ed120-dfc5-4d7c-af59-b56a519581c9", + Value = "女" + }, + new + { + Id = "150e04a6-3bf5-4604-98d5-14fbd1608bc5", + Code = "3", + IsDeleted = 0ul, + Remark = "未知性别", + Sort = 100, + Status = 0, + TypeId = "301ed120-dfc5-4d7c-af59-b56a519581c9", + Value = "未知" + }, + new + { + Id = "b6ad194b-ccfb-4ee7-b402-7b78e8bb8680", + Code = "DEFAULT", + IsDeleted = 0ul, + Remark = "默认常量,都以XIAONUO_开头的", + Sort = 100, + Status = 0, + TypeId = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Value = "默认常量" + }, + new + { + Id = "e2271e0a-17a3-41f3-81fa-dbe895ce0466", + Code = "ALIYUN_SMS", + IsDeleted = 0ul, + Remark = "阿里云短信配置", + Sort = 100, + Status = 0, + TypeId = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Value = "阿里云短信" + }, + new + { + Id = "5e61f455-1975-438b-bd17-85a1f89abe84", + Code = "TENCENT_SMS", + IsDeleted = 0ul, + Remark = "腾讯云短信", + Sort = 100, + Status = 0, + TypeId = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Value = "腾讯云短信" + }, + new + { + Id = "9cba05e7-495a-43fb-b86b-fa459da5b04d", + Code = "EMAIL", + IsDeleted = 0ul, + Remark = "邮件配置", + Sort = 100, + Status = 0, + TypeId = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Value = "邮件配置" + }, + new + { + Id = "81d87a9c-a4ee-46dc-be69-71dcccb14d9d", + Code = "FILE_PATH", + IsDeleted = 0ul, + Remark = "文件上传路径", + Sort = 100, + Status = 0, + TypeId = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Value = "文件上传路径" + }, + new + { + Id = "fdf38fa8-3d1e-4a43-84bc-785c0a394160", + Code = "OAUTH", + IsDeleted = 0ul, + Remark = "Oauth配置", + Sort = 100, + Status = 0, + TypeId = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Value = "Oauth配置" + }, + new + { + Id = "e3c9ebce-bdae-45a3-92b1-fc2e35a23242", + Code = "0", + IsDeleted = 0ul, + Remark = "正常", + Sort = 100, + Status = 0, + TypeId = "b0cfa91c-1189-4f39-bc5a-f035885d0604", + Value = "正常" + }, + new + { + Id = "22492650-a92b-43f0-9954-3d3891ec6e45", + Code = "1", + IsDeleted = 0ul, + Remark = "停用", + Sort = 100, + Status = 0, + TypeId = "b0cfa91c-1189-4f39-bc5a-f035885d0604", + Value = "停用" + }, + new + { + Id = "297030a2-88d9-4646-b7c1-a17c9a8c0b98", + Code = "2", + IsDeleted = 0ul, + Remark = "删除", + Sort = 100, + Status = 0, + TypeId = "b0cfa91c-1189-4f39-bc5a-f035885d0604", + Value = "删除" + }, + new + { + Id = "1159fc34-ef51-4e0f-b55b-0220d2445a1e", + Code = "N", + IsDeleted = 0ul, + Remark = "否", + Sort = 100, + Status = 0, + TypeId = "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", + Value = "否" + }, + new + { + Id = "7d3115a8-938a-4d09-a2c9-21ad65b8b65a", + Code = "Y", + IsDeleted = 0ul, + Remark = "是", + Sort = 100, + Status = 0, + TypeId = "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", + Value = "是" + }, + new + { + Id = "8204daac-b2ea-41f6-ab52-ef299a05fd94", + Code = "1", + IsDeleted = 0ul, + Remark = "登录", + Sort = 100, + Status = 0, + TypeId = "2cecf329-cf95-44eb-a8d7-3fb77b13e093", + Value = "登录" + }, + new + { + Id = "934099f4-c1a6-4f63-8cff-a42356369dd9", + Code = "2", + IsDeleted = 0ul, + Remark = "登出", + Sort = 100, + Status = 0, + TypeId = "2cecf329-cf95-44eb-a8d7-3fb77b13e093", + Value = "登出" + }, + new + { + Id = "a8cd8263-4397-4d68-91db-d92330c67632", + Code = "0", + IsDeleted = 0ul, + Remark = "目录", + Sort = 100, + Status = 0, + TypeId = "e973d383-c28e-42e0-9e23-5f2bd592fef5", + Value = "目录" + }, + new + { + Id = "bb082602-57ea-4941-b68b-64460e7f63b6", + Code = "1", + IsDeleted = 0ul, + Remark = "菜单", + Sort = 100, + Status = 0, + TypeId = "e973d383-c28e-42e0-9e23-5f2bd592fef5", + Value = "菜单" + }, + new + { + Id = "a4cba529-769a-4309-add6-b15b25ebf05a", + Code = "2", + IsDeleted = 0ul, + Remark = "按钮", + Sort = 100, + Status = 0, + TypeId = "e973d383-c28e-42e0-9e23-5f2bd592fef5", + Value = "按钮" + }, + new + { + Id = "7ec98dee-8dc9-47fe-9276-f3312ed5dd24", + Code = "0", + IsDeleted = 0ul, + Remark = "未发送", + Sort = 100, + Status = 0, + TypeId = "058db370-3718-42c3-8ba7-095341b1fe13", + Value = "未发送" + }, + new + { + Id = "83cf4407-dbe1-4da2-883d-a3e16a780f37", + Code = "1", + IsDeleted = 0ul, + Remark = "发送成功", + Sort = 100, + Status = 0, + TypeId = "058db370-3718-42c3-8ba7-095341b1fe13", + Value = "发送成功" + }, + new + { + Id = "e1e71562-015e-466b-b98b-29f4b8966bce", + Code = "2", + IsDeleted = 0ul, + Remark = "发送失败", + Sort = 100, + Status = 0, + TypeId = "058db370-3718-42c3-8ba7-095341b1fe13", + Value = "发送失败" + }, + new + { + Id = "13e71f10-539b-4016-9acf-e3541c0f04db", + Code = "3", + IsDeleted = 0ul, + Remark = "失效", + Sort = 100, + Status = 0, + TypeId = "058db370-3718-42c3-8ba7-095341b1fe13", + Value = "失效" + }, + new + { + Id = "f965b257-b2ff-4a18-9084-6e805547e9e6", + Code = "0", + IsDeleted = 0ul, + Remark = "无", + Sort = 100, + Status = 0, + TypeId = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Value = "无" + }, + new + { + Id = "75c40b12-07d1-4828-9b6c-132f4bca194c", + Code = "1", + IsDeleted = 0ul, + Remark = "组件", + Sort = 100, + Status = 0, + TypeId = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Value = "组件" + }, + new + { + Id = "be3197fd-2fba-4e79-b252-793f05e51a21", + Code = "2", + IsDeleted = 0ul, + Remark = "内链", + Sort = 100, + Status = 0, + TypeId = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Value = "内链" + }, + new + { + Id = "2a10adc6-b286-4fad-9719-7e7321c7a93e", + Code = "3", + IsDeleted = 0ul, + Remark = "外链", + Sort = 100, + Status = 0, + TypeId = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Value = "外链" + }, + new + { + Id = "d3984ed0-29d5-416e-87c6-75364010677b", + Code = "1", + IsDeleted = 0ul, + Remark = "系统权重", + Sort = 100, + Status = 0, + TypeId = "b3235678-f7fe-442b-8fba-e792a89b78f2", + Value = "系统权重" + }, + new + { + Id = "f4771570-e4a5-416f-b82f-1e3082c35ee8", + Code = "2", + IsDeleted = 0ul, + Remark = "业务权重", + Sort = 100, + Status = 0, + TypeId = "b3235678-f7fe-442b-8fba-e792a89b78f2", + Value = "业务权重" + }, + new + { + Id = "a2d6bdfe-ee61-4425-94c9-7ece3de080fa", + Code = "1", + IsDeleted = 0ul, + Remark = "全部数据", + Sort = 100, + Status = 0, + TypeId = "a2068ed1-62a6-463c-b720-06111d994079", + Value = "全部数据" + }, + new + { + Id = "d0b25877-165e-41b8-9034-7a8fea7e5776", + Code = "2", + IsDeleted = 0ul, + Remark = "本部门及以下数据", + Sort = 100, + Status = 0, + TypeId = "a2068ed1-62a6-463c-b720-06111d994079", + Value = "本部门及以下数据" + }, + new + { + Id = "375362c8-d694-40d9-8c55-07669e472460", + Code = "3", + IsDeleted = 0ul, + Remark = "本部门数据", + Sort = 100, + Status = 0, + TypeId = "a2068ed1-62a6-463c-b720-06111d994079", + Value = "本部门数据" + }, + new + { + Id = "70afe4c1-3495-483a-bdd0-3d4ea45136b3", + Code = "4", + IsDeleted = 0ul, + Remark = "仅本人数据", + Sort = 100, + Status = 0, + TypeId = "a2068ed1-62a6-463c-b720-06111d994079", + Value = "仅本人数据" + }, + new + { + Id = "6f395e69-8add-40ae-a378-0881d64a4413", + Code = "5", + IsDeleted = 0ul, + Remark = "自定义数据", + Sort = 100, + Status = 0, + TypeId = "a2068ed1-62a6-463c-b720-06111d994079", + Value = "自定义数据" + }, + new + { + Id = "a819d549-6107-43a2-99d2-377cf0a5681a", + Code = "1", + IsDeleted = 0ul, + Remark = "app", + Sort = 100, + Status = 0, + TypeId = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", + Value = "app" + }, + new + { + Id = "b1e821b3-4e7b-4e60-a67f-a40d327ab6d6", + Code = "2", + IsDeleted = 0ul, + Remark = "pc", + Sort = 100, + Status = 0, + TypeId = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", + Value = "pc" + }, + new + { + Id = "2bce5da0-b386-4412-935d-d081b7cf4391", + Code = "3", + IsDeleted = 0ul, + Remark = "其他", + Sort = 100, + Status = 0, + TypeId = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", + Value = "其他" + }, + new + { + Id = "35aac71b-9939-4b2e-8533-d087618c1dca", + Code = "0", + IsDeleted = 0ul, + Remark = "其它", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "其它" + }, + new + { + Id = "e7585292-d6c6-475f-bf87-8ad473ce6be4", + Code = "1", + IsDeleted = 0ul, + Remark = "增加", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "增加" + }, + new + { + Id = "387d403c-6af3-4bda-af05-d60472823480", + Code = "2", + IsDeleted = 0ul, + Remark = "删除", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "删除" + }, + new + { + Id = "4656bf7b-df6a-4c71-b963-18d8af3f93a7", + Code = "3", + IsDeleted = 0ul, + Remark = "编辑", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "编辑" + }, + new + { + Id = "9edba767-7008-4623-8dbf-75417f1a0c82", + Code = "4", + IsDeleted = 0ul, + Remark = "更新", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "更新" + }, + new + { + Id = "d1334517-ddfa-47f3-b053-88ea999babc7", + Code = "5", + IsDeleted = 0ul, + Remark = "查询", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "查询" + }, + new + { + Id = "fe6e46ee-208b-446f-8aaa-05bd5eaa459b", + Code = "6", + IsDeleted = 0ul, + Remark = "详情", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "详情" + }, + new + { + Id = "bf8f818f-060b-4815-8fe9-11bb356cb2e6", + Code = "7", + IsDeleted = 0ul, + Remark = "树", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "树" + }, + new + { + Id = "2b9cf0b8-74ba-4b36-8504-275a2387729a", + Code = "8", + IsDeleted = 0ul, + Remark = "导入", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "导入" + }, + new + { + Id = "db13458a-22b4-4f5e-b6f9-c3c9e1400909", + Code = "9", + IsDeleted = 0ul, + Remark = "导出", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "导出" + }, + new + { + Id = "e02d9274-aa68-4e2c-9211-b226f1e6423e", + Code = "10", + IsDeleted = 0ul, + Remark = "授权", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "授权" + }, + new + { + Id = "023244cd-eb32-4a19-bb3c-97301be1e769", + Code = "11", + IsDeleted = 0ul, + Remark = "强退", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "强退" + }, + new + { + Id = "beb773cd-a22a-44e2-ac4b-5ab6f21aa3c4", + Code = "12", + IsDeleted = 0ul, + Remark = "清空", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "清空" + }, + new + { + Id = "b6f55ff4-6b6a-452a-b372-32ac2f1f2b30", + Code = "13", + IsDeleted = 0ul, + Remark = "修改状态", + Sort = 100, + Status = 0, + TypeId = "8461bd1d-311b-487e-b579-d6049c6fb191", + Value = "修改状态" + }, + new + { + Id = "f86e19a0-8ba8-4588-91f6-be2af525f490", + Code = "1", + IsDeleted = 0ul, + Remark = "阿里云", + Sort = 100, + Status = 0, + TypeId = "b924e0c1-3f23-4e37-9f27-90e945381304", + Value = "阿里云" + }, + new + { + Id = "91c522b5-4f6f-48a5-ba79-962d56821bdc", + Code = "2", + IsDeleted = 0ul, + Remark = "腾讯云", + Sort = 100, + Status = 0, + TypeId = "b924e0c1-3f23-4e37-9f27-90e945381304", + Value = "腾讯云" + }, + new + { + Id = "cc64be62-3213-4442-a98a-c508bc35104b", + Code = "3", + IsDeleted = 0ul, + Remark = "minio", + Sort = 100, + Status = 0, + TypeId = "b924e0c1-3f23-4e37-9f27-90e945381304", + Value = "minio" + }, + new + { + Id = "cdc4a9ee-7436-4807-87cd-4350a72745b0", + Code = "4", + IsDeleted = 0ul, + Remark = "本地", + Sort = 100, + Status = 0, + TypeId = "b924e0c1-3f23-4e37-9f27-90e945381304", + Value = "本地" + }, + new + { + Id = "76e885e8-1b40-45b6-bb0f-5519c6839df2", + Code = "1", + IsDeleted = 0ul, + Remark = "运行", + Sort = 100, + Status = 0, + TypeId = "0f1b8660-d932-4a53-a681-a38bebae91e0", + Value = "运行" + }, + new + { + Id = "6e3591ec-2902-4bf3-b5a2-7ebc94ebc08f", + Code = "2", + IsDeleted = 0ul, + Remark = "停止", + Sort = 100, + Status = 0, + TypeId = "0f1b8660-d932-4a53-a681-a38bebae91e0", + Value = "停止" }); }); modelBuilder.Entity("Ewide.Core.SysDictType", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Code") @@ -1983,11 +2011,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("编码"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -1995,8 +2024,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("创建者名称"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -2016,11 +2046,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("状态"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -2038,9 +2069,9 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070906483L, + Id = "b0cfa91c-1189-4f39-bc5a-f035885d0604", Code = "common_status", - IsDeleted = false, + IsDeleted = 0ul, Name = "通用状态", Remark = "通用状态", Sort = 100, @@ -2048,9 +2079,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906484L, + Id = "301ed120-dfc5-4d7c-af59-b56a519581c9", Code = "sex", - IsDeleted = false, + IsDeleted = 0ul, Name = "性别", Remark = "性别字典", Sort = 100, @@ -2058,9 +2089,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906485L, + Id = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", Code = "consts_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "常量的分类", Remark = "常量的分类,用于区别一组配置", Sort = 100, @@ -2068,9 +2099,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906486L, + Id = "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", Code = "yes_or_no", - IsDeleted = false, + IsDeleted = 0ul, Name = "是否", Remark = "是否", Sort = 100, @@ -2078,9 +2109,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906487L, + Id = "2cecf329-cf95-44eb-a8d7-3fb77b13e093", Code = "vis_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "访问类型", Remark = "访问类型", Sort = 100, @@ -2088,9 +2119,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906488L, + Id = "e973d383-c28e-42e0-9e23-5f2bd592fef5", Code = "menu_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单类型", Remark = "菜单类型", Sort = 100, @@ -2098,9 +2129,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906489L, + Id = "058db370-3718-42c3-8ba7-095341b1fe13", Code = "send_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "发送类型", Remark = "发送类型", Sort = 100, @@ -2108,9 +2139,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906490L, + Id = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", Code = "open_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "打开方式", Remark = "打开方式", Sort = 100, @@ -2118,9 +2149,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906491L, + Id = "b3235678-f7fe-442b-8fba-e792a89b78f2", Code = "menu_weight", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单权重", Remark = "菜单权重", Sort = 100, @@ -2128,9 +2159,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906492L, + Id = "a2068ed1-62a6-463c-b720-06111d994079", Code = "data_scope_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "数据范围类型", Remark = "数据范围类型", Sort = 100, @@ -2138,9 +2169,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906493L, + Id = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", Code = "sms_send_source", - IsDeleted = false, + IsDeleted = 0ul, Name = "短信发送来源", Remark = "短信发送来源", Sort = 100, @@ -2148,9 +2179,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906494L, + Id = "8461bd1d-311b-487e-b579-d6049c6fb191", Code = "op_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "操作类型", Remark = "操作类型", Sort = 100, @@ -2158,9 +2189,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070906495L, + Id = "b924e0c1-3f23-4e37-9f27-90e945381304", Code = "file_storage_location", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件存储位置", Remark = "文件存储位置", Sort = 100, @@ -2168,9 +2199,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910533L, + Id = "0f1b8660-d932-4a53-a681-a38bebae91e0", Code = "run_status", - IsDeleted = false, + IsDeleted = 0ul, Name = "运行状态", Remark = "定时任务运行状态", Sort = 100, @@ -2178,9 +2209,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910534L, + Id = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", Code = "notice_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "通知公告类型", Remark = "通知公告类型", Sort = 100, @@ -2188,9 +2219,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910535L, + Id = "b30937e6-03cd-4d98-a413-10b06d605e5a", Code = "notice_status", - IsDeleted = false, + IsDeleted = 0ul, Name = "通知公告状态", Remark = "通知公告状态", Sort = 100, @@ -2198,9 +2229,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910536L, + Id = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", Code = "yes_true_false", - IsDeleted = false, + IsDeleted = 0ul, Name = "是否boolean", Remark = "是否boolean", Sort = 100, @@ -2208,9 +2239,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910537L, + Id = "430d0538-054a-4b37-a459-1095d0ccf4ae", Code = "code_gen_create_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "代码生成方式", Remark = "代码生成方式", Sort = 100, @@ -2218,9 +2249,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910538L, + Id = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", Code = "request_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "请求方式", Remark = "请求方式", Sort = 100, @@ -2228,9 +2259,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070922827L, + Id = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", Code = "code_gen_effect_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "代码生成作用类型", Remark = "代码生成作用类型", Sort = 100, @@ -2238,9 +2269,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070922828L, + Id = "41bc31f6-cef5-400d-b03a-bf51d27b2432", Code = "code_gen_query_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "代码生成查询类型", Remark = "代码生成查询类型", Sort = 100, @@ -2248,9 +2279,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070922829L, + Id = "28f653d4-e573-4f54-8e5c-4e308780145a", Code = "code_gen_net_type", - IsDeleted = false, + IsDeleted = 0ul, Name = "代码生成.NET类型", Remark = "代码生成.NET类型", Sort = 100, @@ -2260,16 +2291,18 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysEmp", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("用户Id"); b.Property("JobNum") .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("工号"); - b.Property("OrgId") - .HasColumnType("bigint") + b.Property("OrgId") + .HasColumnType("varchar(36)") + .HasColumnName("OrgId") .HasComment("机构Id"); b.Property("OrgName") @@ -2286,39 +2319,42 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910551L, + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", JobNum = "D1001", - OrgId = 142307070910539L, + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", OrgName = "华夏集团" }, new { - Id = 142307070910552L, + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", JobNum = "D1002", - OrgId = 142307070910539L, + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", OrgName = "华夏集团" }, new { - Id = 142307070910553L, + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", JobNum = "D1003", - OrgId = 142307070910539L, + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", OrgName = "华夏集团" }); }); modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => { - b.Property("SysEmpId") - .HasColumnType("bigint") + b.Property("SysEmpId") + .HasColumnType("varchar(36)") + .HasColumnName("SysEmpId") .HasComment("员工Id"); - b.Property("SysOrgId") - .HasColumnType("bigint") + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") .HasComment("机构Id"); - b.Property("SysPosId") - .HasColumnType("bigint") + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") .HasComment("职位Id"); b.HasKey("SysEmpId", "SysOrgId", "SysPosId"); @@ -2335,44 +2371,46 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - SysEmpId = 142307070910551L, - SysOrgId = 142307070910539L, - SysPosId = 142307070910547L + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" }, new { - SysEmpId = 142307070910551L, - SysOrgId = 142307070910540L, - SysPosId = 142307070910548L + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" }, new { - SysEmpId = 142307070910551L, - SysOrgId = 142307070910541L, - SysPosId = 142307070910549L + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "127c0a5d-43ac-4370-b313-082361885aca", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" }, new { - SysEmpId = 142307070910551L, - SysOrgId = 142307070910542L, - SysPosId = 142307070910550L + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + SysPosId = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66" }, new { - SysEmpId = 142307070910553L, - SysOrgId = 142307070910542L, - SysPosId = 142307070910547L + SysEmpId = "16a74726-e156-499f-9942-0e0e24ad0c3f", + SysOrgId = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" }); }); modelBuilder.Entity("Ewide.Core.SysEmpPos", b => { - b.Property("SysEmpId") - .HasColumnType("bigint") + b.Property("SysEmpId") + .HasColumnType("varchar(36)") + .HasColumnName("SysEmpId") .HasComment("员工Id"); - b.Property("SysPosId") - .HasColumnType("bigint") + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") .HasComment("职位Id"); b.HasKey("SysEmpId", "SysPosId"); @@ -2387,38 +2425,40 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - SysEmpId = 142307070910551L, - SysPosId = 142307070910547L + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" }, new { - SysEmpId = 142307070910551L, - SysPosId = 142307070910548L + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" }, new { - SysEmpId = 142307070910552L, - SysPosId = 142307070910549L + SysEmpId = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" }, new { - SysEmpId = 142307070910553L, - SysPosId = 142307070910547L + SysEmpId = "16a74726-e156-499f-9942-0e0e24ad0c3f", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" }); }); modelBuilder.Entity("Ewide.Core.SysFile", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -2458,16 +2498,18 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("文件后缀"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -2494,7 +2536,7 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("列名"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("操作时间"); b.Property("NewValue") @@ -2513,8 +2555,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("表名"); - b.Property("UserId") - .HasColumnType("bigint") + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") .HasComment("操作人Id"); b.Property("UserName") @@ -2572,7 +2615,7 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("名称"); b.Property("OpTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("操作时间"); b.Property("OpType") @@ -2650,7 +2693,7 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("是否执行成功"); b.Property("VisTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("访问时间"); b.Property("VisType") @@ -2667,8 +2710,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysMenu", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Application") @@ -2684,11 +2728,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("组件地址"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -2700,8 +2745,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("图标"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Link") @@ -2720,8 +2766,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("权限标识"); - b.Property("Pid") - .HasColumnType("bigint") + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") .HasComment("父Id"); b.Property("Pids") @@ -2752,11 +2799,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("菜单类型"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -2764,8 +2812,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("修改者名称"); - b.Property("Visible") - .HasColumnType("longtext CHARACTER SET utf8mb4") + b.Property("Visible") + .HasColumnType("bit") + .HasColumnName("Visible") .HasComment("是否可见"); b.Property("Weight") @@ -2782,2648 +2831,2649 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910560L, + Id = "83ce02c9-b37f-4885-96e3-9b34371edb2e", Application = "system", Code = "system_index", Component = "RouteView", Icon = "home", - IsDeleted = false, + IsDeleted = 0ul, Name = "主控面板", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Redirect = "/analysis", Router = "/", Sort = 1, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910561L, + Id = "914a520d-9e4f-465b-ae05-7248b37d4be1", Application = "system", Code = "system_index_dashboard", Component = "system/dashboard/Analysis", - IsDeleted = false, + IsDeleted = 0ul, Name = "分析页", OpenType = 0, - Pid = 142307070910560L, - Pids = "[0],[142307070910560],", + Pid = "83ce02c9-b37f-4885-96e3-9b34371edb2e", + Pids = "[00000000-0000-0000-0000-000000000000],[83ce02c9-b37f-4885-96e3-9b34371edb2e],", Router = "analysis", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910562L, + Id = "72981ad9-9036-4aa7-b8f4-dc407eda50b4", Application = "system", Code = "system_index_workplace", Component = "system/dashboard/Workplace", - IsDeleted = false, + IsDeleted = 0ul, Name = "工作台", OpenType = 0, - Pid = 142307070910560L, - Pids = "[0],[142307070910560],", + Pid = "83ce02c9-b37f-4885-96e3-9b34371edb2e", + Pids = "[00000000-0000-0000-0000-000000000000],[83ce02c9-b37f-4885-96e3-9b34371edb2e],", Router = "workplace", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910563L, + Id = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", Application = "system", Code = "sys_mgr", Component = "PageView", Icon = "team", - IsDeleted = false, + IsDeleted = 0ul, Name = "组织架构", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/sys", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910564L, + Id = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", Application = "system", Code = "sys_user_mgr", Component = "system/user/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户管理", OpenType = 1, - Pid = 142307070910563L, - Pids = "[0],[142307070910563],", + Pid = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],", Router = "/mgr_user", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910565L, + Id = "bff7e542-6463-4f82-a03d-b1022e60d4b6", Application = "system", Code = "sys_user_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户查询", OpenType = 0, Permission = "sysUser:page", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910566L, + Id = "936440c7-93ef-4d2f-adff-6151f4317355", Application = "system", Code = "sys_user_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户编辑", OpenType = 0, Permission = "sysUser:edit", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910567L, + Id = "281888e3-d183-4711-ba27-298ef6e64659", Application = "system", Code = "sys_user_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户增加", OpenType = 0, Permission = "sysUser:add", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910568L, + Id = "e4aff800-d34a-416b-bd6e-dcebaa1dd436", Application = "system", Code = "sys_user_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户删除", OpenType = 0, Permission = "sysUser:delete", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910569L, + Id = "7a266494-e17b-480d-8f50-cc234e6fe424", Application = "system", Code = "sys_user_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户详情", OpenType = 0, Permission = "sysUser:detail", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910570L, + Id = "0d93f763-20d3-4c95-add3-3d94770b110e", Application = "system", Code = "sys_user_mgr_export", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户导出", OpenType = 0, Permission = "sysUser:export", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910571L, + Id = "17d047c3-6e95-4f7d-93db-97817d886fa2", Application = "system", Code = "sys_user_mgr_selector", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户选择器", OpenType = 0, Permission = "sysUser:selector", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910572L, + Id = "5fc44256-2e56-4805-9382-b5504ca5b6cb", Application = "system", Code = "sys_user_mgr_grant_role", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户授权角色", OpenType = 0, Permission = "sysUser:grantRole", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910573L, + Id = "ceff7899-6779-4708-b9ed-a2d5b488cff2", Application = "system", Code = "sys_user_mgr_own_role", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户拥有角色", OpenType = 0, Permission = "sysUser:ownRole", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910574L, + Id = "38ba9ccc-eb96-4a60-a5ab-f6ea013f8291", Application = "system", Code = "sys_user_mgr_grant_data", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户授权数据", OpenType = 0, Permission = "sysUser:grantData", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910575L, + Id = "cf2f8faf-b280-456c-8865-64115e04019f", Application = "system", Code = "sys_user_mgr_own_data", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户拥有数据", OpenType = 0, Permission = "sysUser:ownData", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910576L, + Id = "711563e5-fed6-44d6-bcf3-138c73cfbfca", Application = "system", Code = "sys_user_mgr_update_info", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户更新信息", OpenType = 0, Permission = "sysUser:updateInfo", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910577L, + Id = "306fe9bf-3132-4011-9f3f-1a2f4ead7734", Application = "system", Code = "sys_user_mgr_update_pwd", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户修改密码", OpenType = 0, Permission = "sysUser:updatePwd", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910578L, + Id = "791b0d88-7e25-490f-a94f-a2e32bb3b6e6", Application = "system", Code = "sys_user_mgr_change_status", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户修改状态", OpenType = 0, Permission = "sysUser:changeStatus", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910579L, + Id = "9d681aac-528a-46b0-9718-ffc4abe9c29e", Application = "system", Code = "sys_user_mgr_update_avatar", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户修改头像", OpenType = 0, Permission = "sysUser:updateAvatar", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910580L, + Id = "471b5259-5f55-4643-841c-f07089cfafdf", Application = "system", Code = "sys_user_mgr_reset_pwd", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户重置密码", OpenType = 0, Permission = "sysUser:resetPwd", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918777L, + Id = "471d3098-90a4-47e1-bd07-5d3ed8d21fb0", Application = "system", Code = "sys_user_mgr_login", - IsDeleted = false, + IsDeleted = 0ul, Name = "用户登录信息", OpenType = 0, Permission = "getLoginUser", - Pid = 142307070910564L, - Pids = "[0],[142307070910563],[142307070910564],", + Pid = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9f1f6051-15e6-474f-ab40-ab98a8713f7b],", Sort = 100, Status = 1, Type = 2, - Visible = "N", + Visible = 0ul, Weight = 1 }, new { - Id = 142307070910581L, + Id = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", Application = "system", Code = "sys_org_mgr", Component = "system/org/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构管理", OpenType = 1, - Pid = 142307070910563L, - Pids = "[0],[142307070910563],", + Pid = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],", Router = "/org", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910582L, + Id = "b7c34c9b-933e-4c48-b1d0-af15a1f7da1f", Application = "system", Code = "sys_org_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构查询", OpenType = 0, Permission = "sysOrg:page", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910583L, + Id = "917064b2-c715-4fa4-9b2d-20a11b784ed1", Application = "system", Code = "sys_org_mgr_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构列表", OpenType = 0, Permission = "sysOrg:list", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910584L, + Id = "d7c18d60-f28f-4a57-90b3-26fc95249ae0", Application = "system", Code = "sys_org_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构增加", OpenType = 0, Permission = "sysOrg:add", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910585L, + Id = "e65eb1e3-cc9e-4309-8c7a-9ac41765b239", Application = "system", Code = "sys_org_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构编辑", OpenType = 0, Permission = "sysOrg:edit", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910586L, + Id = "c2450c4c-89c6-46e8-8f89-11331790cbe3", Application = "system", Code = "sys_org_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构删除", OpenType = 0, Permission = "sysOrg:delete", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910587L, + Id = "695a6018-82c3-466e-a2a1-dab16039bfdb", Application = "system", Code = "sys_org_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构详情", OpenType = 0, Permission = "sysOrg:detail", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910588L, + Id = "2d153046-279b-43be-8f57-46875118fd2c", Application = "system", Code = "sys_org_mgr_tree", - IsDeleted = false, + IsDeleted = 0ul, Name = "机构树", OpenType = 0, Permission = "sysOrg:tree", - Pid = 142307070910581L, - Pids = "[0],[142307070910563],[142307070910581],", + Pid = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[9c1b34f3-2412-496a-a42e-e4f6ae407ae1],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910589L, + Id = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", Application = "system", Code = "sys_pos_mgr", Component = "system/pos/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位管理", OpenType = 1, - Pid = 142307070910563L, - Pids = "[0],[142307070910563],", + Pid = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],", Router = "/pos", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910590L, + Id = "d2436601-bc48-4610-ba67-5b666f8ce33a", Application = "system", Code = "sys_pos_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位查询", OpenType = 0, Permission = "sysPos:page", - Pid = 142307070910589L, - Pids = "[0],[142307070910563],[142307070910589],", + Pid = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070910591L, + Id = "1305efaa-b81a-475f-9dde-8f6549ca7743", Application = "system", Code = "sys_pos_mgr_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位列表", OpenType = 0, Permission = "sysPos:list", - Pid = 142307070910589L, - Pids = "[0],[142307070910563],[142307070910589],", + Pid = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914629L, + Id = "c227e732-f231-4488-89b0-d1c9dad78950", Application = "system", Code = "sys_pos_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位增加", OpenType = 0, Permission = "sysPos:add", - Pid = 142307070910589L, - Pids = "[0],[142307070910563],[142307070910589],", + Pid = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914630L, + Id = "9dafbe04-83c9-482c-9c83-81f4da045da5", Application = "system", Code = "sys_pos_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位编辑", OpenType = 0, Permission = "sysPos:edit", - Pid = 142307070910589L, - Pids = "[0],[142307070910563],[142307070910589],", + Pid = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914631L, + Id = "031df05e-b7c6-4ecd-aff2-f189c994e86d", Application = "system", Code = "sys_pos_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位删除", OpenType = 0, Permission = "sysPos:delete", - Pid = 142307070910589L, - Pids = "[0],[142307070910563],[142307070910589],", + Pid = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914632L, + Id = "fe5ee8a1-2145-43c6-bdeb-518f3a9c127d", Application = "system", Code = "sys_pos_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "职位详情", OpenType = 0, Permission = "sysPos:detail", - Pid = 142307070910589L, - Pids = "[0],[142307070910563],[142307070910589],", + Pid = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[0f60d129-9d3b-42b5-9eb2-99bc066be6aa],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914633L, + Id = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", Application = "system", Code = "auth_manager", Component = "PageView", Icon = "safety-certificate", - IsDeleted = false, + IsDeleted = 0ul, Name = "权限管理", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/auth", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914634L, + Id = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", Application = "system", Code = "sys_app_mgr", Component = "system/app/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用管理", OpenType = 1, - Pid = 142307070914633L, - Pids = "[0],[142307070914633],", + Pid = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],", Router = "/app", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914635L, + Id = "dbaa7a6d-234f-4cc9-977f-4544b8bb45b8", Application = "system", Code = "sys_app_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用查询", OpenType = 0, Permission = "sysApp:page", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914636L, + Id = "ab7b2b41-b0bc-4b9c-9017-f5c6918e393e", Application = "system", Code = "sys_app_mgr_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用列表", OpenType = 0, Permission = "sysApp:list", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914637L, + Id = "f4e1d63b-5d92-46eb-82aa-267335a5a3f3", Application = "system", Code = "sys_app_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用增加", OpenType = 0, Permission = "sysApp:add", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914638L, + Id = "f33a3791-1c01-4d30-bcc3-d9fdf5246376", Application = "system", Code = "sys_app_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用编辑", OpenType = 0, Permission = "sysApp:edit", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914639L, + Id = "e0a6cf90-0a8b-44e4-a32f-5f43ef996b82", Application = "system", Code = "sys_app_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用删除", OpenType = 0, Permission = "sysApp:delete", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914640L, + Id = "a0abe974-5ae9-440b-9d16-2412eab52d70", Application = "system", Code = "sys_app_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "应用详情", OpenType = 0, Permission = "sysApp:detail", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914641L, + Id = "f640e243-b439-4109-8aea-c66205ef6b12", Application = "system", Code = "sys_app_mgr_set_as_default", - IsDeleted = false, + IsDeleted = 0ul, Name = "设为默认应用", OpenType = 0, Permission = "sysApp:setAsDefault", - Pid = 142307070914634L, - Pids = "[0],[142307070914633],[142307070914634],", + Pid = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[05175bfd-6e5f-4c3b-8daf-0f79df4e9694],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914642L, + Id = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", Application = "system", Code = "sys_menu_mgr", Component = "system/menu/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单管理", OpenType = 1, - Pid = 142307070914633L, - Pids = "[0],[142307070914633],", + Pid = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],", Router = "/menu", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914643L, + Id = "e9982e73-1833-4674-9403-ee3dee2efdf7", Application = "system", Code = "sys_menu_mgr_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单列表", OpenType = 0, Permission = "sysMenu:list", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914644L, + Id = "758e15e6-75a6-4b72-8f94-5da379e53354", Application = "system", Code = "sys_menu_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单增加", OpenType = 0, Permission = "sysMenu:add", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914645L, + Id = "07139c19-6b39-49f5-9e22-c4dc7e9d947b", Application = "system", Code = "sys_menu_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单编辑", OpenType = 0, Permission = "sysMenu:edit", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914646L, + Id = "857fb581-78ff-4884-a6fb-8dfb4951fef9", Application = "system", Code = "sys_menu_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单删除", OpenType = 0, Permission = "sysMenu:delete", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914647L, + Id = "cd43a8ee-9f98-4355-bf81-ba40f388b23f", Application = "system", Code = "sys_menu_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单详情", OpenType = 0, Permission = "sysMenu:detail", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914648L, + Id = "ec318997-596d-403a-91be-f303b234b02d", Application = "system", Code = "sys_menu_mgr_grant_tree", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单授权树", OpenType = 0, Permission = "sysMenu:treeForGrant", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914649L, + Id = "3892ef5d-39b2-4a4d-8047-cb96542fb54f", Application = "system", Code = "sys_menu_mgr_tree", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单树", OpenType = 0, Permission = "sysMenu:tree", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914650L, + Id = "00831a3b-d080-411f-afb9-9f415334b192", Application = "system", Code = "sys_menu_mgr_change", - IsDeleted = false, + IsDeleted = 0ul, Name = "菜单切换", OpenType = 0, Permission = "sysMenu:change", - Pid = 142307070914642L, - Pids = "[0],[142307070914633],[142307070914642],", + Pid = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[babff4e1-dd00-4e6b-909a-3aac76bb52cd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914651L, + Id = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", Application = "system", Code = "sys_role_mgr", Component = "system/role/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色管理", OpenType = 1, - Pid = 142307070914633L, - Pids = "[0],[142307070914633],", + Pid = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],", Router = "/role", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914652L, + Id = "4241f4a0-89ab-4a6a-80bb-2830f855d3be", Application = "system", Code = "sys_role_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色查询", OpenType = 0, Permission = "sysRole:page", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914653L, + Id = "6a48beb1-c828-43d6-af3d-3e18ef163070", Application = "system", Code = "sys_role_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色增加", OpenType = 0, Permission = "sysRole:add", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914654L, + Id = "1198a602-a23d-4a06-aa9a-76aaf5f065a7", Application = "system", Code = "sys_role_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色编辑", OpenType = 0, Permission = "sysRole:edit", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914655L, + Id = "e7708eeb-2c87-4c3d-bc71-c395e5d708db", Application = "system", Code = "sys_role_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色删除", OpenType = 0, Permission = "sysRole:delete", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914656L, + Id = "63ab477f-88fb-4f4b-9dcd-0cb83ac767f6", Application = "system", Code = "sys_role_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色详情", OpenType = 0, Permission = "sysRole:detail", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914657L, + Id = "2622348c-dd8f-4ade-a350-de0a8f01e1f6", Application = "system", Code = "sys_role_mgr_drop_down", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色下拉", OpenType = 0, Permission = "sysRole:dropDown", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914658L, + Id = "73d84863-b381-40be-84bc-ec8381fa6c0a", Application = "system", Code = "sys_role_mgr_grant_menu", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色授权菜单", OpenType = 0, Permission = "sysRole:grantMenu", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914659L, + Id = "bbc5e792-3d72-4d0d-8ddb-25cf2c4e1374", Application = "system", Code = "sys_role_mgr_own_menu", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色拥有菜单", OpenType = 0, Permission = "sysRole:ownMenu", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914660L, + Id = "19234814-6007-484c-818c-88a664a2a339", Application = "system", Code = "sys_role_mgr_grant_data", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色授权数据", OpenType = 0, Permission = "sysRole:grantData", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914661L, + Id = "19e5c5f6-b598-4c42-8eed-3d46fb11b465", Application = "system", Code = "sys_role_mgr_own_data", - IsDeleted = false, + IsDeleted = 0ul, Name = "角色拥有数据", OpenType = 0, Permission = "sysRole:ownData", - Pid = 142307070914651L, - Pids = "[0],[142307070914633],[142307070914651],", + Pid = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Pids = "[00000000-0000-0000-0000-000000000000],[4c00d8c1-e871-4231-8b46-a3e3f3fd400c],[ee63be7b-5d06-4c15-81f3-875e2eb164dd],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914662L, + Id = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", Application = "system", Code = "system_tools", Component = "PageView", Icon = "euro", - IsDeleted = false, + IsDeleted = 0ul, Name = "开发管理", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/tools", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914663L, + Id = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", Application = "system", Code = "system_tools_config", Component = "system/config/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "系统配置", OpenType = 1, - Pid = 142307070914662L, - Pids = "[0],[142307070914662],", + Pid = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", Router = "/config", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914664L, + Id = "c14c82bd-632d-4cc9-9236-37aa64b15ecf", Application = "system", Code = "system_tools_config_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "配置查询", OpenType = 0, Permission = "sysConfig:page", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914665L, + Id = "78d31d68-9c9b-4e02-94c9-8a74eea4c1fb", Application = "system", Code = "system_tools_config_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "配置列表", OpenType = 0, Permission = "sysConfig:list", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914666L, + Id = "fc91afb5-2b9e-428b-b5ff-b0ef35dd5336", Application = "system", Code = "system_tools_config_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "配置增加", OpenType = 0, Permission = "sysConfig:add", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914667L, + Id = "1efb72e8-3449-490a-92e0-308b124c338f", Application = "system", Code = "system_tools_config_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "配置编辑", OpenType = 0, Permission = "sysConfig:edit", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914668L, + Id = "5760230f-e6fc-4c3d-ba38-1c8a5a923eb3", Application = "system", Code = "system_tools_config_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "配置删除", OpenType = 0, Permission = "sysConfig:delete", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914669L, + Id = "6bfc0c53-5d6c-437c-9757-bc79e664d0f5", Application = "system", Code = "system_tools_config_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "配置详情", OpenType = 0, Permission = "sysConfig:detail", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914670L, + Id = "f7fe47a3-86b2-4660-9920-0c9836755666", Application = "system", Code = "sys_app_mgr_set_as_default", - IsDeleted = false, + IsDeleted = 0ul, Name = "设为默认应用", OpenType = 0, Permission = "sysApp:setAsDefault", - Pid = 142307070914663L, - Pids = "[0],[142307070914662],[142307070914663],", + Pid = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[abf3e33d-3d6a-4bbd-8743-179df5a95d48],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914671L, + Id = "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", Application = "system", Code = "sys_email_mgr", Component = "system/email/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "邮件发送", OpenType = 1, - Pid = 142307070914662L, - Pids = "[0],[142307070914662],", + Pid = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", Router = "/email", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914672L, + Id = "4d4cf5b3-bd4c-4f17-9fb2-47b28b00681f", Application = "system", Code = "sys_email_mgr_send_email", - IsDeleted = false, + IsDeleted = 0ul, Name = "发送文本邮件", OpenType = 0, Permission = "email:sendEmail", - Pid = 142307070914671L, - Pids = "[0],[142307070914662],[142307070914671],", + Pid = "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[cde43456-baae-4e9b-b6f9-b0ea9ab49adb],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914673L, + Id = "51e45073-1461-4b3b-ae06-d0d3dcf222e0", Application = "system", Code = "sys_email_mgr_send_email_html", - IsDeleted = false, + IsDeleted = 0ul, Name = "发送html邮件", OpenType = 0, Permission = "email:sendEmailHtml", - Pid = 142307070914671L, - Pids = "[0],[142307070914662],[142307070914671],", + Pid = "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[cde43456-baae-4e9b-b6f9-b0ea9ab49adb],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914674L, + Id = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", Application = "system", Code = "sys_sms_mgr", Component = "system/sms/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "短信管理", OpenType = 1, - Pid = 142307070914662L, - Pids = "[0],[142307070914662],", + Pid = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", Router = "/sms", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914675L, + Id = "2afa4925-b927-457e-88a1-d215b7d75fb6", Application = "system", Code = "sys_sms_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "短信发送查询", OpenType = 0, Permission = "sms:page", - Pid = 142307070914674L, - Pids = "[0],[142307070914662],[142307070914674],", + Pid = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[e571a1c9-8b43-459f-9dc6-1dcf967627b7],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914676L, + Id = "97c1b073-5e19-4542-89e2-d8da44d0f1df", Application = "system", Code = "sys_sms_mgr_send_login_message", - IsDeleted = false, + IsDeleted = 0ul, Name = "发送验证码短信", OpenType = 0, Permission = "sms:sendLoginMessage", - Pid = 142307070914674L, - Pids = "[0],[142307070914662],[142307070914674],", + Pid = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[e571a1c9-8b43-459f-9dc6-1dcf967627b7],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914677L, + Id = "d2454bd2-f300-4b28-95c0-12432c28cbdf", Application = "system", Code = "sys_sms_mgr_validate_message", - IsDeleted = false, + IsDeleted = 0ul, Name = "验证短信验证码", OpenType = 0, Permission = "sms:validateMessage", - Pid = 142307070914674L, - Pids = "[0],[142307070914662],[142307070914674],", + Pid = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[e571a1c9-8b43-459f-9dc6-1dcf967627b7],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914678L, + Id = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", Application = "system", Code = "sys_dict_mgr", Component = "system/dict/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典管理", OpenType = 1, - Pid = 142307070914662L, - Pids = "[0],[142307070914662],", + Pid = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", Router = "/dict", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914679L, + Id = "70c5e8c5-6104-4e53-99c0-4743e557456b", Application = "system", Code = "sys_dict_mgr_dict_type_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型查询", OpenType = 0, Permission = "sysDictType:page", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914680L, + Id = "1bd1d982-e05a-4bdc-a4e0-752d94f3196c", Application = "system", Code = "sys_dict_mgr_dict_type_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型列表", OpenType = 0, Permission = "sysDictType:list", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914681L, + Id = "bd09b023-0884-4f31-8cf7-f66f789fa3db", Application = "system", Code = "sys_dict_mgr_dict_type_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型增加", OpenType = 0, Permission = "sysDictType:add", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914682L, + Id = "1f7a41ff-5a46-449c-81f3-1618dfdcb4cd", Application = "system", Code = "sys_dict_mgr_dict_type_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型删除", OpenType = 0, Permission = "sysDictType:delete", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914683L, + Id = "2381cde4-2174-47e7-a1e5-e58da70e7a11", Application = "system", Code = "sys_dict_mgr_dict_type_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型编辑", OpenType = 0, Permission = "sysDictType:edit", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914684L, + Id = "8f7d3c74-8800-4922-9662-ac6af378c882", Application = "system", Code = "sys_dict_mgr_dict_type_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型详情", OpenType = 0, Permission = "sysDictType:detail", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914685L, + Id = "4f87b6de-be62-4398-b680-1f8611f2cd70", Application = "system", Code = "sys_dict_mgr_dict_type_drop_down", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型下拉", OpenType = 0, Permission = "sysDictType:dropDown", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914686L, + Id = "07c799b2-e8e9-4955-83da-97560f161d87", Application = "system", Code = "sys_dict_mgr_dict_type_change_status", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典类型修改状态", OpenType = 0, Permission = "sysDictType:changeStatus", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070914687L, + Id = "29be8e3c-c2bb-4162-b282-fdf58c218b9d", Application = "system", Code = "sys_dict_mgr_dict_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值查询", OpenType = 0, Permission = "sysDictData:page", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918725L, + Id = "b8cbc4e1-ac10-4cda-b1e4-f816a2632d02", Application = "system", Code = "sys_dict_mgr_dict_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值列表", OpenType = 0, Permission = "sysDictData:list", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918726L, + Id = "54e97bde-94d6-42df-89e3-4c3ace153b22", Application = "system", Code = "sys_dict_mgr_dict_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值增加", OpenType = 0, Permission = "sysDictData:add", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918727L, + Id = "be98da08-a3b0-463c-8208-05d843620258", Application = "system", Code = "sys_dict_mgr_dict_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值删除", OpenType = 0, Permission = "sysDictData:delete", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918728L, + Id = "38809fc3-163f-4fe9-a488-c9bb5bce752a", Application = "system", Code = "sys_dict_mgr_dict_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值编辑", OpenType = 0, Permission = "sysDictData:edit", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918729L, + Id = "fc511b42-f0a1-489b-8418-7ef94b0fb374", Application = "system", Code = "sys_role_mgr_grant_data", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值详情", OpenType = 0, Permission = "sysDictData:detail", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918730L, + Id = "200428b3-1605-4c70-b840-e691e302ae69", Application = "system", Code = "sys_dict_mgr_dict_change_status", - IsDeleted = false, + IsDeleted = 0ul, Name = "字典值修改状态", OpenType = 0, Permission = "sysDictData:changeStatus", - Pid = 142307070914678L, - Pids = "[0],[142307070914662],[142307070914678],", + Pid = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],[477739a3-53d8-4f9b-ba32-f6dda79ec8a8],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918731L, + Id = "d40f424d-d5fc-4b86-a2bd-3a5a76076bc1", Application = "system", Code = "sys_swagger_mgr", Component = "Iframe", - IsDeleted = false, + IsDeleted = 0ul, Link = "http://127.0.0.1:5566/", Name = "接口文档", OpenType = 2, - Pid = 142307070914662L, - Pids = "[0],[142307070914662],", + Pid = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Pids = "[00000000-0000-0000-0000-000000000000],[ac0ee878-f713-4a77-9c8f-6e1ee1f4484e],", Router = "/swagger", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918732L, + Id = "eec4563e-9307-4ccd-ac3a-93598badb195", Application = "system", Code = "sys_log_mgr", Component = "PageView", Icon = "read", - IsDeleted = false, + IsDeleted = 0ul, Name = "日志管理", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/log", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918733L, + Id = "322b2cb6-df29-483b-b011-54dce1532fae", Application = "system", Code = "sys_log_mgr_vis_log", Component = "system/log/vislog/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "访问日志", OpenType = 1, - Pid = 142307070918732L, - Pids = "[0],[142307070918732],", + Pid = "eec4563e-9307-4ccd-ac3a-93598badb195", + Pids = "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],", Router = "/vislog", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918734L, + Id = "122641c1-ab6d-4f91-9527-16fc8fea9708", Application = "system", Code = "sys_log_mgr_vis_log_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "访问日志查询", OpenType = 0, Permission = "sysVisLog:page", - Pid = 142307070918733L, - Pids = "[0],[142307070918732],[142307070918733],", + Pid = "322b2cb6-df29-483b-b011-54dce1532fae", + Pids = "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],[322b2cb6-df29-483b-b011-54dce1532fae],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918735L, + Id = "f2367804-6382-4e72-8282-e4f6f988ecd1", Application = "system", Code = "sys_log_mgr_vis_log_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "访问日志清空", OpenType = 0, Permission = "sysVisLog:delete", - Pid = 142307070918733L, - Pids = "[0],[142307070918732],[142307070918733],", + Pid = "322b2cb6-df29-483b-b011-54dce1532fae", + Pids = "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],[322b2cb6-df29-483b-b011-54dce1532fae],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918736L, + Id = "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", Application = "system", Code = "sys_log_mgr_op_log", Component = "system/log/oplog/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "操作日志", OpenType = 1, - Pid = 142307070918732L, - Pids = "[0],[142307070918732],", + Pid = "eec4563e-9307-4ccd-ac3a-93598badb195", + Pids = "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],", Router = "/oplog", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918737L, + Id = "7f44f49e-6458-4149-bbcd-9a937f552cec", Application = "system", Code = "sys_log_mgr_op_log_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "操作日志查询", OpenType = 0, Permission = "sysOpLog:page", - Pid = 142307070918736L, - Pids = "[0],[142307070918732],[142307070918736],", + Pid = "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", + Pids = "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],[1a1a13cb-f9a9-4ffe-924d-d523db79f7bf],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918738L, + Id = "263e0c00-2796-411c-9f50-0aa361f7781c", Application = "system", Code = "sys_log_mgr_op_log_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "操作日志清空", OpenType = 0, Permission = "sysOpLog:delete", - Pid = 142307070918736L, - Pids = "[0],[142307070918732],[142307070918736],", + Pid = "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", + Pids = "[00000000-0000-0000-0000-000000000000],[eec4563e-9307-4ccd-ac3a-93598badb195],[1a1a13cb-f9a9-4ffe-924d-d523db79f7bf],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918739L, + Id = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", Application = "system", Code = "sys_monitor_mgr", Component = "PageView", Icon = "deployment-unit", - IsDeleted = false, + IsDeleted = 0ul, Name = "系统监控", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/monitor", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918740L, + Id = "c1e70042-fe3f-4efc-a6cc-86de8507f948", Application = "system", Code = "sys_monitor_mgr_machine_monitor", Component = "system/machine/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "服务监控", OpenType = 1, - Pid = 142307070918739L, - Pids = "[0],[142307070918739],", + Pid = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", + Pids = "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],", Router = "/machine", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918741L, + Id = "444f3658-defe-47a7-880e-bf0af8b66591", Application = "system", Code = "sys_monitor_mgr_machine_monitor_query", - IsDeleted = false, + IsDeleted = 0ul, Name = "服务监控查询", OpenType = 0, Permission = "sysMachine:query", - Pid = 142307070918740L, - Pids = "[0],[142307070918739],[142307070918740],", + Pid = "c1e70042-fe3f-4efc-a6cc-86de8507f948", + Pids = "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],[c1e70042-fe3f-4efc-a6cc-86de8507f948],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918742L, + Id = "49a8b476-327b-4f33-87b8-2d9bc50dc390", Application = "system", Code = "sys_monitor_mgr_online_user", Component = "system/onlineUser/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "在线用户", OpenType = 1, - Pid = 142307070918739L, - Pids = "[0],[142307070918739],", + Pid = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", + Pids = "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],", Router = "/onlineUser", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918743L, + Id = "4785eb5a-678a-4f9c-b07c-3b92acdd6de0", Application = "system", Code = "sys_monitor_mgr_online_user_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "在线用户列表", OpenType = 0, Permission = "sysOnlineUser:list", - Pid = 142307070918742L, - Pids = "[0],[142307070918739],[142307070918742],", + Pid = "49a8b476-327b-4f33-87b8-2d9bc50dc390", + Pids = "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],[49a8b476-327b-4f33-87b8-2d9bc50dc390],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918744L, + Id = "4dbf6765-ac79-4708-a9d5-16a4d4b09164", Application = "system", Code = "sys_monitor_mgr_online_user_force_exist", - IsDeleted = false, + IsDeleted = 0ul, Name = "在线用户强退", OpenType = 0, Permission = "sysOnlineUser:forceExist", - Pid = 142307070918742L, - Pids = "[0],[142307070918739],[142307070918742],", + Pid = "49a8b476-327b-4f33-87b8-2d9bc50dc390", + Pids = "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],[49a8b476-327b-4f33-87b8-2d9bc50dc390],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918745L, + Id = "31c2af01-b856-4a1d-a131-cdf8e847b1a4", Application = "system", Code = "sys_monitor_mgr_druid", Component = "Iframe", - IsDeleted = false, + IsDeleted = 0ul, Link = "http://localhost:82/druid/login.html", Name = "数据监控", OpenType = 2, - Pid = 142307070918739L, - Pids = "[0],[142307070918739],", + Pid = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", + Pids = "[00000000-0000-0000-0000-000000000000],[cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c],", Router = "/druid", Sort = 100, Status = 0, Type = 1, - Visible = "N", + Visible = 0ul, Weight = 1 }, new { - Id = 142307070918746L, + Id = "d4cac841-99e5-4014-af17-2986c9340306", Application = "system", Code = "sys_notice", Component = "PageView", Icon = "sound", - IsDeleted = false, + IsDeleted = 0ul, Name = "通知公告", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/notice", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918747L, + Id = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", Application = "system", Code = "sys_notice_mgr", Component = "system/notice/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告管理", OpenType = 1, - Pid = 142307070918746L, - Pids = "[0],[142307070918746],", + Pid = "d4cac841-99e5-4014-af17-2986c9340306", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],", Router = "/notice", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918748L, + Id = "54584ab7-25d1-45b7-b3d4-76ba21511f97", Application = "system", Code = "sys_notice_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告查询", OpenType = 0, Permission = "sysNotice:page", - Pid = 142307070918747L, - Pids = "[0],[142307070918746],[142307070918747],", + Pid = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918749L, + Id = "f27c8431-7da5-4ffe-a8f3-b511cf44c0c8", Application = "system", Code = "sys_notice_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告增加", OpenType = 0, Permission = "sysNotice:add", - Pid = 142307070918747L, - Pids = "[0],[142307070918746],[142307070918747],", + Pid = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918750L, + Id = "f84c1f3a-3a51-4be2-97c9-7543b044e457", Application = "system", Code = "sys_notice_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告编辑", OpenType = 0, Permission = "sysNotice:edit", - Pid = 142307070918747L, - Pids = "[0],[142307070918746],[142307070918747],", + Pid = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918751L, + Id = "a8abcb85-ad3b-47b9-8c9b-e7d1876b90cf", Application = "system", Code = "sys_notice_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告删除", OpenType = 0, Permission = "sysNotice:delete", - Pid = 142307070918747L, - Pids = "[0],[142307070918746],[142307070918747],", + Pid = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918752L, + Id = "fe9cbb41-7b05-4f32-b960-87a1ef146166", Application = "system", Code = "sys_notice_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告查看", OpenType = 0, Permission = "sysNotice:detail", - Pid = 142307070918747L, - Pids = "[0],[142307070918746],[142307070918747],", + Pid = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918753L, + Id = "3e547bb0-4cf5-4cf0-8386-48d2f3c12dcb", Application = "system", Code = "sys_notice_mgr_changeStatus", - IsDeleted = false, + IsDeleted = 0ul, Name = "公告修改状态", OpenType = 0, Permission = "sysNotice:changeStatus", - Pid = 142307070918747L, - Pids = "[0],[142307070918746],[142307070918747],", + Pid = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[e8ca3968-e404-4ea6-a71a-d06d06b51bd5],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918754L, + Id = "ac3065ff-d239-4e0e-86e5-d72cc658224c", Application = "system", Code = "sys_notice_mgr_received", Component = "system/noticeReceived/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "已收公告", OpenType = 1, - Pid = 142307070918746L, - Pids = "[0],[142307070918746],", + Pid = "d4cac841-99e5-4014-af17-2986c9340306", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],", Router = "/noticeReceived", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918755L, + Id = "e2d4b13b-eb3e-4ead-8fb8-4c61a3004726", Application = "system", Code = "sys_notice_mgr_received_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "已收公告查询", OpenType = 0, Permission = "sysNotice:received", - Pid = 142307070918754L, - Pids = "[0],[142307070918746],[142307070918754],", + Pid = "ac3065ff-d239-4e0e-86e5-d72cc658224c", + Pids = "[00000000-0000-0000-0000-000000000000],[d4cac841-99e5-4014-af17-2986c9340306],[ac3065ff-d239-4e0e-86e5-d72cc658224c],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918756L, + Id = "05326e62-f496-4950-8a29-40e8a479424f", Application = "system", Code = "sys_file_mgr", Component = "PageView", Icon = "file", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件管理", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/file", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918757L, + Id = "0af2a460-bbb0-472c-b027-8532970425df", Application = "system", Code = "sys_file_mgr_sys_file", Component = "system/file/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "系统文件", OpenType = 1, - Pid = 142307070918756L, - Pids = "[0],[142307070918756],", + Pid = "05326e62-f496-4950-8a29-40e8a479424f", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],", Router = "/file", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918758L, + Id = "c7bac800-b922-4173-bd8d-9888b4eab1d4", Application = "system", Code = "sys_file_mgr_sys_file_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件查询", OpenType = 0, Permission = "sysFileInfo:page", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918759L, + Id = "f47e1fa7-6329-4d67-8fe6-36ca06aad54b", Application = "system", Code = "sys_file_mgr_sys_file_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件列表", OpenType = 0, Permission = "sysFileInfo:list", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918760L, + Id = "cca0a2ee-cfb9-4996-affb-dc8d8168ac10", Application = "system", Code = "sys_file_mgr_sys_file_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件删除", OpenType = 0, Permission = "sysFileInfo:delete", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918761L, + Id = "eb738eaa-5eed-466d-b422-4eb6f4662dd9", Application = "system", Code = "sys_file_mgr_sys_file_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件详情", OpenType = 0, Permission = "sysFileInfo:detail", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918762L, + Id = "69b97ace-d849-4e52-8fc2-9da7d93e325f", Application = "system", Code = "sys_file_mgr_sys_file_upload", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件上传", OpenType = 0, Permission = "sysFileInfo:upload", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918763L, + Id = "e286d53d-bf3c-4711-b0a3-15cfad0a7521", Application = "system", Code = "sys_file_mgr_sys_file_download", - IsDeleted = false, + IsDeleted = 0ul, Name = "文件下载", OpenType = 0, Permission = "sysFileInfo:download", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918764L, + Id = "1975891b-7940-44a8-a513-9f2e8b05dda1", Application = "system", Code = "sys_file_mgr_sys_file_preview", - IsDeleted = false, + IsDeleted = 0ul, Name = "图片预览", OpenType = 0, Permission = "sysFileInfo:preview", - Pid = 142307070918757L, - Pids = "[0],[142307070918756],[142307070918757],", + Pid = "0af2a460-bbb0-472c-b027-8532970425df", + Pids = "[00000000-0000-0000-0000-000000000000],[05326e62-f496-4950-8a29-40e8a479424f],[0af2a460-bbb0-472c-b027-8532970425df],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918765L, + Id = "ba03cfd5-5d72-465f-87b6-71134da68fab", Application = "system", Code = "sys_timers", Component = "PageView", Icon = "dashboard", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/timers", Sort = 100, Status = 0, Type = 0, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918766L, + Id = "8d4643d7-ec15-48ba-b896-816f8dab1b31", Application = "system", Code = "sys_timers_mgr", Component = "system/timers/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "任务管理", OpenType = 1, - Pid = 142307070918765L, - Pids = "[0],[142307070918765],", + Pid = "ba03cfd5-5d72-465f-87b6-71134da68fab", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],", Router = "/timers", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918767L, + Id = "db62154a-470e-43c8-8959-a686b954fe7d", Application = "system", Code = "sys_timers_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务查询", OpenType = 0, Permission = "sysTimers:page", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918768L, + Id = "dc07cd9f-4a53-40d9-988e-70290a146eff", Application = "system", Code = "sys_timers_mgr_list", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务列表", OpenType = 0, Permission = "sysTimers:list", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918769L, + Id = "1e562d31-c2f8-4af8-be4b-47e3b251d9a3", Application = "system", Code = "sys_timers_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务详情", OpenType = 0, Permission = "sysTimers:detail", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918770L, + Id = "f27ba442-7d6f-499f-8053-a737adc3492a", Application = "system", Code = "sys_timers_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务增加", OpenType = 0, Permission = "sysTimers:add", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918771L, + Id = "99129601-0be5-43ee-842b-a428603f013b", Application = "system", Code = "sys_timers_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务删除", OpenType = 0, Permission = "sysTimers:delete", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918772L, + Id = "5e118fc0-f580-4d06-a89d-f321a84e5654", Application = "system", Code = "sys_timers_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务编辑", OpenType = 0, Permission = "sysTimers:edit", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918773L, + Id = "4272f2e4-4a8b-45bb-b688-2b9471c35e83", Application = "system", Code = "sys_timers_mgr_get_action_classes", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务可执行列表", OpenType = 0, Permission = "sysTimers:getActionClasses", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918774L, + Id = "54094687-f661-4cba-bdfc-e76f22db8d76", Application = "system", Code = "sys_timers_mgr_start", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务启动", OpenType = 0, Permission = "sysTimers:start", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918775L, + Id = "6b82d407-d1ea-440e-9245-128ad03dffc0", Application = "system", Code = "sys_timers_mgr_stop", - IsDeleted = false, + IsDeleted = 0ul, Name = "定时任务关闭", OpenType = 0, Permission = "sysTimers:stop", - Pid = 142307070918766L, - Pids = "[0],[142307070918765],[142307070918766],", + Pid = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Pids = "[00000000-0000-0000-0000-000000000000],[ba03cfd5-5d72-465f-87b6-71134da68fab],[8d4643d7-ec15-48ba-b896-816f8dab1b31],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918776L, + Id = "5172265d-eda3-4b8a-a542-d582467a51a1", Application = "system_tool", Code = "code_gen", Component = "gen/codeGenerate/index", Icon = "thunderbolt", - IsDeleted = false, + IsDeleted = 0ul, Name = "代码生成", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/codeGenerate/index", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070922870L, + Id = "cf51df0a-8e0b-4252-ba06-9646cad648d1", Application = "system_tool", Code = "form_design", Component = "system/formDesign/index", Icon = "robot", - IsDeleted = false, + IsDeleted = 0ul, Name = "表单设计", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/formDesign/index", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918782L, + Id = "f4cf2a3d-0714-4ca4-a691-0b363c172f82", Application = "advanced", Code = "sys_tenant", Component = "PageView", Icon = "switcher", - IsDeleted = false, + IsDeleted = 0ul, Name = "SaaS租户", OpenType = 0, - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Router = "/tenant", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070918783L, + Id = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", Application = "advanced", Code = "sys_tenant_mgr", Component = "system/tenant/index", - IsDeleted = false, + IsDeleted = 0ul, Name = "租户管理", OpenType = 1, - Pid = 142307070918782L, - Pids = "[0],[142307070918782],", + Pid = "f4cf2a3d-0714-4ca4-a691-0b363c172f82", + Pids = "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],", Router = "/tenant", Sort = 100, Status = 0, Type = 1, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070922821L, + Id = "8985ec0a-5060-4812-bf47-4f3102948066", Application = "advanced", Code = "sys_tenant_mgr_page", - IsDeleted = false, + IsDeleted = 0ul, Name = "租户查询", OpenType = 0, Permission = "sysTenant:page", - Pid = 142307070918783L, - Pids = "[0],[142307070918782],[142307070918783],", + Pid = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Pids = "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070922822L, + Id = "d9584afb-18de-4f7e-b992-c21ad77b1aae", Application = "advanced", Code = "sys_tenant_mgr_detail", - IsDeleted = false, + IsDeleted = 0ul, Name = "租户详情", OpenType = 0, Permission = "sysTenant:detail", - Pid = 142307070918783L, - Pids = "[0],[142307070918782],[142307070918783],", + Pid = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Pids = "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070922823L, + Id = "01ae6b95-9c1e-4882-a9ac-ebb9f1868c54", Application = "advanced", Code = "sys_tenant_mgr_add", - IsDeleted = false, + IsDeleted = 0ul, Name = "租户增加", OpenType = 0, Permission = "sysTenant:add", - Pid = 142307070918783L, - Pids = "[0],[142307070918782],[142307070918783],", + Pid = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Pids = "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070922824L, + Id = "59e9f6da-151a-4201-bea1-00ef06fe5842", Application = "advanced", Code = "sys_tenant_mgr_delete", - IsDeleted = false, + IsDeleted = 0ul, Name = "租户删除", OpenType = 0, Permission = "sysTenant:delete", - Pid = 142307070918783L, - Pids = "[0],[142307070918782],[142307070918783],", + Pid = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Pids = "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }, new { - Id = 142307070922825L, + Id = "220b6a86-e65d-469b-8aa0-46c4f5e77ab8", Application = "advanced", Code = "sys_tenant_mgr_edit", - IsDeleted = false, + IsDeleted = 0ul, Name = "租户编辑", OpenType = 0, Permission = "sysTenant:edit", - Pid = 142307070918783L, - Pids = "[0],[142307070918782],[142307070918783],", + Pid = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Pids = "[00000000-0000-0000-0000-000000000000],[f4cf2a3d-0714-4ca4-a691-0b363c172f82],[a6e5cd91-e3de-401d-bc8c-86bd464ab32e],", Sort = 100, Status = 0, Type = 2, - Visible = "Y", + Visible = 1ul, Weight = 1 }); }); modelBuilder.Entity("Ewide.Core.SysNotice", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("CancelTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("撤回时间"); b.Property("Content") @@ -5431,11 +5481,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("内容"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -5443,12 +5494,14 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("创建者名称"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); - b.Property("PublicOrgId") - .HasColumnType("bigint") + b.Property("PublicOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicOrgId") .HasComment("发布机构Id"); b.Property("PublicOrgName") @@ -5456,11 +5509,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("发布机构名称"); b.Property("PublicTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("发布时间"); - b.Property("PublicUserId") - .HasColumnType("bigint") + b.Property("PublicUserId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicUserId") .HasComment("发布人Id"); b.Property("PublicUserName") @@ -5480,11 +5534,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("类型"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -5502,8 +5557,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysNoticeUser", b => { - b.Property("NoticeId") - .HasColumnType("bigint") + b.Property("NoticeId") + .HasColumnType("varchar(36)") + .HasColumnName("NoticeId") .HasComment("通知公告Id"); b.Property("ReadStatus") @@ -5511,11 +5567,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("状态"); b.Property("ReadTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("阅读时间"); - b.Property("UserId") - .HasColumnType("bigint") + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") .HasComment("用户Id"); b.ToTable("sys_notice_user"); @@ -5526,8 +5583,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysOauthUser", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("AccessToken") @@ -5547,11 +5605,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("所在公司"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -5567,8 +5626,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("性别"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Location") @@ -5592,11 +5652,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("用户来源"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -5618,8 +5679,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysOrg", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Code") @@ -5631,11 +5693,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("联系人"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -5643,21 +5706,23 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("创建者名称"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("名称"); - b.Property("Pid") - .HasColumnType("bigint") + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") .HasComment("父Id"); b.Property("Pids") .HasColumnType("longtext CHARACTER SET utf8mb4") - .HasComment("父Ids"); + .HasComment("Pids"); b.Property("Remark") .HasColumnType("longtext CHARACTER SET utf8mb4") @@ -5676,11 +5741,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("电话"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -5698,96 +5764,96 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910539L, + Id = "12d888de-f55d-4c88-b0a0-7c3510664d97", Code = "hxjt", - IsDeleted = false, + IsDeleted = 0ul, Name = "华夏集团", - Pid = 0L, - Pids = "[0],", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", Remark = "华夏集团", Sort = 100, Status = 0 }, new { - Id = 142307070910540L, + Id = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", Code = "hxjt_bj", - IsDeleted = false, + IsDeleted = 0ul, Name = "华夏集团北京分公司", - Pid = 142307070910539L, - Pids = "[0],[142307070910539],", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", Remark = "华夏集团北京分公司", Sort = 100, Status = 0 }, new { - Id = 142307070910541L, + Id = "127c0a5d-43ac-4370-b313-082361885aca", Code = "hxjt_cd", - IsDeleted = false, + IsDeleted = 0ul, Name = "华夏集团成都分公司", - Pid = 142307070910539L, - Pids = "[0],[142307070910539],", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", Remark = "华夏集团成都分公司", Sort = 100, Status = 0 }, new { - Id = 142307070910542L, + Id = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", Code = "hxjt_bj_yfb", - IsDeleted = false, + IsDeleted = 0ul, Name = "研发部", - Pid = 142307070910540L, - Pids = "[0],[142307070910539],[142307070910540],", + Pid = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[8a2271d6-5bda-4544-bdd3-27e53a8b418e],", Remark = "华夏集团北京分公司研发部", Sort = 100, Status = 0 }, new { - Id = 142307070910543L, + Id = "07322be0-2015-41f2-859e-132b5e142fca", Code = "hxjt_bj_qhb", - IsDeleted = false, + IsDeleted = 0ul, Name = "企划部", - Pid = 142307070910540L, - Pids = "[0],[142307070910539],[142307070910540],", + Pid = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[8a2271d6-5bda-4544-bdd3-27e53a8b418e],", Remark = "华夏集团北京分公司企划部", Sort = 100, Status = 0 }, new { - Id = 142307070910544L, + Id = "49dc3f25-873d-4998-9767-46978d79d8e6", Code = "hxjt_cd_scb", - IsDeleted = false, + IsDeleted = 0ul, Name = "市场部", - Pid = 142307070910541L, - Pids = "[0],[142307070910539],[142307070910541],", + Pid = "127c0a5d-43ac-4370-b313-082361885aca", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[127c0a5d-43ac-4370-b313-082361885aca],", Remark = "华夏集团成都分公司市场部", Sort = 100, Status = 0 }, new { - Id = 142307070910545L, + Id = "56b7a823-cc62-492b-a91b-0b053ef2683b", Code = "hxjt_cd_cwb", - IsDeleted = false, + IsDeleted = 0ul, Name = "财务部", - Pid = 142307070910541L, - Pids = "[0],[142307070910539],[142307070910541],", + Pid = "127c0a5d-43ac-4370-b313-082361885aca", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[127c0a5d-43ac-4370-b313-082361885aca],", Remark = "华夏集团成都分公司财务部", Sort = 100, Status = 0 }, new { - Id = 142307070910546L, + Id = "e9f97d63-a585-40ff-bf0c-7406e785f660", Code = "hxjt_cd_scb_2b", - IsDeleted = false, + IsDeleted = 0ul, Name = "市场部二部", - Pid = 142307070910544L, - Pids = "[0],[142307070910539],[142307070910541],[142307070910544],", + Pid = "49dc3f25-873d-4998-9767-46978d79d8e6", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[127c0a5d-43ac-4370-b313-082361885aca],[49dc3f25-873d-4998-9767-46978d79d8e6],", Remark = "华夏集团成都分公司市场部二部", Sort = 100, Status = 0 @@ -5796,8 +5862,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysPos", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Code") @@ -5805,11 +5872,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("编码"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -5817,8 +5885,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("创建者名称"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -5838,11 +5907,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("状态"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -5860,9 +5930,9 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910547L, + Id = "269236c4-d74e-4e54-9d50-f6f61580a197", Code = "zjl", - IsDeleted = false, + IsDeleted = 0ul, Name = "总经理", Remark = "总经理", Sort = 100, @@ -5870,9 +5940,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910548L, + Id = "46c68a62-f119-4ff7-b621-0bbd77504538", Code = "fzjl", - IsDeleted = false, + IsDeleted = 0ul, Name = "副总经理", Remark = "副总经理", Sort = 101, @@ -5880,9 +5950,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910549L, + Id = "5bd8c466-2bca-4386-a551-daac78e3cee8", Code = "bmjl", - IsDeleted = false, + IsDeleted = 0ul, Name = "部门经理", Remark = "部门经理", Sort = 102, @@ -5890,9 +5960,9 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910550L, + Id = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66", Code = "gzry", - IsDeleted = false, + IsDeleted = 0ul, Name = "工作人员", Remark = "工作人员", Sort = 103, @@ -5902,8 +5972,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysRole", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Code") @@ -5911,11 +5982,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("编码"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -5927,8 +5999,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("int") .HasComment("数据范围类型"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -5948,11 +6021,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("状态"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -5970,10 +6044,10 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910554L, + Id = "6dfe9189-ce10-434e-a7a7-5cdc46e85047", Code = "sys_manager_role", DataScopeType = 1, - IsDeleted = false, + IsDeleted = 0ul, Name = "系统管理员", Remark = "系统管理员", Sort = 100, @@ -5981,10 +6055,10 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910555L, + Id = "cd187ebd-ab3d-4768-9669-85e2219c2910", Code = "common_role", DataScopeType = 5, - IsDeleted = false, + IsDeleted = 0ul, Name = "普通用户", Remark = "普通用户", Sort = 101, @@ -5994,12 +6068,14 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => { - b.Property("SysRoleId") - .HasColumnType("bigint") + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") .HasComment("角色Id"); - b.Property("SysOrgId") - .HasColumnType("bigint") + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") .HasComment("机构Id"); b.HasKey("SysRoleId", "SysOrgId"); @@ -6014,12 +6090,14 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => { - b.Property("SysRoleId") - .HasColumnType("bigint") + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") .HasComment("角色Id"); - b.Property("SysMenuId") - .HasColumnType("bigint") + b.Property("SysMenuId") + .HasColumnType("varchar(36)") + .HasColumnName("SysMenuId") .HasComment("菜单Id"); b.HasKey("SysRoleId", "SysMenuId"); @@ -6034,8 +6112,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysTenant", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Connection") @@ -6043,11 +6122,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("数据库连接"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -6063,8 +6143,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("主机"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("Name") @@ -6084,11 +6165,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("架构"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -6106,20 +6188,22 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysTimer", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("BeginTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("开始时间"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -6132,7 +6216,7 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("Cron表达式"); b.Property("EndTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("结束时间"); b.Property("Headers") @@ -6143,8 +6227,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("int") .HasComment("执行间隔时间"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("JobGroup") @@ -6180,11 +6265,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("触发器类型"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -6202,10 +6288,10 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910556L, + Id = "971bc338-0c03-46d4-8113-c7738d54ea18", BeginTime = new DateTimeOffset(new DateTime(2021, 3, 21, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), Interval = 30, - IsDeleted = false, + IsDeleted = 0ul, JobGroup = "默认分组", JobName = "百度api", RequestType = 2, @@ -6216,8 +6302,9 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysUser", b => { - b.Property("Id") - .HasColumnType("bigint") + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") .HasComment("Id主键"); b.Property("Account") @@ -6235,15 +6322,16 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("头像"); b.Property("Birthday") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("生日"); b.Property("CreatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("创建时间"); - b.Property("CreatedUserId") - .HasColumnType("bigint") + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") .HasComment("创建者Id"); b.Property("CreatedUserName") @@ -6256,8 +6344,9 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(30) CHARACTER SET utf8mb4") .HasComment("邮箱"); - b.Property("IsDeleted") - .HasColumnType("tinyint(1)") + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") .HasComment("软删除标记"); b.Property("LastLoginIp") @@ -6266,7 +6355,7 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("最后登录IP"); b.Property("LastLoginTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("最后登录时间"); b.Property("Name") @@ -6303,11 +6392,12 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("电话"); b.Property("UpdatedTime") - .HasColumnType("datetime") + .HasColumnType("datetime(6)") .HasComment("更新时间"); - b.Property("UpdatedUserId") - .HasColumnType("bigint") + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") .HasComment("修改者Id"); b.Property("UpdatedUserName") @@ -6325,11 +6415,11 @@ namespace Ewide.Database.Migrations.Migrations b.HasData( new { - Id = 142307070910551L, + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", Account = "superAdmin", AdminType = 1, Birthday = new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), - IsDeleted = false, + IsDeleted = 0ul, LastLoginTime = new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0)), Name = "superAdmin", Password = "e10adc3949ba59abbe56e057f20f883e", @@ -6339,11 +6429,11 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910552L, + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", Account = "admin", AdminType = 1, Birthday = new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), - IsDeleted = false, + IsDeleted = 0ul, LastLoginTime = new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0)), Name = "admin", Password = "e10adc3949ba59abbe56e057f20f883e", @@ -6353,11 +6443,11 @@ namespace Ewide.Database.Migrations.Migrations }, new { - Id = 142307070910553L, + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", Account = "zuohuaijun", AdminType = 2, Birthday = new DateTimeOffset(new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 8, 0, 0, 0)), - IsDeleted = false, + IsDeleted = 0ul, LastLoginTime = new DateTimeOffset(new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), new TimeSpan(0, 0, 0, 0, 0)), Name = "zuohuaijun", Password = "e10adc3949ba59abbe56e057f20f883e", @@ -6369,12 +6459,14 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => { - b.Property("SysUserId") - .HasColumnType("bigint") + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") .HasComment("用户Id"); - b.Property("SysOrgId") - .HasColumnType("bigint") + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") .HasComment("机构Id"); b.HasKey("SysUserId", "SysOrgId"); @@ -6389,12 +6481,14 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysUserRole", b => { - b.Property("SysUserId") - .HasColumnType("bigint") + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") .HasComment("用户Id"); - b.Property("SysRoleId") - .HasColumnType("bigint") + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") .HasComment("角色Id"); b.HasKey("SysUserId", "SysRoleId"); @@ -6411,9 +6505,7 @@ namespace Ewide.Database.Migrations.Migrations { b.HasOne("Ewide.Core.SysDictType", "SysDictType") .WithMany("SysDictDatas") - .HasForeignKey("TypeId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); + .HasForeignKey("TypeId"); b.Navigation("SysDictType"); });