diff --git a/20220330_Vote/Ewide.Core/Ewide.Core.xml b/20220330_Vote/Ewide.Core/Ewide.Core.xml index e3b5b96..2ebd96c 100644 --- a/20220330_Vote/Ewide.Core/Ewide.Core.xml +++ b/20220330_Vote/Ewide.Core/Ewide.Core.xml @@ -7395,6 +7395,13 @@ + + + 获取枚举注释 + + + + 邮箱类 @@ -7402,6 +7409,13 @@ 发送的信息 用户的地址 + + + 生成指定位数的随机码(数字) + + + + XML 文件转成PEM 公钥格式 diff --git a/20220330_Vote/Ewide.Core/Util/EnumHelper.cs b/20220330_Vote/Ewide.Core/Util/EnumHelper.cs new file mode 100644 index 0000000..e43f95e --- /dev/null +++ b/20220330_Vote/Ewide.Core/Util/EnumHelper.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Linq; +using System.Reflection; +using System.Text; +using System.Threading.Tasks; + +namespace Ewide.Core.Util +{ + public static class EnumHelper + { + /// + /// 获取枚举注释 + /// + /// + /// + public static string GetEnumDescription(this Enum enumValue) + { + string value = enumValue.ToString(); + FieldInfo field = enumValue.GetType().GetField(value); + object[] objs = field.GetCustomAttributes(typeof(DescriptionAttribute), false); //获取描述属性 + if (objs == null || objs.Length == 0) //当描述属性没有时,直接返回名称 + return value; + DescriptionAttribute descriptionAttribute = (DescriptionAttribute)objs[0]; + return descriptionAttribute.Description; + } + } +} diff --git a/20220330_Vote/Ewide.Core/Util/RandomHelper.cs b/20220330_Vote/Ewide.Core/Util/RandomHelper.cs new file mode 100644 index 0000000..059d415 --- /dev/null +++ b/20220330_Vote/Ewide.Core/Util/RandomHelper.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Ewide.Core.Util +{ + public class RandomHelper + { + private const string BASECODE = "ABCDEFGHJKLMNPQRSTUVWXYZ0123456789"; + /// + ///生成指定位数的随机码(数字) + /// + /// + /// + public static string GenerateRandomCode(int length) + { + var result = new StringBuilder(); + for (var i = 0; i < length; i++) + { + var r = new Random(Guid.NewGuid().GetHashCode()); + result.Append(BASECODE[r.Next(BASECODE.Length)]); + } + return result.ToString(); + } + } +} diff --git a/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330101500_v1.0.0.Designer.cs b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330101500_v1.0.0.Designer.cs new file mode 100644 index 0000000..8505535 --- /dev/null +++ b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330101500_v1.0.0.Designer.cs @@ -0,0 +1,7059 @@ +// +using System; +using Ewide.EntityFramework.Core; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +namespace Ewide.Database.Migrations.Migrations +{ + [DbContext(typeof(DefaultDbContext))] + [Migration("20220330101500_v1.0.0")] + partial class v100 + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("Relational:MaxIdentifierLength", 64) + .HasAnnotation("ProductVersion", "5.0.15"); + + modelBuilder.Entity("Ewide.Core.SysApp", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Active") + .HasColumnType("bit") + .HasColumnName("Active") + .HasComment("是否默认激活"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Color") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标颜色"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Icon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_app"); + + b + .HasComment("系统应用表"); + + b.HasData( + new + { + Id = "8b2aeb5e-09a6-4afd-bcae-8ee8e5a1e6ec", + Active = 0ul, + Code = "busapp", + IsDeleted = 0ul, + Name = "业务应用", + Sort = 100, + Status = 0 + }, + new + { + Id = "d781b8f1-0d08-48c8-b7a5-ed75ddfa676c", + Active = 1ul, + Code = "system", + IsDeleted = 0ul, + Name = "系统管理", + Sort = 100, + Status = 0 + }, + new + { + Id = "850ab86f-cd6a-4d49-b920-77dfa5d78813", + Active = 0ul, + Code = "system_tool", + IsDeleted = 0ul, + Name = "系统工具", + Sort = 100, + Status = 0 + }, + new + { + Id = "05a32be5-82e8-423f-affa-e17232a63ee1", + Active = 0ul, + Code = "advanced", + IsDeleted = 0ul, + Name = "高级功能", + Sort = 100, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysAreaCode", b => + { + b.Property("Code") + .HasMaxLength(50) + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域编码"); + + b.Property("AdCode") + .HasMaxLength(50) + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("区域的行政编码"); + + b.Property("LevelType") + .HasColumnType("int") + .HasComment("类别"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("varchar(100) CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Note") + .HasMaxLength(1000) + .HasColumnType("varchar(1000) CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.HasKey("Code"); + + b.ToTable("sys_area_code"); + + b + .HasComment("区域表"); + + b.HasData( + new + { + Code = "3302", + AdCode = "3302", + LevelType = 1, + Name = "XX市", + Note = "XX市", + Sort = 0 + }, + new + { + Code = "330266", + AdCode = "330266", + LevelType = 2, + Name = "测试区", + Note = "测试区", + Sort = 100 + }, + new + { + Code = "330266001", + AdCode = "330266001", + LevelType = 3, + Name = "测试街道", + Note = "测试街道", + Sort = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysCodeGen", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AuthorName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("作者姓名"); + + b.Property("BusName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("业务名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("GenerateType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("生成方式"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NameSpace") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("命名空间"); + + b.Property("TableName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库表名"); + + b.Property("TablePrefix") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否移除表前缀"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_code_gen"); + + b + .HasComment("代码生成表"); + }); + + modelBuilder.Entity("Ewide.Core.SysCodeGenConfig", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CodeGenId") + .HasColumnType("varchar(36)") + .HasColumnName("CodeGenId") + .HasComment("代码生成主表ID"); + + b.Property("ColumnComment") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("字段描述"); + + b.Property("ColumnKey") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("主外键"); + + b.Property("ColumnName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库字段名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("DataType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库中类型"); + + b.Property("DictTypeCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("字典Code"); + + b.Property("EffectType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("作用类型"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NetType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment(".NET数据类型"); + + b.Property("QueryType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("查询方式"); + + b.Property("QueryWhether") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否是查询条件"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("WhetherAddUpdate") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("增改"); + + b.Property("WhetherCommon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否通用字段"); + + b.Property("WhetherRequired") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否必填"); + + b.Property("WhetherRetract") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列表是否缩进"); + + b.Property("WhetherTable") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列表显示"); + + b.HasKey("Id"); + + b.ToTable("sys_code_gen_config"); + + b + .HasComment("代码生成字段配置表"); + }); + + modelBuilder.Entity("Ewide.Core.SysConfig", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("GroupCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("常量所属分类的编码"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("SysFlag") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否是系统参数"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Value") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("属性值"); + + b.HasKey("Id"); + + b.ToTable("sys_config"); + + b + .HasComment("参数配置表"); + + b.HasData( + new + { + Id = "7c2765cd-d39b-4772-8d6c-0dbcdcfa1ff8", + Code = "DILON_JWT_SECRET", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "jwt密钥", + Remark = "(重要)jwt密钥,默认为空,自行设置", + Status = 0, + SysFlag = "Y", + Value = "xiaonuo" + }, + new + { + Id = "e3553657-14cf-4c26-ba7b-dbb4bfd4bc55", + Code = "DILON_DEFAULT_PASSWORD", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "默认密码", + Remark = "默认密码", + Status = 0, + SysFlag = "Y", + Value = "123456" + }, + new + { + Id = "2c677cd2-2a54-46c6-971d-f9fe20f101f3", + Code = "DILON_TOKEN_EXPIRE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "token过期时间", + Remark = "token过期时间(单位:秒)", + Status = 0, + SysFlag = "Y", + Value = "86400" + }, + new + { + Id = "8938506d-2e00-44e0-8592-48453d43f9f5", + Code = "DILON_SESSION_EXPIRE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "session会话过期时间", + Remark = "session会话过期时间(单位:秒)", + Status = 0, + SysFlag = "Y", + Value = "7200" + }, + new + { + Id = "beb2e9e7-f4d9-43b1-bfab-3557ea232f8d", + Code = "DILON_ALIYUN_SMS_ACCESSKEY_ID", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信keyId", + Remark = "阿里云短信keyId", + Status = 0, + SysFlag = "Y", + Value = "你的keyId" + }, + new + { + Id = "ead14cd0-9fd4-4fd6-b75c-239d8b2ebed8", + Code = "DILON_ALIYUN_SMS_ACCESSKEY_SECRET", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信secret", + Remark = "阿里云短信secret", + Status = 0, + SysFlag = "Y", + Value = "你的secret" + }, + new + { + Id = "beaaafc2-3fdf-42af-9b06-ead3a6dd6306", + Code = "DILON_ALIYUN_SMS_SIGN_NAME", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信签名", + Remark = "阿里云短信签名", + Status = 0, + SysFlag = "Y", + Value = "你的签名" + }, + new + { + Id = "e26a10cf-911a-4fe0-a113-76965be749a0", + Code = "DILON_ALIYUN_SMS_LOGIN_TEMPLATE_CODE", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信-登录模板号", + Remark = "阿里云短信-登录模板号", + Status = 0, + SysFlag = "Y", + Value = "SMS_1877123456" + }, + new + { + Id = "24d3f286-efca-49af-91b4-e3ce42cce36e", + Code = "DILON_ALIYUN_SMS_INVALIDATE_MINUTES", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信默认失效时间", + Remark = "阿里云短信默认失效时间(单位:分钟)", + Status = 0, + SysFlag = "Y", + Value = "5" + }, + new + { + Id = "c6540a07-ce32-47b4-ab83-b647bdb14491", + Code = "DILON_TENCENT_SMS_SECRET_ID", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信secretId", + Remark = "腾讯云短信secretId", + Status = 0, + SysFlag = "Y", + Value = "你的secretId" + }, + new + { + Id = "a0412212-d50b-42aa-9484-3cef8fe3cc59", + Code = "DILON_TENCENT_SMS_SECRET_KEY", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信secretKey", + Remark = "腾讯云短信secretKey", + Status = 0, + SysFlag = "Y", + Value = "你的secretkey" + }, + new + { + Id = "c928ca11-5137-4b71-bf1c-f3bc95bcd34d", + Code = "DILON_TENCENT_SMS_SDK_APP_ID", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信sdkAppId", + Remark = "腾讯云短信sdkAppId", + Status = 0, + SysFlag = "Y", + Value = "1400375123" + }, + new + { + Id = "16ce1b6e-c8ad-4299-9293-6caff0e5cb49", + Code = "DILON_TENCENT_SMS_SIGN", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信签名", + Remark = "腾讯云短信签名", + Status = 0, + SysFlag = "Y", + Value = "你的签名" + }, + new + { + Id = "66e63d64-b7eb-4e6a-b5b6-c87811c2e700", + Code = "DILON_EMAIL_HOST", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱host", + Remark = "邮箱host", + Status = 0, + SysFlag = "Y", + Value = "smtp.126.com" + }, + new + { + Id = "997a9bc6-22ed-4fe6-a20c-c3c2a0b682a0", + Code = "DILON_EMAIL_USERNAME", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱用户名", + Remark = "邮箱用户名", + Status = 0, + SysFlag = "Y", + Value = "test@126.com" + }, + new + { + Id = "633d1851-41d9-4ebd-b83b-3aa4501cd1a7", + Code = "DILON_EMAIL_PASSWORD", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱密码", + Remark = "邮箱密码", + Status = 0, + SysFlag = "Y", + Value = "你的邮箱密码" + }, + new + { + Id = "67e468f7-e791-4e91-a896-62e9f7411635", + Code = "DILON_EMAIL_PORT", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱端口", + Remark = "邮箱端口", + Status = 0, + SysFlag = "Y", + Value = "465" + }, + new + { + Id = "dc462c05-de23-4f90-bcdc-88de4abcdf22", + Code = "DILON_EMAIL_SSL", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱是否开启ssl", + Remark = "邮箱是否开启ssl", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "8beac2a0-4c67-4499-a7ce-27e989546ce9", + Code = "DILON_EMAIL_FROM", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱发件人", + Remark = "邮箱发件人", + Status = 0, + SysFlag = "Y", + Value = "test@126.com" + }, + new + { + Id = "55756524-ecb8-444e-9cdd-a0fc767c4b96", + Code = "DILON_FILE_UPLOAD_PATH_FOR_WINDOWS", + GroupCode = "FILE_PATH", + IsDeleted = 0ul, + Name = "Win本地上传文件路径", + Remark = "Win本地上传文件路径", + Status = 0, + SysFlag = "Y", + Value = "D:/tmp" + }, + new + { + Id = "d2db41ee-ce1f-46de-ac00-5860634afed9", + Code = "DILON_FILE_UPLOAD_PATH_FOR_LINUX", + GroupCode = "FILE_PATH", + IsDeleted = 0ul, + Name = "Linux/Mac本地上传文件路径", + Remark = "Linux/Mac本地上传文件路径", + Status = 0, + SysFlag = "Y", + Value = "/tmp" + }, + new + { + Id = "ff8debdd-eca0-4f91-8213-e2080f76b35d", + Code = "DILON_UN_XSS_FILTER_URL", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "放开XSS过滤的接口", + Remark = "多个url可以用英文逗号隔开", + Status = 0, + SysFlag = "Y", + Value = "/demo/xssfilter,/demo/unxss" + }, + new + { + Id = "5584fb84-f580-463f-b06d-bbb80a4dfb72", + Code = "DILON_ENABLE_SINGLE_LOGIN", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "单用户登陆的开关", + Remark = "true-打开,false-关闭,如果一个人登录两次,就会将上一次登陆挤下去", + Status = 0, + SysFlag = "Y", + Value = "false" + }, + new + { + Id = "53b0afb2-4917-4b85-bcca-fe7c7723ae22", + Code = "DILON_CAPTCHA_OPEN", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "登录验证码的开关", + Remark = "true-打开,false-关闭", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "974740d8-8647-4cf8-8102-542eea53e97f", + Code = "DILON_DRUID_USERNAME", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "Druid监控登录账号", + Remark = "Druid监控登录账号", + Status = 0, + SysFlag = "Y", + Value = "superAdmin" + }, + new + { + Id = "8cee44ea-ba4c-42db-a57d-69b8b5316ca5", + Code = "DILON_DRUID_PASSWORD", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "Druid监控界面登录密码", + Remark = "Druid监控界面登录密码", + Status = 0, + SysFlag = "Y", + Value = "123456" + }, + new + { + Id = "efc235ab-9b05-4820-afe4-32a1eb59e4de", + Code = "DILON_IP_GEO_API", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "阿里云定位api接口地址", + Remark = "阿里云定位api接口地址", + Status = 0, + SysFlag = "Y", + Value = "http://api01.aliyun.venuscn.com/ip?ip=%s" + }, + new + { + Id = "d3597d8a-562a-4b24-93c7-8655c5445d74", + Code = "DILON_IP_GEO_APP_CODE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "阿里云定位appCode", + Remark = "阿里云定位appCode", + Status = 0, + SysFlag = "Y", + Value = "461535aabeae4f34861884d392f5d452" + }, + new + { + Id = "59c8a6f2-9e3c-4e9e-b9cf-8ecad5f0cb45", + Code = "DILON_ENABLE_OAUTH_LOGIN", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth用户登录的开关", + Remark = "Oauth用户登录的开关", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "ff502ee7-8129-4828-8d16-fb04562ef52c", + Code = "DILON_OAUTH_GITEE_CLIENT_ID", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录ClientId", + Remark = "Oauth码云登录ClientId", + Status = 0, + SysFlag = "Y", + Value = "你的clientId" + }, + new + { + Id = "a1d957ef-2b70-456f-8eda-b70a4cf01535", + Code = "DILON_OAUTH_GITEE_CLIENT_SECRET", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录ClientSecret", + Remark = "Oauth码云登录ClientSecret", + Status = 0, + SysFlag = "Y", + Value = "你的clientSecret" + }, + new + { + Id = "b32ee22b-671d-40bf-8070-32e1054fef96", + Code = "DILON_OAUTH_GITEE_REDIRECT_URI", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录回调地址", + Remark = "Oauth码云登录回调地址", + Status = 0, + SysFlag = "Y", + Value = "http://127.0.0.1:5566/oauth/callback/gitee" + }, + new + { + Id = "38dda85c-2a98-4768-aebd-a60ab286052c", + Code = "DILON_DEMO_ENV_FLAG", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "演示环境", + Remark = "演示环境的开关,true-打开,false-关闭,如果演示环境开启,则只能读数据不能写数据", + Status = 0, + SysFlag = "Y", + Value = "false" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysDictData", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("ExtCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("扩展编码,以json形式存储"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("TypeId") + .HasColumnType("varchar(36)") + .HasColumnName("TypeId") + .HasComment("字典类型Id"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Value") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("值"); + + b.HasKey("Id"); + + b.HasIndex("TypeId"); + + b.ToTable("sys_dict_data"); + + b + .HasComment("字典值表"); + + b.HasData( + new + { + Id = "99b965d3-1f2b-4f5b-a62a-6763b8d64a64", + Code = "1", + IsDeleted = 0ul, + Remark = "通知", + Sort = 100, + Status = 0, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Value = "通知" + }, + new + { + Id = "2616e6c2-a504-4fc6-993e-72701b48e79a", + Code = "2", + IsDeleted = 0ul, + Remark = "公告", + Sort = 100, + Status = 0, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Value = "公告" + }, + new + { + Id = "40d336cd-918a-4e90-8836-cba7c1bf6cdf", + Code = "0", + IsDeleted = 0ul, + Remark = "草稿", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "草稿" + }, + new + { + Id = "f5b49fa9-31a1-44c2-9df0-b28bf5daeee0", + Code = "1", + IsDeleted = 0ul, + Remark = "发布", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "发布" + }, + new + { + Id = "d2f73bb4-05a1-4aa5-9273-e9f3c393996d", + Code = "2", + IsDeleted = 0ul, + Remark = "撤回", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "撤回" + }, + new + { + Id = "6385916f-6ead-470e-889b-cfb9d2da6256", + Code = "3", + IsDeleted = 0ul, + Remark = "删除", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "删除" + }, + new + { + Id = "1f432e9d-f031-4787-a527-f37bb20ebe3a", + Code = "true", + IsDeleted = 0ul, + Remark = "是", + Sort = 100, + Status = 0, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Value = "是" + }, + new + { + Id = "0724636d-e870-46c6-8e1e-67f1ea5f58e5", + Code = "false", + IsDeleted = 0ul, + Remark = "否", + Sort = 100, + Status = 0, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Value = "否" + }, + new + { + Id = "881ebcf2-94a6-4938-81a4-55b81736f3b3", + Code = "1", + IsDeleted = 0ul, + Remark = "下载压缩包", + Sort = 100, + Status = 0, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Value = "下载压缩包" + }, + new + { + Id = "5bc8662d-b795-48f1-a88e-2f4be5279d37", + Code = "2", + IsDeleted = 0ul, + Remark = "生成到本项目", + Sort = 100, + Status = 0, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Value = "生成到本项目" + }, + new + { + Id = "b2a00b40-23e1-40e1-8995-60ab420eafe1", + Code = "1", + IsDeleted = 0ul, + Remark = "GET", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "GET" + }, + new + { + Id = "10070836-0c89-4b89-96e3-c65c7e33a86c", + Code = "2", + IsDeleted = 0ul, + Remark = "POST", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "POST" + }, + new + { + Id = "69a34c0b-85ce-4e53-9ad4-a592057dddd4", + Code = "3", + IsDeleted = 0ul, + Remark = "PUT", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "PUT" + }, + new + { + Id = "0e4dc1f1-8654-401b-800a-22b31f62ced1", + Code = "4", + IsDeleted = 0ul, + Remark = "DELETE", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "DELETE" + }, + new + { + Id = "443f965e-96b4-4fd2-93e9-07fe00a47205", + Code = "input", + IsDeleted = 0ul, + Remark = "输入框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "输入框" + }, + new + { + Id = "bf7be9a2-53fb-4250-87fe-49d7f741d159", + Code = "datepicker", + IsDeleted = 0ul, + Remark = "时间选择", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "时间选择" + }, + new + { + Id = "cea10919-47e2-43ab-a19b-9d41fe648310", + Code = "select", + IsDeleted = 0ul, + Remark = "下拉框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "下拉框" + }, + new + { + Id = "7d534f44-cf66-472e-b0d3-20a4cc2ad432", + Code = "radio", + IsDeleted = 0ul, + Remark = "单选框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "单选框" + }, + new + { + Id = "d63b06d4-be11-4ab7-9905-87f6f2ca056f", + Code = "switch", + IsDeleted = 0ul, + Remark = "开关", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "开关" + }, + new + { + Id = "46967f62-bac9-47fd-9278-b29c047b0c38", + Code = "checkbox", + IsDeleted = 0ul, + Remark = "多选框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "多选框" + }, + new + { + Id = "a8ac5009-93d3-4405-a6b9-81ed3e2811f2", + Code = "inputnumber", + IsDeleted = 0ul, + Remark = "数字输入框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "数字输入框" + }, + new + { + Id = "d00b3efa-2f9d-464c-8134-aa7013ef52bb", + Code = "textarea", + IsDeleted = 0ul, + Remark = "文本域", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "文本域" + }, + new + { + Id = "ad759239-e34e-4fdf-a0d0-6b39eb41f880", + Code = "==", + IsDeleted = 0ul, + Remark = "等于", + Sort = 1, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "等于" + }, + new + { + Id = "2c8e1240-f3ef-4df1-bd68-3047109ad5b4", + Code = "like", + IsDeleted = 0ul, + Remark = "模糊", + Sort = 2, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "模糊" + }, + new + { + Id = "efc18513-c17b-4fc1-8e0e-2e79fb9b0107", + Code = ">", + IsDeleted = 0ul, + Remark = "大于", + Sort = 3, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "大于" + }, + new + { + Id = "a6812d98-7785-4db2-b2f8-d476a459c5ed", + Code = "<", + IsDeleted = 0ul, + Remark = "小于", + Sort = 4, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "小于" + }, + new + { + Id = "218b5bac-343e-4594-a9da-30e391c7735c", + Code = "!=", + IsDeleted = 0ul, + Remark = "不等于", + Sort = 5, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "不等于" + }, + new + { + Id = "4825f15d-077b-4c16-8ee7-0205d653e14d", + Code = ">=", + IsDeleted = 0ul, + Remark = "大于等于", + Sort = 6, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "大于等于" + }, + new + { + Id = "7c9e8270-db5a-45b7-acd7-f95c8ee31547", + Code = "<=", + IsDeleted = 0ul, + Remark = "小于等于", + Sort = 7, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "小于等于" + }, + new + { + Id = "759ea7de-a18f-4ed7-9032-bbd1a4dadc9e", + Code = "isNotNull", + IsDeleted = 0ul, + Remark = "不为空", + Sort = 8, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "不为空" + }, + new + { + Id = "a5cdf75e-6361-490d-a043-f5929ccf65a9", + Code = "int", + IsDeleted = 0ul, + Remark = "int", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "int" + }, + new + { + Id = "cffdd4b5-d4e0-4196-81b9-02045de8b189", + Code = "long", + IsDeleted = 0ul, + Remark = "long", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "long" + }, + new + { + Id = "25be90ea-b439-4e9d-993c-48a5ce3b9358", + Code = "string", + IsDeleted = 0ul, + Remark = "string", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "string" + }, + new + { + Id = "496eef62-3849-4263-b274-a3e6090942e3", + Code = "bool", + IsDeleted = 0ul, + Remark = "bool", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "bool" + }, + new + { + Id = "681c02ea-7570-4a97-85a7-957a77314df6", + Code = "double", + IsDeleted = 0ul, + Remark = "double", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "double" + }, + new + { + Id = "259698cf-b25d-427a-8d22-33b9c1899eea", + Code = "DateTime", + IsDeleted = 0ul, + Remark = "DateTime", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "DateTime" + }, + new + { + Id = "a30c682e-744a-468d-a74f-827928c96c01", + Code = "float", + IsDeleted = 0ul, + Remark = "float", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "float" + }, + new + { + Id = "4b68cb83-f173-4864-bd10-a7a7d5248102", + Code = "decimal", + IsDeleted = 0ul, + Remark = "decimal", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "decimal" + }, + new + { + Id = "134d4173-8d93-4c19-bf6b-a640d35da097", + Code = "Guid", + IsDeleted = 0ul, + Remark = "Guid", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "Guid" + }, + new + { + Id = "c597306f-5fd0-4f75-9a46-12de340cd199", + Code = "DateTimeOffset", + IsDeleted = 0ul, + Remark = "DateTimeOffset", + Sort = 100, + Status = 0, + 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("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("父Ids"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_dict_type"); + + b + .HasComment("字典类型表"); + + b.HasData( + new + { + Id = "b0cfa91c-1189-4f39-bc5a-f035885d0604", + Code = "common_status", + IsDeleted = 0ul, + Name = "通用状态", + Remark = "通用状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "301ed120-dfc5-4d7c-af59-b56a519581c9", + Code = "sex", + IsDeleted = 0ul, + Name = "性别", + Remark = "性别字典", + Sort = 100, + Status = 0 + }, + new + { + Id = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Code = "consts_type", + IsDeleted = 0ul, + Name = "常量的分类", + Remark = "常量的分类,用于区别一组配置", + Sort = 100, + Status = 0 + }, + new + { + Id = "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", + Code = "yes_or_no", + IsDeleted = 0ul, + Name = "是否", + Remark = "是否", + Sort = 100, + Status = 0 + }, + new + { + Id = "2cecf329-cf95-44eb-a8d7-3fb77b13e093", + Code = "vis_type", + IsDeleted = 0ul, + Name = "访问类型", + Remark = "访问类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "e973d383-c28e-42e0-9e23-5f2bd592fef5", + Code = "menu_type", + IsDeleted = 0ul, + Name = "菜单类型", + Remark = "菜单类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "058db370-3718-42c3-8ba7-095341b1fe13", + Code = "send_type", + IsDeleted = 0ul, + Name = "发送类型", + Remark = "发送类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Code = "open_type", + IsDeleted = 0ul, + Name = "打开方式", + Remark = "打开方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "b3235678-f7fe-442b-8fba-e792a89b78f2", + Code = "menu_weight", + IsDeleted = 0ul, + Name = "菜单权重", + Remark = "菜单权重", + Sort = 100, + Status = 0 + }, + new + { + Id = "a2068ed1-62a6-463c-b720-06111d994079", + Code = "data_scope_type", + IsDeleted = 0ul, + Name = "数据范围类型", + Remark = "数据范围类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", + Code = "sms_send_source", + IsDeleted = 0ul, + Name = "短信发送来源", + Remark = "短信发送来源", + Sort = 100, + Status = 0 + }, + new + { + Id = "8461bd1d-311b-487e-b579-d6049c6fb191", + Code = "op_type", + IsDeleted = 0ul, + Name = "操作类型", + Remark = "操作类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "b924e0c1-3f23-4e37-9f27-90e945381304", + Code = "file_storage_location", + IsDeleted = 0ul, + Name = "文件存储位置", + Remark = "文件存储位置", + Sort = 100, + Status = 0 + }, + new + { + Id = "0f1b8660-d932-4a53-a681-a38bebae91e0", + Code = "run_status", + IsDeleted = 0ul, + Name = "运行状态", + Remark = "定时任务运行状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Code = "notice_type", + IsDeleted = 0ul, + Name = "通知公告类型", + Remark = "通知公告类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Code = "notice_status", + IsDeleted = 0ul, + Name = "通知公告状态", + Remark = "通知公告状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Code = "yes_true_false", + IsDeleted = 0ul, + Name = "是否boolean", + Remark = "是否boolean", + Sort = 100, + Status = 0 + }, + new + { + Id = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Code = "code_gen_create_type", + IsDeleted = 0ul, + Name = "代码生成方式", + Remark = "代码生成方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Code = "request_type", + IsDeleted = 0ul, + Name = "请求方式", + Remark = "请求方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Code = "code_gen_effect_type", + IsDeleted = 0ul, + Name = "代码生成作用类型", + Remark = "代码生成作用类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Code = "code_gen_query_type", + IsDeleted = 0ul, + Name = "代码生成查询类型", + Remark = "代码生成查询类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "28f653d4-e573-4f54-8e5c-4e308780145a", + Code = "code_gen_net_type", + IsDeleted = 0ul, + Name = "代码生成.NET类型", + Remark = "代码生成.NET类型", + Sort = 100, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysEmp", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("用户Id"); + + b.Property("JobNum") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("工号"); + + b.Property("OrgId") + .HasColumnType("varchar(36)") + .HasColumnName("OrgId") + .HasComment("机构Id"); + + b.Property("OrgName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("机构名称"); + + b.HasKey("Id"); + + b.ToTable("sys_emp"); + + b + .HasComment("员工表"); + + b.HasData( + new + { + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + JobNum = "D1001", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }, + new + { + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + JobNum = "D1002", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }, + new + { + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", + JobNum = "D1003", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => + { + b.Property("SysEmpId") + .HasColumnType("varchar(36)") + .HasColumnName("SysEmpId") + .HasComment("员工Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") + .HasComment("职位Id"); + + b.HasKey("SysEmpId", "SysOrgId", "SysPosId"); + + b.HasIndex("SysOrgId"); + + b.HasIndex("SysPosId"); + + b.ToTable("sys_emp_ext_org_pos"); + + b + .HasComment("员工附属机构职位表"); + + b.HasData( + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "127c0a5d-43ac-4370-b313-082361885aca", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + SysPosId = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66" + }, + new + { + 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("varchar(36)") + .HasColumnName("SysEmpId") + .HasComment("员工Id"); + + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") + .HasComment("职位Id"); + + b.HasKey("SysEmpId", "SysPosId"); + + b.HasIndex("SysPosId"); + + b.ToTable("sys_emp_pos"); + + b + .HasComment("员工职位表"); + + b.HasData( + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" + }, + new + { + SysEmpId = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" + }, + new + { + SysEmpId = "16a74726-e156-499f-9942-0e0e24ad0c3f", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysFile", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("FileBucket") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件仓库"); + + b.Property("FileLocation") + .HasColumnType("int") + .HasComment("文件存储位置"); + + b.Property("FileObjectName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("存储到bucket的名称"); + + b.Property("FileOriginName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件名称"); + + b.Property("FilePath") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("存储路径"); + + b.Property("FileSizeInfo") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件大小信息"); + + b.Property("FileSizeKb") + .HasColumnType("bigint") + .HasComment("文件大小kb"); + + b.Property("FileSuffix") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件后缀"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_file"); + + b + .HasComment("文件信息表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogAudit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("ColumnName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("操作时间"); + + b.Property("NewValue") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("新值"); + + b.Property("OldValue") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("旧值"); + + b.Property("Operate") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作方式"); + + b.Property("TableName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("表名"); + + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") + .HasComment("操作人Id"); + + b.Property("UserName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作人名称"); + + b.HasKey("Id"); + + b.ToTable("sys_log_audit"); + + b + .HasComment("审计日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogOp", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Account") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作人"); + + b.Property("Browser") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("浏览器"); + + b.Property("ClassName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("类名称"); + + b.Property("ElapsedTime") + .HasColumnType("bigint") + .HasComment("耗时"); + + b.Property("Ip") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("IP"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("地址"); + + b.Property("Message") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("具体消息"); + + b.Property("MethodName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("方法名称"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("OpTime") + .HasColumnType("datetime") + .HasComment("操作时间"); + + b.Property("OpType") + .HasColumnType("int") + .HasComment("操作类型"); + + b.Property("Os") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作系统"); + + b.Property("Param") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求参数"); + + b.Property("ReqMethod") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求方式"); + + b.Property("Result") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("返回结果"); + + b.Property("Success") + .HasColumnType("tinyint(1)") + .HasComment("是否执行成功"); + + b.Property("Url") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求地址"); + + b.HasKey("Id"); + + b.ToTable("sys_log_op"); + + b + .HasComment("操作日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogVis", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Account") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("访问人"); + + b.Property("Browser") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("浏览器"); + + b.Property("Ip") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("IP"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("地址"); + + b.Property("Message") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("具体消息"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Os") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作系统"); + + b.Property("Success") + .HasColumnType("tinyint(1)") + .HasComment("是否执行成功"); + + b.Property("VisTime") + .HasColumnType("datetime") + .HasComment("访问时间"); + + b.Property("VisType") + .HasColumnType("int") + .HasComment("访问类型"); + + b.HasKey("Id"); + + b.ToTable("sys_log_vis"); + + b + .HasComment("访问日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysMenu", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Application") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("应用分类"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Component") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("组件地址"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Icon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Link") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("内链地址"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("OpenType") + .HasColumnType("int") + .HasComment("打开方式"); + + b.Property("Permission") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("权限标识"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("父Ids"); + + b.Property("Redirect") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("重定向地址"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Router") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("路由地址"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("菜单类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Visible") + .HasColumnType("bit") + .HasColumnName("Visible") + .HasComment("是否可见"); + + b.Property("VisibleParent") + .HasColumnType("bit") + .HasColumnName("VisibleParent") + .HasComment("关联菜单显示"); + + b.Property("Weight") + .HasColumnType("int") + .HasComment("权重"); + + b.HasKey("Id"); + + b.ToTable("sys_menu"); + + b + .HasComment("菜单表"); + + b.HasData( + new + { + Id = "83ce02c9-b37f-4885-96e3-9b34371edb2e", + Application = "system", + Code = "system_index", + Component = "RouteView", + Icon = "home", + IsDeleted = 0ul, + Name = "主控面板", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Redirect = "/analysis", + Router = "/", + Sort = 1, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "914a520d-9e4f-465b-ae05-7248b37d4be1", + Application = "system", + Code = "system_index_dashboard", + Component = "system/dashboard/Analysis", + IsDeleted = 0ul, + Name = "分析页", + OpenType = 0, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "72981ad9-9036-4aa7-b8f4-dc407eda50b4", + Application = "system", + Code = "system_index_workplace", + Component = "system/dashboard/Workplace", + IsDeleted = 0ul, + Name = "工作台", + OpenType = 0, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", + Application = "system", + Code = "sys_mgr", + Component = "PageView", + Icon = "team", + IsDeleted = 0ul, + Name = "组织架构", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/sys", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Application = "system", + Code = "sys_user_mgr", + Component = "system/user/index", + IsDeleted = 0ul, + Name = "用户管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bff7e542-6463-4f82-a03d-b1022e60d4b6", + Application = "system", + Code = "sys_user_mgr_page", + IsDeleted = 0ul, + Name = "用户查询", + OpenType = 0, + Permission = "sysUser:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "936440c7-93ef-4d2f-adff-6151f4317355", + Application = "system", + Code = "sys_user_mgr_edit", + IsDeleted = 0ul, + Name = "用户编辑", + OpenType = 0, + Permission = "sysUser:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "281888e3-d183-4711-ba27-298ef6e64659", + Application = "system", + Code = "sys_user_mgr_add", + IsDeleted = 0ul, + Name = "用户增加", + OpenType = 0, + Permission = "sysUser:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e4aff800-d34a-416b-bd6e-dcebaa1dd436", + Application = "system", + Code = "sys_user_mgr_delete", + IsDeleted = 0ul, + Name = "用户删除", + OpenType = 0, + Permission = "sysUser:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "7a266494-e17b-480d-8f50-cc234e6fe424", + Application = "system", + Code = "sys_user_mgr_detail", + IsDeleted = 0ul, + Name = "用户详情", + OpenType = 0, + Permission = "sysUser:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0d93f763-20d3-4c95-add3-3d94770b110e", + Application = "system", + Code = "sys_user_mgr_export", + IsDeleted = 0ul, + Name = "用户导出", + OpenType = 0, + Permission = "sysUser:export", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "17d047c3-6e95-4f7d-93db-97817d886fa2", + Application = "system", + Code = "sys_user_mgr_selector", + IsDeleted = 0ul, + Name = "用户选择器", + OpenType = 0, + Permission = "sysUser:selector", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5fc44256-2e56-4805-9382-b5504ca5b6cb", + Application = "system", + Code = "sys_user_mgr_grant_role", + IsDeleted = 0ul, + Name = "用户授权角色", + OpenType = 0, + Permission = "sysUser:grantRole", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ceff7899-6779-4708-b9ed-a2d5b488cff2", + Application = "system", + Code = "sys_user_mgr_own_role", + IsDeleted = 0ul, + Name = "用户拥有角色", + OpenType = 0, + Permission = "sysUser:ownRole", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "38ba9ccc-eb96-4a60-a5ab-f6ea013f8291", + Application = "system", + Code = "sys_user_mgr_grant_data", + IsDeleted = 0ul, + Name = "用户授权数据", + OpenType = 0, + Permission = "sysUser:grantData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf2f8faf-b280-456c-8865-64115e04019f", + Application = "system", + Code = "sys_user_mgr_own_data", + IsDeleted = 0ul, + Name = "用户拥有数据", + OpenType = 0, + Permission = "sysUser:ownData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "711563e5-fed6-44d6-bcf3-138c73cfbfca", + Application = "system", + Code = "sys_user_mgr_update_info", + IsDeleted = 0ul, + Name = "用户更新信息", + OpenType = 0, + Permission = "sysUser:updateInfo", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "306fe9bf-3132-4011-9f3f-1a2f4ead7734", + Application = "system", + Code = "sys_user_mgr_update_pwd", + IsDeleted = 0ul, + Name = "用户修改密码", + OpenType = 0, + Permission = "sysUser:updatePwd", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "791b0d88-7e25-490f-a94f-a2e32bb3b6e6", + Application = "system", + Code = "sys_user_mgr_change_status", + IsDeleted = 0ul, + Name = "用户修改状态", + OpenType = 0, + Permission = "sysUser:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9d681aac-528a-46b0-9718-ffc4abe9c29e", + Application = "system", + Code = "sys_user_mgr_update_avatar", + IsDeleted = 0ul, + Name = "用户修改头像", + OpenType = 0, + Permission = "sysUser:updateAvatar", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "471b5259-5f55-4643-841c-f07089cfafdf", + Application = "system", + Code = "sys_user_mgr_reset_pwd", + IsDeleted = 0ul, + Name = "用户重置密码", + OpenType = 0, + Permission = "sysUser:resetPwd", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "471d3098-90a4-47e1-bd07-5d3ed8d21fb0", + Application = "system", + Code = "sys_user_mgr_login", + IsDeleted = 0ul, + Name = "用户登录信息", + OpenType = 0, + Permission = "getLoginUser", + 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 = 0ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Application = "system", + Code = "sys_org_mgr", + Component = "system/org/index", + IsDeleted = 0ul, + Name = "机构管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "b7c34c9b-933e-4c48-b1d0-af15a1f7da1f", + Application = "system", + Code = "sys_org_mgr_page", + IsDeleted = 0ul, + Name = "机构查询", + OpenType = 0, + Permission = "sysOrg:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "917064b2-c715-4fa4-9b2d-20a11b784ed1", + Application = "system", + Code = "sys_org_mgr_list", + IsDeleted = 0ul, + Name = "机构列表", + OpenType = 0, + Permission = "sysOrg:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d7c18d60-f28f-4a57-90b3-26fc95249ae0", + Application = "system", + Code = "sys_org_mgr_add", + IsDeleted = 0ul, + Name = "机构增加", + OpenType = 0, + Permission = "sysOrg:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e65eb1e3-cc9e-4309-8c7a-9ac41765b239", + Application = "system", + Code = "sys_org_mgr_edit", + IsDeleted = 0ul, + Name = "机构编辑", + OpenType = 0, + Permission = "sysOrg:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c2450c4c-89c6-46e8-8f89-11331790cbe3", + Application = "system", + Code = "sys_org_mgr_delete", + IsDeleted = 0ul, + Name = "机构删除", + OpenType = 0, + Permission = "sysOrg:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "695a6018-82c3-466e-a2a1-dab16039bfdb", + Application = "system", + Code = "sys_org_mgr_detail", + IsDeleted = 0ul, + Name = "机构详情", + OpenType = 0, + Permission = "sysOrg:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2d153046-279b-43be-8f57-46875118fd2c", + Application = "system", + Code = "sys_org_mgr_tree", + IsDeleted = 0ul, + Name = "机构树", + OpenType = 0, + Permission = "sysOrg:tree", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Application = "system", + Code = "sys_pos_mgr", + Component = "system/pos/index", + IsDeleted = 0ul, + Name = "职位管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d2436601-bc48-4610-ba67-5b666f8ce33a", + Application = "system", + Code = "sys_pos_mgr_page", + IsDeleted = 0ul, + Name = "职位查询", + OpenType = 0, + Permission = "sysPos:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1305efaa-b81a-475f-9dde-8f6549ca7743", + Application = "system", + Code = "sys_pos_mgr_list", + IsDeleted = 0ul, + Name = "职位列表", + OpenType = 0, + Permission = "sysPos:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c227e732-f231-4488-89b0-d1c9dad78950", + Application = "system", + Code = "sys_pos_mgr_add", + IsDeleted = 0ul, + Name = "职位增加", + OpenType = 0, + Permission = "sysPos:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9dafbe04-83c9-482c-9c83-81f4da045da5", + Application = "system", + Code = "sys_pos_mgr_edit", + IsDeleted = 0ul, + Name = "职位编辑", + OpenType = 0, + Permission = "sysPos:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "031df05e-b7c6-4ecd-aff2-f189c994e86d", + Application = "system", + Code = "sys_pos_mgr_delete", + IsDeleted = 0ul, + Name = "职位删除", + OpenType = 0, + Permission = "sysPos:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fe5ee8a1-2145-43c6-bdeb-518f3a9c127d", + Application = "system", + Code = "sys_pos_mgr_detail", + IsDeleted = 0ul, + Name = "职位详情", + OpenType = 0, + Permission = "sysPos:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", + Application = "system", + Code = "auth_manager", + Component = "PageView", + Icon = "safety-certificate", + IsDeleted = 0ul, + Name = "权限管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/auth", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Application = "system", + Code = "sys_app_mgr", + Component = "system/app/index", + IsDeleted = 0ul, + Name = "应用管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "dbaa7a6d-234f-4cc9-977f-4544b8bb45b8", + Application = "system", + Code = "sys_app_mgr_page", + IsDeleted = 0ul, + Name = "应用查询", + OpenType = 0, + Permission = "sysApp:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ab7b2b41-b0bc-4b9c-9017-f5c6918e393e", + Application = "system", + Code = "sys_app_mgr_list", + IsDeleted = 0ul, + Name = "应用列表", + OpenType = 0, + Permission = "sysApp:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f4e1d63b-5d92-46eb-82aa-267335a5a3f3", + Application = "system", + Code = "sys_app_mgr_add", + IsDeleted = 0ul, + Name = "应用增加", + OpenType = 0, + Permission = "sysApp:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f33a3791-1c01-4d30-bcc3-d9fdf5246376", + Application = "system", + Code = "sys_app_mgr_edit", + IsDeleted = 0ul, + Name = "应用编辑", + OpenType = 0, + Permission = "sysApp:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e0a6cf90-0a8b-44e4-a32f-5f43ef996b82", + Application = "system", + Code = "sys_app_mgr_delete", + IsDeleted = 0ul, + Name = "应用删除", + OpenType = 0, + Permission = "sysApp:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a0abe974-5ae9-440b-9d16-2412eab52d70", + Application = "system", + Code = "sys_app_mgr_detail", + IsDeleted = 0ul, + Name = "应用详情", + OpenType = 0, + Permission = "sysApp:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f640e243-b439-4109-8aea-c66205ef6b12", + Application = "system", + Code = "sys_app_mgr_set_as_default", + IsDeleted = 0ul, + Name = "设为默认应用", + OpenType = 0, + Permission = "sysApp:setAsDefault", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Application = "system", + Code = "sys_menu_mgr", + Component = "system/menu/index", + IsDeleted = 0ul, + Name = "菜单管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e9982e73-1833-4674-9403-ee3dee2efdf7", + Application = "system", + Code = "sys_menu_mgr_list", + IsDeleted = 0ul, + Name = "菜单列表", + OpenType = 0, + Permission = "sysMenu:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "758e15e6-75a6-4b72-8f94-5da379e53354", + Application = "system", + Code = "sys_menu_mgr_add", + IsDeleted = 0ul, + Name = "菜单增加", + OpenType = 0, + Permission = "sysMenu:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "07139c19-6b39-49f5-9e22-c4dc7e9d947b", + Application = "system", + Code = "sys_menu_mgr_edit", + IsDeleted = 0ul, + Name = "菜单编辑", + OpenType = 0, + Permission = "sysMenu:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "857fb581-78ff-4884-a6fb-8dfb4951fef9", + Application = "system", + Code = "sys_menu_mgr_delete", + IsDeleted = 0ul, + Name = "菜单删除", + OpenType = 0, + Permission = "sysMenu:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cd43a8ee-9f98-4355-bf81-ba40f388b23f", + Application = "system", + Code = "sys_menu_mgr_detail", + IsDeleted = 0ul, + Name = "菜单详情", + OpenType = 0, + Permission = "sysMenu:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ec318997-596d-403a-91be-f303b234b02d", + Application = "system", + Code = "sys_menu_mgr_grant_tree", + IsDeleted = 0ul, + Name = "菜单授权树", + OpenType = 0, + Permission = "sysMenu:treeForGrant", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "3892ef5d-39b2-4a4d-8047-cb96542fb54f", + Application = "system", + Code = "sys_menu_mgr_tree", + IsDeleted = 0ul, + Name = "菜单树", + OpenType = 0, + Permission = "sysMenu:tree", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "00831a3b-d080-411f-afb9-9f415334b192", + Application = "system", + Code = "sys_menu_mgr_change", + IsDeleted = 0ul, + Name = "菜单切换", + OpenType = 0, + Permission = "sysMenu:change", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Application = "system", + Code = "sys_role_mgr", + Component = "system/role/index", + IsDeleted = 0ul, + Name = "角色管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4241f4a0-89ab-4a6a-80bb-2830f855d3be", + Application = "system", + Code = "sys_role_mgr_page", + IsDeleted = 0ul, + Name = "角色查询", + OpenType = 0, + Permission = "sysRole:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6a48beb1-c828-43d6-af3d-3e18ef163070", + Application = "system", + Code = "sys_role_mgr_add", + IsDeleted = 0ul, + Name = "角色增加", + OpenType = 0, + Permission = "sysRole:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1198a602-a23d-4a06-aa9a-76aaf5f065a7", + Application = "system", + Code = "sys_role_mgr_edit", + IsDeleted = 0ul, + Name = "角色编辑", + OpenType = 0, + Permission = "sysRole:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e7708eeb-2c87-4c3d-bc71-c395e5d708db", + Application = "system", + Code = "sys_role_mgr_delete", + IsDeleted = 0ul, + Name = "角色删除", + OpenType = 0, + Permission = "sysRole:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "63ab477f-88fb-4f4b-9dcd-0cb83ac767f6", + Application = "system", + Code = "sys_role_mgr_detail", + IsDeleted = 0ul, + Name = "角色详情", + OpenType = 0, + Permission = "sysRole:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2622348c-dd8f-4ade-a350-de0a8f01e1f6", + Application = "system", + Code = "sys_role_mgr_drop_down", + IsDeleted = 0ul, + Name = "角色下拉", + OpenType = 0, + Permission = "sysRole:dropDown", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "73d84863-b381-40be-84bc-ec8381fa6c0a", + Application = "system", + Code = "sys_role_mgr_grant_menu", + IsDeleted = 0ul, + Name = "角色授权菜单", + OpenType = 0, + Permission = "sysRole:grantMenu", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bbc5e792-3d72-4d0d-8ddb-25cf2c4e1374", + Application = "system", + Code = "sys_role_mgr_own_menu", + IsDeleted = 0ul, + Name = "角色拥有菜单", + OpenType = 0, + Permission = "sysRole:ownMenu", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "19234814-6007-484c-818c-88a664a2a339", + Application = "system", + Code = "sys_role_mgr_grant_data", + IsDeleted = 0ul, + Name = "角色授权数据", + OpenType = 0, + Permission = "sysRole:grantData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "19e5c5f6-b598-4c42-8eed-3d46fb11b465", + Application = "system", + Code = "sys_role_mgr_own_data", + IsDeleted = 0ul, + Name = "角色拥有数据", + OpenType = 0, + Permission = "sysRole:ownData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Application = "system", + Code = "system_tools", + Component = "PageView", + Icon = "euro", + IsDeleted = 0ul, + Name = "开发管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/tools", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Application = "system", + Code = "system_tools_config", + Component = "system/config/index", + IsDeleted = 0ul, + Name = "系统配置", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c14c82bd-632d-4cc9-9236-37aa64b15ecf", + Application = "system", + Code = "system_tools_config_page", + IsDeleted = 0ul, + Name = "配置查询", + OpenType = 0, + Permission = "sysConfig:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "78d31d68-9c9b-4e02-94c9-8a74eea4c1fb", + Application = "system", + Code = "system_tools_config_list", + IsDeleted = 0ul, + Name = "配置列表", + OpenType = 0, + Permission = "sysConfig:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fc91afb5-2b9e-428b-b5ff-b0ef35dd5336", + Application = "system", + Code = "system_tools_config_add", + IsDeleted = 0ul, + Name = "配置增加", + OpenType = 0, + Permission = "sysConfig:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1efb72e8-3449-490a-92e0-308b124c338f", + Application = "system", + Code = "system_tools_config_edit", + IsDeleted = 0ul, + Name = "配置编辑", + OpenType = 0, + Permission = "sysConfig:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5760230f-e6fc-4c3d-ba38-1c8a5a923eb3", + Application = "system", + Code = "system_tools_config_delete", + IsDeleted = 0ul, + Name = "配置删除", + OpenType = 0, + Permission = "sysConfig:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6bfc0c53-5d6c-437c-9757-bc79e664d0f5", + Application = "system", + Code = "system_tools_config_detail", + IsDeleted = 0ul, + Name = "配置详情", + OpenType = 0, + Permission = "sysConfig:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f7fe47a3-86b2-4660-9920-0c9836755666", + Application = "system", + Code = "sys_app_mgr_set_as_default", + IsDeleted = 0ul, + Name = "设为默认应用", + OpenType = 0, + Permission = "sysApp:setAsDefault", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", + Application = "system", + Code = "sys_email_mgr", + Component = "system/email/index", + IsDeleted = 0ul, + Name = "邮件发送", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4d4cf5b3-bd4c-4f17-9fb2-47b28b00681f", + Application = "system", + Code = "sys_email_mgr_send_email", + IsDeleted = 0ul, + Name = "发送文本邮件", + OpenType = 0, + Permission = "email:sendEmail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "51e45073-1461-4b3b-ae06-d0d3dcf222e0", + Application = "system", + Code = "sys_email_mgr_send_email_html", + IsDeleted = 0ul, + Name = "发送html邮件", + OpenType = 0, + Permission = "email:sendEmailHtml", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", + Application = "system", + Code = "sys_sms_mgr", + Component = "system/sms/index", + IsDeleted = 0ul, + Name = "短信管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2afa4925-b927-457e-88a1-d215b7d75fb6", + Application = "system", + Code = "sys_sms_mgr_page", + IsDeleted = 0ul, + Name = "短信发送查询", + OpenType = 0, + Permission = "sms:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "97c1b073-5e19-4542-89e2-d8da44d0f1df", + Application = "system", + Code = "sys_sms_mgr_send_login_message", + IsDeleted = 0ul, + Name = "发送验证码短信", + OpenType = 0, + Permission = "sms:sendLoginMessage", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d2454bd2-f300-4b28-95c0-12432c28cbdf", + Application = "system", + Code = "sys_sms_mgr_validate_message", + IsDeleted = 0ul, + Name = "验证短信验证码", + OpenType = 0, + Permission = "sms:validateMessage", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Application = "system", + Code = "sys_dict_mgr", + Component = "system/dict/index", + IsDeleted = 0ul, + Name = "字典管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "70c5e8c5-6104-4e53-99c0-4743e557456b", + Application = "system", + Code = "sys_dict_mgr_dict_type_page", + IsDeleted = 0ul, + Name = "字典类型查询", + OpenType = 0, + Permission = "sysDictType:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1bd1d982-e05a-4bdc-a4e0-752d94f3196c", + Application = "system", + Code = "sys_dict_mgr_dict_type_list", + IsDeleted = 0ul, + Name = "字典类型列表", + OpenType = 0, + Permission = "sysDictType:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bd09b023-0884-4f31-8cf7-f66f789fa3db", + Application = "system", + Code = "sys_dict_mgr_dict_type_add", + IsDeleted = 0ul, + Name = "字典类型增加", + OpenType = 0, + Permission = "sysDictType:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1f7a41ff-5a46-449c-81f3-1618dfdcb4cd", + Application = "system", + Code = "sys_dict_mgr_dict_type_delete", + IsDeleted = 0ul, + Name = "字典类型删除", + OpenType = 0, + Permission = "sysDictType:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2381cde4-2174-47e7-a1e5-e58da70e7a11", + Application = "system", + Code = "sys_dict_mgr_dict_type_edit", + IsDeleted = 0ul, + Name = "字典类型编辑", + OpenType = 0, + Permission = "sysDictType:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8f7d3c74-8800-4922-9662-ac6af378c882", + Application = "system", + Code = "sys_dict_mgr_dict_type_detail", + IsDeleted = 0ul, + Name = "字典类型详情", + OpenType = 0, + Permission = "sysDictType:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4f87b6de-be62-4398-b680-1f8611f2cd70", + Application = "system", + Code = "sys_dict_mgr_dict_type_drop_down", + IsDeleted = 0ul, + Name = "字典类型下拉", + OpenType = 0, + Permission = "sysDictType:dropDown", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "07c799b2-e8e9-4955-83da-97560f161d87", + Application = "system", + Code = "sys_dict_mgr_dict_type_change_status", + IsDeleted = 0ul, + Name = "字典类型修改状态", + OpenType = 0, + Permission = "sysDictType:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "29be8e3c-c2bb-4162-b282-fdf58c218b9d", + Application = "system", + Code = "sys_dict_mgr_dict_page", + IsDeleted = 0ul, + Name = "字典值查询", + OpenType = 0, + Permission = "sysDictData:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "b8cbc4e1-ac10-4cda-b1e4-f816a2632d02", + Application = "system", + Code = "sys_dict_mgr_dict_list", + IsDeleted = 0ul, + Name = "字典值列表", + OpenType = 0, + Permission = "sysDictData:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54e97bde-94d6-42df-89e3-4c3ace153b22", + Application = "system", + Code = "sys_dict_mgr_dict_add", + IsDeleted = 0ul, + Name = "字典值增加", + OpenType = 0, + Permission = "sysDictData:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "be98da08-a3b0-463c-8208-05d843620258", + Application = "system", + Code = "sys_dict_mgr_dict_delete", + IsDeleted = 0ul, + Name = "字典值删除", + OpenType = 0, + Permission = "sysDictData:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "38809fc3-163f-4fe9-a488-c9bb5bce752a", + Application = "system", + Code = "sys_dict_mgr_dict_edit", + IsDeleted = 0ul, + Name = "字典值编辑", + OpenType = 0, + Permission = "sysDictData:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fc511b42-f0a1-489b-8418-7ef94b0fb374", + Application = "system", + Code = "sys_role_mgr_grant_data", + IsDeleted = 0ul, + Name = "字典值详情", + OpenType = 0, + Permission = "sysDictData:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "200428b3-1605-4c70-b840-e691e302ae69", + Application = "system", + Code = "sys_dict_mgr_dict_change_status", + IsDeleted = 0ul, + Name = "字典值修改状态", + OpenType = 0, + Permission = "sysDictData:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d40f424d-d5fc-4b86-a2bd-3a5a76076bc1", + Application = "system", + Code = "sys_swagger_mgr", + Component = "Iframe", + IsDeleted = 0ul, + Link = "http://127.0.0.1:5566/", + Name = "接口文档", + OpenType = 2, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "eec4563e-9307-4ccd-ac3a-93598badb195", + Application = "system", + Code = "sys_log_mgr", + Component = "PageView", + Icon = "read", + IsDeleted = 0ul, + Name = "日志管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/log", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "322b2cb6-df29-483b-b011-54dce1532fae", + Application = "system", + Code = "sys_log_mgr_vis_log", + Component = "system/log/vislog/index", + IsDeleted = 0ul, + Name = "访问日志", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "122641c1-ab6d-4f91-9527-16fc8fea9708", + Application = "system", + Code = "sys_log_mgr_vis_log_page", + IsDeleted = 0ul, + Name = "访问日志查询", + OpenType = 0, + Permission = "sysVisLog:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f2367804-6382-4e72-8282-e4f6f988ecd1", + Application = "system", + Code = "sys_log_mgr_vis_log_delete", + IsDeleted = 0ul, + Name = "访问日志清空", + OpenType = 0, + Permission = "sysVisLog:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", + Application = "system", + Code = "sys_log_mgr_op_log", + Component = "system/log/oplog/index", + IsDeleted = 0ul, + Name = "操作日志", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "7f44f49e-6458-4149-bbcd-9a937f552cec", + Application = "system", + Code = "sys_log_mgr_op_log_page", + IsDeleted = 0ul, + Name = "操作日志查询", + OpenType = 0, + Permission = "sysOpLog:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "263e0c00-2796-411c-9f50-0aa361f7781c", + Application = "system", + Code = "sys_log_mgr_op_log_delete", + IsDeleted = 0ul, + Name = "操作日志清空", + OpenType = 0, + Permission = "sysOpLog:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", + Application = "system", + Code = "sys_monitor_mgr", + Component = "PageView", + Icon = "deployment-unit", + IsDeleted = 0ul, + Name = "系统监控", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/monitor", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c1e70042-fe3f-4efc-a6cc-86de8507f948", + Application = "system", + Code = "sys_monitor_mgr_machine_monitor", + Component = "system/machine/index", + IsDeleted = 0ul, + Name = "服务监控", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "444f3658-defe-47a7-880e-bf0af8b66591", + Application = "system", + Code = "sys_monitor_mgr_machine_monitor_query", + IsDeleted = 0ul, + Name = "服务监控查询", + OpenType = 0, + Permission = "sysMachine:query", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "49a8b476-327b-4f33-87b8-2d9bc50dc390", + Application = "system", + Code = "sys_monitor_mgr_online_user", + Component = "system/onlineUser/index", + IsDeleted = 0ul, + Name = "在线用户", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4785eb5a-678a-4f9c-b07c-3b92acdd6de0", + Application = "system", + Code = "sys_monitor_mgr_online_user_list", + IsDeleted = 0ul, + Name = "在线用户列表", + OpenType = 0, + Permission = "sysOnlineUser:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4dbf6765-ac79-4708-a9d5-16a4d4b09164", + Application = "system", + Code = "sys_monitor_mgr_online_user_force_exist", + IsDeleted = 0ul, + Name = "在线用户强退", + OpenType = 0, + Permission = "sysOnlineUser:forceExist", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "31c2af01-b856-4a1d-a131-cdf8e847b1a4", + Application = "system", + Code = "sys_monitor_mgr_druid", + Component = "Iframe", + IsDeleted = 0ul, + Link = "http://localhost:82/druid/login.html", + Name = "数据监控", + OpenType = 2, + 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 = 0ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d4cac841-99e5-4014-af17-2986c9340306", + Application = "system", + Code = "sys_notice", + Component = "PageView", + Icon = "sound", + IsDeleted = 0ul, + Name = "通知公告", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/notice", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Application = "system", + Code = "sys_notice_mgr", + Component = "system/notice/index", + IsDeleted = 0ul, + Name = "公告管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54584ab7-25d1-45b7-b3d4-76ba21511f97", + Application = "system", + Code = "sys_notice_mgr_page", + IsDeleted = 0ul, + Name = "公告查询", + OpenType = 0, + Permission = "sysNotice:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f27c8431-7da5-4ffe-a8f3-b511cf44c0c8", + Application = "system", + Code = "sys_notice_mgr_add", + IsDeleted = 0ul, + Name = "公告增加", + OpenType = 0, + Permission = "sysNotice:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f84c1f3a-3a51-4be2-97c9-7543b044e457", + Application = "system", + Code = "sys_notice_mgr_edit", + IsDeleted = 0ul, + Name = "公告编辑", + OpenType = 0, + Permission = "sysNotice:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a8abcb85-ad3b-47b9-8c9b-e7d1876b90cf", + Application = "system", + Code = "sys_notice_mgr_delete", + IsDeleted = 0ul, + Name = "公告删除", + OpenType = 0, + Permission = "sysNotice:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fe9cbb41-7b05-4f32-b960-87a1ef146166", + Application = "system", + Code = "sys_notice_mgr_detail", + IsDeleted = 0ul, + Name = "公告查看", + OpenType = 0, + Permission = "sysNotice:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "3e547bb0-4cf5-4cf0-8386-48d2f3c12dcb", + Application = "system", + Code = "sys_notice_mgr_changeStatus", + IsDeleted = 0ul, + Name = "公告修改状态", + OpenType = 0, + Permission = "sysNotice:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ac3065ff-d239-4e0e-86e5-d72cc658224c", + Application = "system", + Code = "sys_notice_mgr_received", + Component = "system/noticeReceived/index", + IsDeleted = 0ul, + Name = "已收公告", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e2d4b13b-eb3e-4ead-8fb8-4c61a3004726", + Application = "system", + Code = "sys_notice_mgr_received_page", + IsDeleted = 0ul, + Name = "已收公告查询", + OpenType = 0, + Permission = "sysNotice:received", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "05326e62-f496-4950-8a29-40e8a479424f", + Application = "system", + Code = "sys_file_mgr", + Component = "PageView", + Icon = "file", + IsDeleted = 0ul, + Name = "文件管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/file", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0af2a460-bbb0-472c-b027-8532970425df", + Application = "system", + Code = "sys_file_mgr_sys_file", + Component = "system/file/index", + IsDeleted = 0ul, + Name = "系统文件", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c7bac800-b922-4173-bd8d-9888b4eab1d4", + Application = "system", + Code = "sys_file_mgr_sys_file_page", + IsDeleted = 0ul, + Name = "文件查询", + OpenType = 0, + Permission = "sysFileInfo:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f47e1fa7-6329-4d67-8fe6-36ca06aad54b", + Application = "system", + Code = "sys_file_mgr_sys_file_list", + IsDeleted = 0ul, + Name = "文件列表", + OpenType = 0, + Permission = "sysFileInfo:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cca0a2ee-cfb9-4996-affb-dc8d8168ac10", + Application = "system", + Code = "sys_file_mgr_sys_file_delete", + IsDeleted = 0ul, + Name = "文件删除", + OpenType = 0, + Permission = "sysFileInfo:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "eb738eaa-5eed-466d-b422-4eb6f4662dd9", + Application = "system", + Code = "sys_file_mgr_sys_file_detail", + IsDeleted = 0ul, + Name = "文件详情", + OpenType = 0, + Permission = "sysFileInfo:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "69b97ace-d849-4e52-8fc2-9da7d93e325f", + Application = "system", + Code = "sys_file_mgr_sys_file_upload", + IsDeleted = 0ul, + Name = "文件上传", + OpenType = 0, + Permission = "sysFileInfo:upload", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e286d53d-bf3c-4711-b0a3-15cfad0a7521", + Application = "system", + Code = "sys_file_mgr_sys_file_download", + IsDeleted = 0ul, + Name = "文件下载", + OpenType = 0, + Permission = "sysFileInfo:download", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1975891b-7940-44a8-a513-9f2e8b05dda1", + Application = "system", + Code = "sys_file_mgr_sys_file_preview", + IsDeleted = 0ul, + Name = "图片预览", + OpenType = 0, + Permission = "sysFileInfo:preview", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ba03cfd5-5d72-465f-87b6-71134da68fab", + Application = "system", + Code = "sys_timers", + Component = "PageView", + Icon = "dashboard", + IsDeleted = 0ul, + Name = "定时任务", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/timers", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Application = "system", + Code = "sys_timers_mgr", + Component = "system/timers/index", + IsDeleted = 0ul, + Name = "任务管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "db62154a-470e-43c8-8959-a686b954fe7d", + Application = "system", + Code = "sys_timers_mgr_page", + IsDeleted = 0ul, + Name = "定时任务查询", + OpenType = 0, + Permission = "sysTimers:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "dc07cd9f-4a53-40d9-988e-70290a146eff", + Application = "system", + Code = "sys_timers_mgr_list", + IsDeleted = 0ul, + Name = "定时任务列表", + OpenType = 0, + Permission = "sysTimers:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1e562d31-c2f8-4af8-be4b-47e3b251d9a3", + Application = "system", + Code = "sys_timers_mgr_detail", + IsDeleted = 0ul, + Name = "定时任务详情", + OpenType = 0, + Permission = "sysTimers:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f27ba442-7d6f-499f-8053-a737adc3492a", + Application = "system", + Code = "sys_timers_mgr_add", + IsDeleted = 0ul, + Name = "定时任务增加", + OpenType = 0, + Permission = "sysTimers:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "99129601-0be5-43ee-842b-a428603f013b", + Application = "system", + Code = "sys_timers_mgr_delete", + IsDeleted = 0ul, + Name = "定时任务删除", + OpenType = 0, + Permission = "sysTimers:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5e118fc0-f580-4d06-a89d-f321a84e5654", + Application = "system", + Code = "sys_timers_mgr_edit", + IsDeleted = 0ul, + Name = "定时任务编辑", + OpenType = 0, + Permission = "sysTimers:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4272f2e4-4a8b-45bb-b688-2b9471c35e83", + Application = "system", + Code = "sys_timers_mgr_get_action_classes", + IsDeleted = 0ul, + Name = "定时任务可执行列表", + OpenType = 0, + Permission = "sysTimers:getActionClasses", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54094687-f661-4cba-bdfc-e76f22db8d76", + Application = "system", + Code = "sys_timers_mgr_start", + IsDeleted = 0ul, + Name = "定时任务启动", + OpenType = 0, + Permission = "sysTimers:start", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6b82d407-d1ea-440e-9245-128ad03dffc0", + Application = "system", + Code = "sys_timers_mgr_stop", + IsDeleted = 0ul, + Name = "定时任务关闭", + OpenType = 0, + Permission = "sysTimers:stop", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5172265d-eda3-4b8a-a542-d582467a51a1", + Application = "system_tool", + Code = "code_gen", + Component = "gen/codeGenerate/index", + Icon = "thunderbolt", + IsDeleted = 0ul, + Name = "代码生成", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/codeGenerate/index", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf51df0a-8e0b-4252-ba06-9646cad648d1", + Application = "system_tool", + Code = "form_design", + Component = "system/formDesign/index", + Icon = "robot", + IsDeleted = 0ul, + Name = "表单设计", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/formDesign/index", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f4cf2a3d-0714-4ca4-a691-0b363c172f82", + Application = "advanced", + Code = "sys_tenant", + Component = "PageView", + Icon = "switcher", + IsDeleted = 0ul, + Name = "SaaS租户", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/tenant", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Application = "advanced", + Code = "sys_tenant_mgr", + Component = "system/tenant/index", + IsDeleted = 0ul, + Name = "租户管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8985ec0a-5060-4812-bf47-4f3102948066", + Application = "advanced", + Code = "sys_tenant_mgr_page", + IsDeleted = 0ul, + Name = "租户查询", + OpenType = 0, + Permission = "sysTenant:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d9584afb-18de-4f7e-b992-c21ad77b1aae", + Application = "advanced", + Code = "sys_tenant_mgr_detail", + IsDeleted = 0ul, + Name = "租户详情", + OpenType = 0, + Permission = "sysTenant:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "01ae6b95-9c1e-4882-a9ac-ebb9f1868c54", + Application = "advanced", + Code = "sys_tenant_mgr_add", + IsDeleted = 0ul, + Name = "租户增加", + OpenType = 0, + Permission = "sysTenant:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "59e9f6da-151a-4201-bea1-00ef06fe5842", + Application = "advanced", + Code = "sys_tenant_mgr_delete", + IsDeleted = 0ul, + Name = "租户删除", + OpenType = 0, + Permission = "sysTenant:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "220b6a86-e65d-469b-8aa0-46c4f5e77ab8", + Application = "advanced", + Code = "sys_tenant_mgr_edit", + IsDeleted = 0ul, + Name = "租户编辑", + OpenType = 0, + Permission = "sysTenant:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysNotice", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Attachments") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("上传文件id集合"); + + b.Property("CancelTime") + .HasColumnType("datetime") + .HasComment("撤回时间"); + + b.Property("Content") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("内容"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("PublicOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicOrgId") + .HasComment("发布机构Id"); + + b.Property("PublicOrgName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("发布机构名称"); + + b.Property("PublicTime") + .HasColumnType("datetime") + .HasComment("发布时间"); + + b.Property("PublicUserId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicUserId") + .HasComment("发布人Id"); + + b.Property("PublicUserName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("发布人姓名"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("Title") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("标题"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_notice"); + + b + .HasComment("通知公告表"); + }); + + modelBuilder.Entity("Ewide.Core.SysNoticeUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NoticeId") + .HasColumnType("varchar(36)") + .HasColumnName("NoticeId") + .HasComment("通知公告Id"); + + b.Property("ReadStatus") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("ReadTime") + .HasColumnType("datetime") + .HasComment("阅读时间"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") + .HasComment("用户Id"); + + b.HasKey("Id"); + + b.ToTable("sys_notice_user"); + + b + .HasComment("通知公告用户表"); + }); + + modelBuilder.Entity("Ewide.Core.SysOauthUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AccessToken") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Token"); + + b.Property("Avatar") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("头像"); + + b.Property("Blog") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("用户网址"); + + b.Property("Company") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("所在公司"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("邮箱"); + + b.Property("Gender") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("性别"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("位置"); + + b.Property("NickName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("昵称"); + + b.Property("Phone") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Source") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("用户来源"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Uuid") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("UUID"); + + b.HasKey("Id"); + + b.ToTable("sys_oauth_user"); + + b + .HasComment("Oauth登录用户表"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AreaCode") + .HasColumnType("varchar(50) CHARACTER SET utf8mb4"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Contacts") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("联系人"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Pids"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("Tel") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("机构类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_org"); + + b + .HasComment("组织机构表"); + + b.HasData( + new + { + Id = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Code = "hxjt", + IsDeleted = 0ul, + Name = "华夏集团", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Remark = "华夏集团", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + Code = "hxjt_bj", + IsDeleted = 0ul, + Name = "华夏集团北京分公司", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", + Remark = "华夏集团北京分公司", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "127c0a5d-43ac-4370-b313-082361885aca", + Code = "hxjt_cd", + IsDeleted = 0ul, + Name = "华夏集团成都分公司", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", + Remark = "华夏集团成都分公司", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + Code = "hxjt_bj_yfb", + IsDeleted = 0ul, + Name = "研发部", + 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, + Type = 0 + }, + new + { + Id = "07322be0-2015-41f2-859e-132b5e142fca", + Code = "hxjt_bj_qhb", + IsDeleted = 0ul, + Name = "企划部", + 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, + Type = 0 + }, + new + { + Id = "49dc3f25-873d-4998-9767-46978d79d8e6", + Code = "hxjt_cd_scb", + IsDeleted = 0ul, + Name = "市场部", + 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, + Type = 0 + }, + new + { + Id = "56b7a823-cc62-492b-a91b-0b053ef2683b", + Code = "hxjt_cd_cwb", + IsDeleted = 0ul, + Name = "财务部", + 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, + Type = 0 + }, + new + { + Id = "e9f97d63-a585-40ff-bf0c-7406e785f660", + Code = "hxjt_cd_scb_2b", + IsDeleted = 0ul, + Name = "市场部二部", + 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, + Type = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysPos", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_pos"); + + b + .HasComment("职位表"); + + b.HasData( + new + { + Id = "269236c4-d74e-4e54-9d50-f6f61580a197", + Code = "zjl", + IsDeleted = 0ul, + Name = "总经理", + Remark = "总经理", + Sort = 100, + Status = 0 + }, + new + { + Id = "46c68a62-f119-4ff7-b621-0bbd77504538", + Code = "fzjl", + IsDeleted = 0ul, + Name = "副总经理", + Remark = "副总经理", + Sort = 101, + Status = 0 + }, + new + { + Id = "5bd8c466-2bca-4386-a551-daac78e3cee8", + Code = "bmjl", + IsDeleted = 0ul, + Name = "部门经理", + Remark = "部门经理", + Sort = 102, + Status = 0 + }, + new + { + Id = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66", + Code = "gzry", + IsDeleted = 0ul, + Name = "工作人员", + Remark = "工作人员", + Sort = 103, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysRole", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("DataScopeType") + .HasColumnType("int") + .HasComment("数据范围类型"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_role"); + + b + .HasComment("角色表"); + + b.HasData( + new + { + Id = "6dfe9189-ce10-434e-a7a7-5cdc46e85047", + Code = "sys_manager_role", + DataScopeType = 1, + IsDeleted = 0ul, + Name = "系统管理员", + Remark = "系统管理员", + Sort = 100, + Status = 0 + }, + new + { + Id = "cd187ebd-ab3d-4768-9669-85e2219c2910", + Code = "common_role", + DataScopeType = 5, + IsDeleted = 0ul, + Name = "普通用户", + Remark = "普通用户", + Sort = 101, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleArea", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasComment("角色Id"); + + b.Property("AreaCode") + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域代码"); + + b.HasKey("SysRoleId", "AreaCode"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_role_area"); + + b + .HasComment("角色区域自定义数据"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.HasKey("SysRoleId", "SysOrgId"); + + b.HasIndex("SysOrgId"); + + b.ToTable("sys_role_data_scope"); + + b + .HasComment("角色数据范围表"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.Property("SysMenuId") + .HasColumnType("varchar(36)") + .HasColumnName("SysMenuId") + .HasComment("菜单Id"); + + b.HasKey("SysRoleId", "SysMenuId"); + + b.HasIndex("SysMenuId"); + + b.ToTable("sys_role_menu"); + + b + .HasComment("角色菜单表"); + }); + + modelBuilder.Entity("Ewide.Core.SysTenant", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Connection") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库连接"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电子邮箱"); + + b.Property("Host") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("主机"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Phone") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Schema") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("架构"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_tenant"); + + b + .HasComment("租户表"); + + b.HasData( + new + { + Id = "506a14b7-882d-4548-96fa-a55dbe79bfa1", + Connection = "Data Source=./Ewide.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Email = "zuohuaijun@163.com", + Host = "localhost:5566", + IsDeleted = 0ul, + Name = "默认租户", + Phone = "18020030720" + }, + new + { + Id = "eed8c4a6-70d8-49fd-9566-21a6966bb702", + Connection = "Data Source=./Dilon_1.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Host = "localhost:5588", + IsDeleted = 0ul, + Name = "其他租户" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysTimer", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("BeginTime") + .HasColumnType("datetime") + .HasComment("开始时间"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Cron") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Cron表达式"); + + b.Property("DoOnce") + .HasColumnType("tinyint(1)") + .HasComment("只执行一次"); + + b.Property("EndTime") + .HasColumnType("datetime") + .HasComment("结束时间"); + + b.Property("ExecuteType") + .HasColumnType("int") + .HasComment("执行类型"); + + b.Property("Headers") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Headers"); + + b.Property("Interval") + .HasColumnType("int") + .HasComment("执行间隔时间"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("JobName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("任务名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("RequestParameters") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求参数"); + + b.Property("RequestType") + .HasColumnType("int") + .HasComment("请求类型"); + + b.Property("RequestUrl") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求url"); + + b.Property("RunNumber") + .HasColumnType("int") + .HasComment("执行次数"); + + b.Property("StartNow") + .HasColumnType("tinyint(1)") + .HasComment("立即执行"); + + b.Property("TimerType") + .HasColumnType("int") + .HasComment("定时器类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_timer"); + + b + .HasComment("定时任务表"); + + b.HasData( + new + { + Id = "971bc338-0c03-46d4-8113-c7738d54ea18", + BeginTime = new DateTime(2021, 3, 21, 0, 0, 0, 0, DateTimeKind.Local), + DoOnce = false, + ExecuteType = 0, + Interval = 30, + IsDeleted = 0ul, + JobName = "百度api", + RequestType = 2, + RequestUrl = "https://www.baidu.com", + StartNow = false, + TimerType = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Account") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("账号"); + + b.Property("AdminType") + .HasColumnType("int") + .HasComment("管理员类型-超级管理员_1、非管理员_2"); + + b.Property("Avatar") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("头像"); + + b.Property("Birthday") + .HasColumnType("datetime") + .HasComment("生日"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("邮箱"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("LastLoginIp") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("最后登录IP"); + + b.Property("LastLoginTime") + .HasColumnType("datetime") + .HasComment("最后登录时间"); + + b.Property("Name") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("姓名"); + + b.Property("NickName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("昵称"); + + b.Property("Password") + .IsRequired() + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("密码"); + + b.Property("Phone") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("手机"); + + b.Property("SecurityLevel") + .HasColumnType("int") + .HasComment("密码安全级别"); + + b.Property("Sex") + .HasColumnType("int") + .HasComment("性别-男_1、女_2"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态-正常_0、停用_1、删除_2"); + + b.Property("Tel") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_user"); + + b + .HasComment("用户表"); + + b.HasData( + new + { + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + Account = "superAdmin", + AdminType = 1, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "superAdmin", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 1, + Status = 0 + }, + new + { + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + Account = "admin", + AdminType = 1, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "admin", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 2, + Status = 0 + }, + new + { + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", + Account = "zuohuaijun", + AdminType = 2, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "zuohuaijun", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 1, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysUserArea", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("AreaCode") + .HasMaxLength(10) + .HasColumnType("varchar(10) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域代码"); + + b.HasKey("SysUserId", "AreaCode"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_user_area"); + + b + .HasComment("用户授权区域信息"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.HasKey("SysUserId", "SysOrgId"); + + b.HasIndex("SysOrgId"); + + b.ToTable("sys_user_data_scope"); + + b + .HasComment("用户数据范围表"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserRole", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.HasKey("SysUserId", "SysRoleId"); + + b.HasIndex("SysRoleId"); + + b.ToTable("sys_user_role"); + + b + .HasComment("用户角色表"); + }); + + modelBuilder.Entity("Ewide.Core.SysDictData", b => + { + b.HasOne("Ewide.Core.SysDictType", "SysDictType") + .WithMany("SysDictDatas") + .HasForeignKey("TypeId"); + + b.Navigation("SysDictType"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => + { + b.HasOne("Ewide.Core.SysEmp", "SysEmp") + .WithMany() + .HasForeignKey("SysEmpId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany() + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysPos", "SysPos") + .WithMany() + .HasForeignKey("SysPosId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysEmp"); + + b.Navigation("SysOrg"); + + b.Navigation("SysPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpPos", b => + { + b.HasOne("Ewide.Core.SysEmp", "SysEmp") + .WithMany("SysEmpPos") + .HasForeignKey("SysEmpId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysPos", "SysPos") + .WithMany("SysEmpPos") + .HasForeignKey("SysPosId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysEmp"); + + b.Navigation("SysPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysOrgs") + .HasForeignKey("AreaCode"); + + b.Navigation("Area"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleArea", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysRoleAreas") + .HasForeignKey("AreaCode") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleAreas") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Area"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => + { + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany("SysRoleDataScopes") + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleDataScopes") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysOrg"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => + { + b.HasOne("Ewide.Core.SysMenu", "SysMenu") + .WithMany("SysRoleMenus") + .HasForeignKey("SysMenuId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleMenus") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysMenu"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserArea", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysUserAreas") + .HasForeignKey("AreaCode") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserAreas") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Area"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => + { + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany("SysUserDataScopes") + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserDataScopes") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysOrg"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserRole", b => + { + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysUserRoles") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserRoles") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysRole"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysAreaCode", b => + { + b.Navigation("SysOrgs"); + + b.Navigation("SysRoleAreas"); + + b.Navigation("SysUserAreas"); + }); + + modelBuilder.Entity("Ewide.Core.SysDictType", b => + { + b.Navigation("SysDictDatas"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmp", b => + { + b.Navigation("SysEmpPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysMenu", b => + { + b.Navigation("SysRoleMenus"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.Navigation("SysRoleDataScopes"); + + b.Navigation("SysUserDataScopes"); + }); + + modelBuilder.Entity("Ewide.Core.SysPos", b => + { + b.Navigation("SysEmpPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysRole", b => + { + b.Navigation("SysRoleAreas"); + + b.Navigation("SysRoleDataScopes"); + + b.Navigation("SysRoleMenus"); + + b.Navigation("SysUserRoles"); + }); + + modelBuilder.Entity("Ewide.Core.SysUser", b => + { + b.Navigation("SysUserAreas"); + + b.Navigation("SysUserDataScopes"); + + b.Navigation("SysUserRoles"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330101500_v1.0.0.cs b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330101500_v1.0.0.cs new file mode 100644 index 0000000..b0a0138 --- /dev/null +++ b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330101500_v1.0.0.cs @@ -0,0 +1,503 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Ewide.Database.Migrations.Migrations +{ + public partial class v100 : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "bs_house_projectinfo"); + + migrationBuilder.DeleteData( + table: "sys_dict_data", + keyColumn: "Id", + keyValue: "514dbb46-ae79-4c07-96fa-496983765609"); + + migrationBuilder.DeleteData( + table: "sys_dict_data", + keyColumn: "Id", + keyValue: "6a01e89a-6bbb-4822-b862-8e566b6dde74"); + + migrationBuilder.DeleteData( + table: "sys_dict_data", + keyColumn: "Id", + keyValue: "dad01f31-bb7f-4696-9e53-ad6d58b366a7"); + + migrationBuilder.DeleteData( + table: "sys_dict_data", + keyColumn: "Id", + keyValue: "fc843478-1e98-47e8-aaf3-12442fd4cbfc"); + + migrationBuilder.DeleteData( + table: "sys_menu", + keyColumn: "Id", + keyValue: "142803a5-63de-48be-afa9-3bde8640d580"); + + migrationBuilder.DeleteData( + table: "sys_menu", + keyColumn: "Id", + keyValue: "235d9a5f-2469-4f17-a98c-45824513d5ae"); + + migrationBuilder.DeleteData( + table: "sys_menu", + keyColumn: "Id", + keyValue: "4f44d697-5421-487e-9d31-3161aee4b7cc"); + + migrationBuilder.DeleteData( + table: "sys_menu", + keyColumn: "Id", + keyValue: "8645a374-6939-4dd8-a827-c6a39771f33d"); + + migrationBuilder.DeleteData( + table: "sys_menu", + keyColumn: "Id", + keyValue: "d5130f78-5d8d-4c8d-b433-f8e6796f0d12"); + + migrationBuilder.DeleteData( + table: "sys_menu", + keyColumn: "Id", + keyValue: "e7f28efd-2ac4-45c6-a73b-57ef7c5b8c8b"); + + migrationBuilder.DeleteData( + table: "sys_dict_type", + keyColumn: "Id", + keyValue: "2815b28b-e51d-4dfb-b549-2eaa27d8c23d"); + + migrationBuilder.DropColumn( + name: "JobGroup", + table: "sys_timer"); + + migrationBuilder.DropColumn( + name: "TriggerType", + table: "sys_timer"); + + migrationBuilder.AddColumn( + name: "SecurityLevel", + table: "sys_user", + type: "int", + nullable: false, + defaultValue: 0, + comment: "密码安全级别"); + + migrationBuilder.AddColumn( + name: "DoOnce", + table: "sys_timer", + type: "tinyint(1)", + nullable: false, + defaultValue: false, + comment: "只执行一次"); + + migrationBuilder.AddColumn( + name: "ExecuteType", + table: "sys_timer", + type: "int", + nullable: false, + defaultValue: 0, + comment: "执行类型"); + + migrationBuilder.AddColumn( + name: "StartNow", + table: "sys_timer", + type: "tinyint(1)", + nullable: false, + defaultValue: false, + comment: "立即执行"); + + migrationBuilder.AddColumn( + name: "TimerType", + table: "sys_timer", + type: "int", + nullable: false, + defaultValue: 0, + comment: "定时器类型"); + + migrationBuilder.AlterColumn( + name: "Name", + table: "sys_org", + type: "varchar(20) CHARACTER SET utf8mb4", + maxLength: 20, + nullable: true, + comment: "名称", + oldClrType: typeof(string), + oldType: "longtext CHARACTER SET utf8mb4", + oldNullable: true, + oldComment: "名称"); + + migrationBuilder.AddColumn( + name: "Type", + table: "sys_org", + type: "int", + nullable: false, + defaultValue: 0, + comment: "机构类型"); + + migrationBuilder.AlterColumn( + name: "ReadTime", + table: "sys_notice_user", + type: "datetime", + nullable: true, + comment: "阅读时间", + oldClrType: typeof(DateTime), + oldType: "datetime", + oldComment: "阅读时间"); + + migrationBuilder.AddColumn( + name: "Id", + table: "sys_notice_user", + type: "varchar(36)", + nullable: false, + defaultValue: "", + comment: "Id主键"); + + migrationBuilder.AddColumn( + name: "CreatedTime", + table: "sys_notice_user", + type: "datetime", + nullable: true, + comment: "创建时间"); + + migrationBuilder.AddColumn( + name: "CreatedUserId", + table: "sys_notice_user", + type: "varchar(36)", + nullable: true, + comment: "创建者Id"); + + migrationBuilder.AddColumn( + name: "CreatedUserName", + table: "sys_notice_user", + type: "varchar(20) CHARACTER SET utf8mb4", + maxLength: 20, + nullable: true, + comment: "创建者名称"); + + migrationBuilder.AddColumn( + name: "IsDeleted", + table: "sys_notice_user", + type: "bit", + nullable: false, + defaultValue: 0ul, + comment: "软删除标记"); + + migrationBuilder.AddColumn( + name: "UpdatedTime", + table: "sys_notice_user", + type: "datetime", + nullable: true, + comment: "更新时间"); + + migrationBuilder.AddColumn( + name: "UpdatedUserId", + table: "sys_notice_user", + type: "varchar(36)", + nullable: true, + comment: "修改者Id"); + + migrationBuilder.AddColumn( + name: "UpdatedUserName", + table: "sys_notice_user", + type: "varchar(20) CHARACTER SET utf8mb4", + maxLength: 20, + nullable: true, + comment: "修改者名称"); + + migrationBuilder.AlterColumn( + name: "PublicTime", + table: "sys_notice", + type: "datetime", + nullable: true, + comment: "发布时间", + oldClrType: typeof(DateTime), + oldType: "datetime", + oldComment: "发布时间"); + + migrationBuilder.AlterColumn( + name: "CancelTime", + table: "sys_notice", + type: "datetime", + nullable: true, + comment: "撤回时间", + oldClrType: typeof(DateTime), + oldType: "datetime", + oldComment: "撤回时间"); + + migrationBuilder.AddColumn( + name: "Attachments", + table: "sys_notice", + type: "longtext CHARACTER SET utf8mb4", + nullable: true, + comment: "上传文件id集合"); + + migrationBuilder.AddColumn( + name: "Pid", + table: "sys_dict_type", + type: "varchar(36)", + nullable: true, + comment: "父Id"); + + migrationBuilder.AddColumn( + name: "Pids", + table: "sys_dict_type", + type: "longtext CHARACTER SET utf8mb4", + nullable: true, + comment: "父Ids"); + + migrationBuilder.AddColumn( + name: "ExtCode", + table: "sys_dict_data", + type: "longtext CHARACTER SET utf8mb4", + nullable: true, + comment: "扩展编码,以json形式存储"); + + migrationBuilder.AddPrimaryKey( + name: "PK_sys_notice_user", + table: "sys_notice_user", + column: "Id"); + + migrationBuilder.InsertData( + table: "sys_tenant", + columns: new[] { "Id", "Connection", "CreatedTime", "CreatedUserId", "CreatedUserName", "Email", "Host", "IsDeleted", "Name", "Phone", "Remark", "Schema", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, + values: new object[,] + { + { "506a14b7-882d-4548-96fa-a55dbe79bfa1", "Data Source=./Ewide.db", new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), null, null, "zuohuaijun@163.com", "localhost:5566", 0ul, "默认租户", "18020030720", null, null, null, null, null }, + { "eed8c4a6-70d8-49fd-9566-21a6966bb702", "Data Source=./Dilon_1.db", new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), null, null, null, "localhost:5588", 0ul, "其他租户", null, null, null, null, null, null } + }); + + migrationBuilder.UpdateData( + table: "sys_user", + keyColumn: "Id", + keyValue: "16a74726-e156-499f-9942-0e0e24ad0c3f", + column: "SecurityLevel", + value: 1); + + migrationBuilder.UpdateData( + table: "sys_user", + keyColumn: "Id", + keyValue: "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + column: "SecurityLevel", + value: 1); + + migrationBuilder.UpdateData( + table: "sys_user", + keyColumn: "Id", + keyValue: "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + column: "SecurityLevel", + value: 1); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropPrimaryKey( + name: "PK_sys_notice_user", + table: "sys_notice_user"); + + migrationBuilder.DeleteData( + table: "sys_tenant", + keyColumn: "Id", + keyValue: "506a14b7-882d-4548-96fa-a55dbe79bfa1"); + + migrationBuilder.DeleteData( + table: "sys_tenant", + keyColumn: "Id", + keyValue: "eed8c4a6-70d8-49fd-9566-21a6966bb702"); + + migrationBuilder.DropColumn( + name: "SecurityLevel", + table: "sys_user"); + + migrationBuilder.DropColumn( + name: "DoOnce", + table: "sys_timer"); + + migrationBuilder.DropColumn( + name: "ExecuteType", + table: "sys_timer"); + + migrationBuilder.DropColumn( + name: "StartNow", + table: "sys_timer"); + + migrationBuilder.DropColumn( + name: "TimerType", + table: "sys_timer"); + + migrationBuilder.DropColumn( + name: "Type", + table: "sys_org"); + + migrationBuilder.DropColumn( + name: "Id", + table: "sys_notice_user"); + + migrationBuilder.DropColumn( + name: "CreatedTime", + table: "sys_notice_user"); + + migrationBuilder.DropColumn( + name: "CreatedUserId", + table: "sys_notice_user"); + + migrationBuilder.DropColumn( + name: "CreatedUserName", + table: "sys_notice_user"); + + migrationBuilder.DropColumn( + name: "IsDeleted", + table: "sys_notice_user"); + + migrationBuilder.DropColumn( + name: "UpdatedTime", + table: "sys_notice_user"); + + migrationBuilder.DropColumn( + name: "UpdatedUserId", + table: "sys_notice_user"); + + migrationBuilder.DropColumn( + name: "UpdatedUserName", + table: "sys_notice_user"); + + migrationBuilder.DropColumn( + name: "Attachments", + table: "sys_notice"); + + migrationBuilder.DropColumn( + name: "Pid", + table: "sys_dict_type"); + + migrationBuilder.DropColumn( + name: "Pids", + table: "sys_dict_type"); + + migrationBuilder.DropColumn( + name: "ExtCode", + table: "sys_dict_data"); + + migrationBuilder.AddColumn( + name: "JobGroup", + table: "sys_timer", + type: "longtext CHARACTER SET utf8mb4", + nullable: true, + comment: "任务分组"); + + migrationBuilder.AddColumn( + name: "TriggerType", + table: "sys_timer", + type: "int", + nullable: false, + defaultValue: 0, + comment: "触发器类型"); + + migrationBuilder.AlterColumn( + name: "Name", + table: "sys_org", + type: "longtext CHARACTER SET utf8mb4", + nullable: true, + comment: "名称", + oldClrType: typeof(string), + oldType: "varchar(20) CHARACTER SET utf8mb4", + oldMaxLength: 20, + oldNullable: true, + oldComment: "名称"); + + migrationBuilder.AlterColumn( + name: "ReadTime", + table: "sys_notice_user", + type: "datetime", + nullable: false, + defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + comment: "阅读时间", + oldClrType: typeof(DateTime), + oldType: "datetime", + oldNullable: true, + oldComment: "阅读时间"); + + migrationBuilder.AlterColumn( + name: "PublicTime", + table: "sys_notice", + type: "datetime", + nullable: false, + defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + comment: "发布时间", + oldClrType: typeof(DateTime), + oldType: "datetime", + oldNullable: true, + oldComment: "发布时间"); + + migrationBuilder.AlterColumn( + name: "CancelTime", + table: "sys_notice", + type: "datetime", + nullable: false, + defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + comment: "撤回时间", + oldClrType: typeof(DateTime), + oldType: "datetime", + oldNullable: true, + oldComment: "撤回时间"); + + migrationBuilder.CreateTable( + name: "bs_house_projectinfo", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + AreaId = table.Column(type: "varchar(36) CHARACTER SET utf8mb4", maxLength: 36, nullable: false, comment: "区域ID"), + AreaName = table.Column(type: "varchar(500) CHARACTER SET utf8mb4", maxLength: 500, nullable: true, comment: "区域名称"), + CreatedTime = table.Column(type: "datetime", 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: "创建者名称"), + IsDeleted = table.Column(type: "bit", nullable: false, comment: "软删除标记"), + Name = table.Column(type: "varchar(100) CHARACTER SET utf8mb4", maxLength: 100, nullable: false, comment: "名称"), + Note = table.Column(type: "varchar(1000) CHARACTER SET utf8mb4", maxLength: 1000, nullable: true, comment: "备注"), + Sort = table.Column(type: "int", nullable: false, comment: "排序"), + Type = table.Column(type: "int", nullable: false, comment: "类型"), + UpdatedTime = table.Column(type: "datetime", 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: "修改者名称") + }, + constraints: table => + { + table.PrimaryKey("PK_bs_house_projectinfo", x => x.Id); + }, + comment: "项目表"); + + migrationBuilder.InsertData( + table: "sys_dict_type", + columns: new[] { "Id", "Code", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "Name", "Remark", "Sort", "Status", "UpdatedTime", "UpdatedUserId", "UpdatedUserName" }, + values: new object[] { "2815b28b-e51d-4dfb-b549-2eaa27d8c23d", "dic_areacode_type", null, null, null, 0ul, "区域编码类型", "区域编码类型", 0, 0, null, null, null }); + + 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", "VisibleParent", "Weight" }, + values: new object[,] + { + { "235d9a5f-2469-4f17-a98c-45824513d5ae", "system", "org_areaManage", "system/area/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, "/area", 0, 0, 1, null, null, null, 1ul, 0ul, 1 }, + { "d5130f78-5d8d-4c8d-b433-f8e6796f0d12", "system", "org_area_add", null, null, null, null, null, 0ul, null, "区域增加", 0, "sysArea:add", "235d9a5f-2469-4f17-a98c-45824513d5ae", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[235d9a5f-2469-4f17-a98c-45824513d5ae],", null, null, null, 100, 0, 2, null, null, null, 1ul, 0ul, 1 }, + { "4f44d697-5421-487e-9d31-3161aee4b7cc", "system", "org_area_edit", null, null, null, null, null, 0ul, null, "区域编辑", 0, "sysArea:edit", "235d9a5f-2469-4f17-a98c-45824513d5ae", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[235d9a5f-2469-4f17-a98c-45824513d5ae],", null, null, null, 100, 0, 2, null, null, null, 1ul, 0ul, 1 }, + { "142803a5-63de-48be-afa9-3bde8640d580", "system", "org_area_delete", null, null, null, null, null, 0ul, null, "区域删除", 0, "sysArea:delete", "235d9a5f-2469-4f17-a98c-45824513d5ae", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[235d9a5f-2469-4f17-a98c-45824513d5ae],", null, null, null, 100, 0, 2, null, null, null, 1ul, 0ul, 1 }, + { "e7f28efd-2ac4-45c6-a73b-57ef7c5b8c8b", "system", "org_area_page", null, null, null, null, null, 0ul, null, "区域查询", 0, "sysArea:page", "235d9a5f-2469-4f17-a98c-45824513d5ae", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[235d9a5f-2469-4f17-a98c-45824513d5ae],", null, null, null, 100, 0, 2, null, null, null, 1ul, 0ul, 1 }, + { "8645a374-6939-4dd8-a827-c6a39771f33d", "system", "org_area_tree", null, null, null, null, null, 0ul, null, "区域树", 0, "sysArea:tree", "235d9a5f-2469-4f17-a98c-45824513d5ae", "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[235d9a5f-2469-4f17-a98c-45824513d5ae],", null, null, null, 100, 0, 2, null, null, null, 1ul, 0ul, 1 } + }); + + migrationBuilder.UpdateData( + table: "sys_timer", + keyColumn: "Id", + keyValue: "971bc338-0c03-46d4-8113-c7738d54ea18", + columns: new[] { "JobGroup", "TriggerType" }, + values: new object[] { "默认分组", 1 }); + + 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[,] + { + { "6a01e89a-6bbb-4822-b862-8e566b6dde74", "1", null, null, null, 0ul, "市级编号", 1, 0, "2815b28b-e51d-4dfb-b549-2eaa27d8c23d", null, null, null, "市级编号" }, + { "fc843478-1e98-47e8-aaf3-12442fd4cbfc", "2", null, null, null, 0ul, "区县编号", 2, 0, "2815b28b-e51d-4dfb-b549-2eaa27d8c23d", null, null, null, "区县编号" }, + { "dad01f31-bb7f-4696-9e53-ad6d58b366a7", "3", null, null, null, 0ul, "乡镇街道编号", 3, 0, "2815b28b-e51d-4dfb-b549-2eaa27d8c23d", null, null, null, "乡镇街道编号" }, + { "514dbb46-ae79-4c07-96fa-496983765609", "4", null, null, null, 0ul, "社区/村委会编号", 4, 0, "2815b28b-e51d-4dfb-b549-2eaa27d8c23d", null, null, null, "社区/村委会编号" } + }); + } + } +} diff --git a/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330103714_v1.0.1.Designer.cs b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330103714_v1.0.1.Designer.cs new file mode 100644 index 0000000..550c45f --- /dev/null +++ b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330103714_v1.0.1.Designer.cs @@ -0,0 +1,7231 @@ +// +using System; +using Ewide.EntityFramework.Core; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +namespace Ewide.Database.Migrations.Migrations +{ + [DbContext(typeof(DefaultDbContext))] + [Migration("20220330103714_v1.0.1")] + partial class v101 + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("Relational:MaxIdentifierLength", 64) + .HasAnnotation("ProductVersion", "5.0.15"); + + modelBuilder.Entity("Ewide.Core.SysApp", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Active") + .HasColumnType("bit") + .HasColumnName("Active") + .HasComment("是否默认激活"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Color") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标颜色"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Icon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_app"); + + b + .HasComment("系统应用表"); + + b.HasData( + new + { + Id = "8b2aeb5e-09a6-4afd-bcae-8ee8e5a1e6ec", + Active = 0ul, + Code = "busapp", + IsDeleted = 0ul, + Name = "业务应用", + Sort = 100, + Status = 0 + }, + new + { + Id = "d781b8f1-0d08-48c8-b7a5-ed75ddfa676c", + Active = 1ul, + Code = "system", + IsDeleted = 0ul, + Name = "系统管理", + Sort = 100, + Status = 0 + }, + new + { + Id = "850ab86f-cd6a-4d49-b920-77dfa5d78813", + Active = 0ul, + Code = "system_tool", + IsDeleted = 0ul, + Name = "系统工具", + Sort = 100, + Status = 0 + }, + new + { + Id = "05a32be5-82e8-423f-affa-e17232a63ee1", + Active = 0ul, + Code = "advanced", + IsDeleted = 0ul, + Name = "高级功能", + Sort = 100, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysAreaCode", b => + { + b.Property("Code") + .HasMaxLength(50) + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域编码"); + + b.Property("AdCode") + .HasMaxLength(50) + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("区域的行政编码"); + + b.Property("LevelType") + .HasColumnType("int") + .HasComment("类别"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("varchar(100) CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Note") + .HasMaxLength(1000) + .HasColumnType("varchar(1000) CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.HasKey("Code"); + + b.ToTable("sys_area_code"); + + b + .HasComment("区域表"); + + b.HasData( + new + { + Code = "3302", + AdCode = "3302", + LevelType = 1, + Name = "XX市", + Note = "XX市", + Sort = 0 + }, + new + { + Code = "330266", + AdCode = "330266", + LevelType = 2, + Name = "测试区", + Note = "测试区", + Sort = 100 + }, + new + { + Code = "330266001", + AdCode = "330266001", + LevelType = 3, + Name = "测试街道", + Note = "测试街道", + Sort = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysCodeGen", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AuthorName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("作者姓名"); + + b.Property("BusName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("业务名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("GenerateType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("生成方式"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NameSpace") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("命名空间"); + + b.Property("TableName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库表名"); + + b.Property("TablePrefix") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否移除表前缀"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_code_gen"); + + b + .HasComment("代码生成表"); + }); + + modelBuilder.Entity("Ewide.Core.SysCodeGenConfig", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CodeGenId") + .HasColumnType("varchar(36)") + .HasColumnName("CodeGenId") + .HasComment("代码生成主表ID"); + + b.Property("ColumnComment") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("字段描述"); + + b.Property("ColumnKey") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("主外键"); + + b.Property("ColumnName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库字段名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("DataType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库中类型"); + + b.Property("DictTypeCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("字典Code"); + + b.Property("EffectType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("作用类型"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NetType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment(".NET数据类型"); + + b.Property("QueryType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("查询方式"); + + b.Property("QueryWhether") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否是查询条件"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("WhetherAddUpdate") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("增改"); + + b.Property("WhetherCommon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否通用字段"); + + b.Property("WhetherRequired") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否必填"); + + b.Property("WhetherRetract") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列表是否缩进"); + + b.Property("WhetherTable") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列表显示"); + + b.HasKey("Id"); + + b.ToTable("sys_code_gen_config"); + + b + .HasComment("代码生成字段配置表"); + }); + + modelBuilder.Entity("Ewide.Core.SysConfig", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("GroupCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("常量所属分类的编码"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("SysFlag") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否是系统参数"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Value") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("属性值"); + + b.HasKey("Id"); + + b.ToTable("sys_config"); + + b + .HasComment("参数配置表"); + + b.HasData( + new + { + Id = "7c2765cd-d39b-4772-8d6c-0dbcdcfa1ff8", + Code = "DILON_JWT_SECRET", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "jwt密钥", + Remark = "(重要)jwt密钥,默认为空,自行设置", + Status = 0, + SysFlag = "Y", + Value = "xiaonuo" + }, + new + { + Id = "e3553657-14cf-4c26-ba7b-dbb4bfd4bc55", + Code = "DILON_DEFAULT_PASSWORD", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "默认密码", + Remark = "默认密码", + Status = 0, + SysFlag = "Y", + Value = "123456" + }, + new + { + Id = "2c677cd2-2a54-46c6-971d-f9fe20f101f3", + Code = "DILON_TOKEN_EXPIRE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "token过期时间", + Remark = "token过期时间(单位:秒)", + Status = 0, + SysFlag = "Y", + Value = "86400" + }, + new + { + Id = "8938506d-2e00-44e0-8592-48453d43f9f5", + Code = "DILON_SESSION_EXPIRE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "session会话过期时间", + Remark = "session会话过期时间(单位:秒)", + Status = 0, + SysFlag = "Y", + Value = "7200" + }, + new + { + Id = "beb2e9e7-f4d9-43b1-bfab-3557ea232f8d", + Code = "DILON_ALIYUN_SMS_ACCESSKEY_ID", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信keyId", + Remark = "阿里云短信keyId", + Status = 0, + SysFlag = "Y", + Value = "你的keyId" + }, + new + { + Id = "ead14cd0-9fd4-4fd6-b75c-239d8b2ebed8", + Code = "DILON_ALIYUN_SMS_ACCESSKEY_SECRET", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信secret", + Remark = "阿里云短信secret", + Status = 0, + SysFlag = "Y", + Value = "你的secret" + }, + new + { + Id = "beaaafc2-3fdf-42af-9b06-ead3a6dd6306", + Code = "DILON_ALIYUN_SMS_SIGN_NAME", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信签名", + Remark = "阿里云短信签名", + Status = 0, + SysFlag = "Y", + Value = "你的签名" + }, + new + { + Id = "e26a10cf-911a-4fe0-a113-76965be749a0", + Code = "DILON_ALIYUN_SMS_LOGIN_TEMPLATE_CODE", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信-登录模板号", + Remark = "阿里云短信-登录模板号", + Status = 0, + SysFlag = "Y", + Value = "SMS_1877123456" + }, + new + { + Id = "24d3f286-efca-49af-91b4-e3ce42cce36e", + Code = "DILON_ALIYUN_SMS_INVALIDATE_MINUTES", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信默认失效时间", + Remark = "阿里云短信默认失效时间(单位:分钟)", + Status = 0, + SysFlag = "Y", + Value = "5" + }, + new + { + Id = "c6540a07-ce32-47b4-ab83-b647bdb14491", + Code = "DILON_TENCENT_SMS_SECRET_ID", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信secretId", + Remark = "腾讯云短信secretId", + Status = 0, + SysFlag = "Y", + Value = "你的secretId" + }, + new + { + Id = "a0412212-d50b-42aa-9484-3cef8fe3cc59", + Code = "DILON_TENCENT_SMS_SECRET_KEY", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信secretKey", + Remark = "腾讯云短信secretKey", + Status = 0, + SysFlag = "Y", + Value = "你的secretkey" + }, + new + { + Id = "c928ca11-5137-4b71-bf1c-f3bc95bcd34d", + Code = "DILON_TENCENT_SMS_SDK_APP_ID", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信sdkAppId", + Remark = "腾讯云短信sdkAppId", + Status = 0, + SysFlag = "Y", + Value = "1400375123" + }, + new + { + Id = "16ce1b6e-c8ad-4299-9293-6caff0e5cb49", + Code = "DILON_TENCENT_SMS_SIGN", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信签名", + Remark = "腾讯云短信签名", + Status = 0, + SysFlag = "Y", + Value = "你的签名" + }, + new + { + Id = "66e63d64-b7eb-4e6a-b5b6-c87811c2e700", + Code = "DILON_EMAIL_HOST", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱host", + Remark = "邮箱host", + Status = 0, + SysFlag = "Y", + Value = "smtp.126.com" + }, + new + { + Id = "997a9bc6-22ed-4fe6-a20c-c3c2a0b682a0", + Code = "DILON_EMAIL_USERNAME", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱用户名", + Remark = "邮箱用户名", + Status = 0, + SysFlag = "Y", + Value = "test@126.com" + }, + new + { + Id = "633d1851-41d9-4ebd-b83b-3aa4501cd1a7", + Code = "DILON_EMAIL_PASSWORD", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱密码", + Remark = "邮箱密码", + Status = 0, + SysFlag = "Y", + Value = "你的邮箱密码" + }, + new + { + Id = "67e468f7-e791-4e91-a896-62e9f7411635", + Code = "DILON_EMAIL_PORT", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱端口", + Remark = "邮箱端口", + Status = 0, + SysFlag = "Y", + Value = "465" + }, + new + { + Id = "dc462c05-de23-4f90-bcdc-88de4abcdf22", + Code = "DILON_EMAIL_SSL", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱是否开启ssl", + Remark = "邮箱是否开启ssl", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "8beac2a0-4c67-4499-a7ce-27e989546ce9", + Code = "DILON_EMAIL_FROM", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱发件人", + Remark = "邮箱发件人", + Status = 0, + SysFlag = "Y", + Value = "test@126.com" + }, + new + { + Id = "55756524-ecb8-444e-9cdd-a0fc767c4b96", + Code = "DILON_FILE_UPLOAD_PATH_FOR_WINDOWS", + GroupCode = "FILE_PATH", + IsDeleted = 0ul, + Name = "Win本地上传文件路径", + Remark = "Win本地上传文件路径", + Status = 0, + SysFlag = "Y", + Value = "D:/tmp" + }, + new + { + Id = "d2db41ee-ce1f-46de-ac00-5860634afed9", + Code = "DILON_FILE_UPLOAD_PATH_FOR_LINUX", + GroupCode = "FILE_PATH", + IsDeleted = 0ul, + Name = "Linux/Mac本地上传文件路径", + Remark = "Linux/Mac本地上传文件路径", + Status = 0, + SysFlag = "Y", + Value = "/tmp" + }, + new + { + Id = "ff8debdd-eca0-4f91-8213-e2080f76b35d", + Code = "DILON_UN_XSS_FILTER_URL", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "放开XSS过滤的接口", + Remark = "多个url可以用英文逗号隔开", + Status = 0, + SysFlag = "Y", + Value = "/demo/xssfilter,/demo/unxss" + }, + new + { + Id = "5584fb84-f580-463f-b06d-bbb80a4dfb72", + Code = "DILON_ENABLE_SINGLE_LOGIN", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "单用户登陆的开关", + Remark = "true-打开,false-关闭,如果一个人登录两次,就会将上一次登陆挤下去", + Status = 0, + SysFlag = "Y", + Value = "false" + }, + new + { + Id = "53b0afb2-4917-4b85-bcca-fe7c7723ae22", + Code = "DILON_CAPTCHA_OPEN", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "登录验证码的开关", + Remark = "true-打开,false-关闭", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "974740d8-8647-4cf8-8102-542eea53e97f", + Code = "DILON_DRUID_USERNAME", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "Druid监控登录账号", + Remark = "Druid监控登录账号", + Status = 0, + SysFlag = "Y", + Value = "superAdmin" + }, + new + { + Id = "8cee44ea-ba4c-42db-a57d-69b8b5316ca5", + Code = "DILON_DRUID_PASSWORD", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "Druid监控界面登录密码", + Remark = "Druid监控界面登录密码", + Status = 0, + SysFlag = "Y", + Value = "123456" + }, + new + { + Id = "efc235ab-9b05-4820-afe4-32a1eb59e4de", + Code = "DILON_IP_GEO_API", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "阿里云定位api接口地址", + Remark = "阿里云定位api接口地址", + Status = 0, + SysFlag = "Y", + Value = "http://api01.aliyun.venuscn.com/ip?ip=%s" + }, + new + { + Id = "d3597d8a-562a-4b24-93c7-8655c5445d74", + Code = "DILON_IP_GEO_APP_CODE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "阿里云定位appCode", + Remark = "阿里云定位appCode", + Status = 0, + SysFlag = "Y", + Value = "461535aabeae4f34861884d392f5d452" + }, + new + { + Id = "59c8a6f2-9e3c-4e9e-b9cf-8ecad5f0cb45", + Code = "DILON_ENABLE_OAUTH_LOGIN", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth用户登录的开关", + Remark = "Oauth用户登录的开关", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "ff502ee7-8129-4828-8d16-fb04562ef52c", + Code = "DILON_OAUTH_GITEE_CLIENT_ID", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录ClientId", + Remark = "Oauth码云登录ClientId", + Status = 0, + SysFlag = "Y", + Value = "你的clientId" + }, + new + { + Id = "a1d957ef-2b70-456f-8eda-b70a4cf01535", + Code = "DILON_OAUTH_GITEE_CLIENT_SECRET", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录ClientSecret", + Remark = "Oauth码云登录ClientSecret", + Status = 0, + SysFlag = "Y", + Value = "你的clientSecret" + }, + new + { + Id = "b32ee22b-671d-40bf-8070-32e1054fef96", + Code = "DILON_OAUTH_GITEE_REDIRECT_URI", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录回调地址", + Remark = "Oauth码云登录回调地址", + Status = 0, + SysFlag = "Y", + Value = "http://127.0.0.1:5566/oauth/callback/gitee" + }, + new + { + Id = "38dda85c-2a98-4768-aebd-a60ab286052c", + Code = "DILON_DEMO_ENV_FLAG", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "演示环境", + Remark = "演示环境的开关,true-打开,false-关闭,如果演示环境开启,则只能读数据不能写数据", + Status = 0, + SysFlag = "Y", + Value = "false" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysDictData", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("ExtCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("扩展编码,以json形式存储"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("TypeId") + .HasColumnType("varchar(36)") + .HasColumnName("TypeId") + .HasComment("字典类型Id"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Value") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("值"); + + b.HasKey("Id"); + + b.HasIndex("TypeId"); + + b.ToTable("sys_dict_data"); + + b + .HasComment("字典值表"); + + b.HasData( + new + { + Id = "99b965d3-1f2b-4f5b-a62a-6763b8d64a64", + Code = "1", + IsDeleted = 0ul, + Remark = "通知", + Sort = 100, + Status = 0, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Value = "通知" + }, + new + { + Id = "2616e6c2-a504-4fc6-993e-72701b48e79a", + Code = "2", + IsDeleted = 0ul, + Remark = "公告", + Sort = 100, + Status = 0, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Value = "公告" + }, + new + { + Id = "40d336cd-918a-4e90-8836-cba7c1bf6cdf", + Code = "0", + IsDeleted = 0ul, + Remark = "草稿", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "草稿" + }, + new + { + Id = "f5b49fa9-31a1-44c2-9df0-b28bf5daeee0", + Code = "1", + IsDeleted = 0ul, + Remark = "发布", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "发布" + }, + new + { + Id = "d2f73bb4-05a1-4aa5-9273-e9f3c393996d", + Code = "2", + IsDeleted = 0ul, + Remark = "撤回", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "撤回" + }, + new + { + Id = "6385916f-6ead-470e-889b-cfb9d2da6256", + Code = "3", + IsDeleted = 0ul, + Remark = "删除", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "删除" + }, + new + { + Id = "1f432e9d-f031-4787-a527-f37bb20ebe3a", + Code = "true", + IsDeleted = 0ul, + Remark = "是", + Sort = 100, + Status = 0, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Value = "是" + }, + new + { + Id = "0724636d-e870-46c6-8e1e-67f1ea5f58e5", + Code = "false", + IsDeleted = 0ul, + Remark = "否", + Sort = 100, + Status = 0, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Value = "否" + }, + new + { + Id = "881ebcf2-94a6-4938-81a4-55b81736f3b3", + Code = "1", + IsDeleted = 0ul, + Remark = "下载压缩包", + Sort = 100, + Status = 0, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Value = "下载压缩包" + }, + new + { + Id = "5bc8662d-b795-48f1-a88e-2f4be5279d37", + Code = "2", + IsDeleted = 0ul, + Remark = "生成到本项目", + Sort = 100, + Status = 0, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Value = "生成到本项目" + }, + new + { + Id = "b2a00b40-23e1-40e1-8995-60ab420eafe1", + Code = "1", + IsDeleted = 0ul, + Remark = "GET", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "GET" + }, + new + { + Id = "10070836-0c89-4b89-96e3-c65c7e33a86c", + Code = "2", + IsDeleted = 0ul, + Remark = "POST", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "POST" + }, + new + { + Id = "69a34c0b-85ce-4e53-9ad4-a592057dddd4", + Code = "3", + IsDeleted = 0ul, + Remark = "PUT", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "PUT" + }, + new + { + Id = "0e4dc1f1-8654-401b-800a-22b31f62ced1", + Code = "4", + IsDeleted = 0ul, + Remark = "DELETE", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "DELETE" + }, + new + { + Id = "443f965e-96b4-4fd2-93e9-07fe00a47205", + Code = "input", + IsDeleted = 0ul, + Remark = "输入框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "输入框" + }, + new + { + Id = "bf7be9a2-53fb-4250-87fe-49d7f741d159", + Code = "datepicker", + IsDeleted = 0ul, + Remark = "时间选择", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "时间选择" + }, + new + { + Id = "cea10919-47e2-43ab-a19b-9d41fe648310", + Code = "select", + IsDeleted = 0ul, + Remark = "下拉框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "下拉框" + }, + new + { + Id = "7d534f44-cf66-472e-b0d3-20a4cc2ad432", + Code = "radio", + IsDeleted = 0ul, + Remark = "单选框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "单选框" + }, + new + { + Id = "d63b06d4-be11-4ab7-9905-87f6f2ca056f", + Code = "switch", + IsDeleted = 0ul, + Remark = "开关", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "开关" + }, + new + { + Id = "46967f62-bac9-47fd-9278-b29c047b0c38", + Code = "checkbox", + IsDeleted = 0ul, + Remark = "多选框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "多选框" + }, + new + { + Id = "a8ac5009-93d3-4405-a6b9-81ed3e2811f2", + Code = "inputnumber", + IsDeleted = 0ul, + Remark = "数字输入框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "数字输入框" + }, + new + { + Id = "d00b3efa-2f9d-464c-8134-aa7013ef52bb", + Code = "textarea", + IsDeleted = 0ul, + Remark = "文本域", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "文本域" + }, + new + { + Id = "ad759239-e34e-4fdf-a0d0-6b39eb41f880", + Code = "==", + IsDeleted = 0ul, + Remark = "等于", + Sort = 1, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "等于" + }, + new + { + Id = "2c8e1240-f3ef-4df1-bd68-3047109ad5b4", + Code = "like", + IsDeleted = 0ul, + Remark = "模糊", + Sort = 2, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "模糊" + }, + new + { + Id = "efc18513-c17b-4fc1-8e0e-2e79fb9b0107", + Code = ">", + IsDeleted = 0ul, + Remark = "大于", + Sort = 3, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "大于" + }, + new + { + Id = "a6812d98-7785-4db2-b2f8-d476a459c5ed", + Code = "<", + IsDeleted = 0ul, + Remark = "小于", + Sort = 4, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "小于" + }, + new + { + Id = "218b5bac-343e-4594-a9da-30e391c7735c", + Code = "!=", + IsDeleted = 0ul, + Remark = "不等于", + Sort = 5, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "不等于" + }, + new + { + Id = "4825f15d-077b-4c16-8ee7-0205d653e14d", + Code = ">=", + IsDeleted = 0ul, + Remark = "大于等于", + Sort = 6, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "大于等于" + }, + new + { + Id = "7c9e8270-db5a-45b7-acd7-f95c8ee31547", + Code = "<=", + IsDeleted = 0ul, + Remark = "小于等于", + Sort = 7, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "小于等于" + }, + new + { + Id = "759ea7de-a18f-4ed7-9032-bbd1a4dadc9e", + Code = "isNotNull", + IsDeleted = 0ul, + Remark = "不为空", + Sort = 8, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "不为空" + }, + new + { + Id = "a5cdf75e-6361-490d-a043-f5929ccf65a9", + Code = "int", + IsDeleted = 0ul, + Remark = "int", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "int" + }, + new + { + Id = "cffdd4b5-d4e0-4196-81b9-02045de8b189", + Code = "long", + IsDeleted = 0ul, + Remark = "long", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "long" + }, + new + { + Id = "25be90ea-b439-4e9d-993c-48a5ce3b9358", + Code = "string", + IsDeleted = 0ul, + Remark = "string", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "string" + }, + new + { + Id = "496eef62-3849-4263-b274-a3e6090942e3", + Code = "bool", + IsDeleted = 0ul, + Remark = "bool", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "bool" + }, + new + { + Id = "681c02ea-7570-4a97-85a7-957a77314df6", + Code = "double", + IsDeleted = 0ul, + Remark = "double", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "double" + }, + new + { + Id = "259698cf-b25d-427a-8d22-33b9c1899eea", + Code = "DateTime", + IsDeleted = 0ul, + Remark = "DateTime", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "DateTime" + }, + new + { + Id = "a30c682e-744a-468d-a74f-827928c96c01", + Code = "float", + IsDeleted = 0ul, + Remark = "float", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "float" + }, + new + { + Id = "4b68cb83-f173-4864-bd10-a7a7d5248102", + Code = "decimal", + IsDeleted = 0ul, + Remark = "decimal", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "decimal" + }, + new + { + Id = "134d4173-8d93-4c19-bf6b-a640d35da097", + Code = "Guid", + IsDeleted = 0ul, + Remark = "Guid", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "Guid" + }, + new + { + Id = "c597306f-5fd0-4f75-9a46-12de340cd199", + Code = "DateTimeOffset", + IsDeleted = 0ul, + Remark = "DateTimeOffset", + Sort = 100, + Status = 0, + 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("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("父Ids"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_dict_type"); + + b + .HasComment("字典类型表"); + + b.HasData( + new + { + Id = "b0cfa91c-1189-4f39-bc5a-f035885d0604", + Code = "common_status", + IsDeleted = 0ul, + Name = "通用状态", + Remark = "通用状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "301ed120-dfc5-4d7c-af59-b56a519581c9", + Code = "sex", + IsDeleted = 0ul, + Name = "性别", + Remark = "性别字典", + Sort = 100, + Status = 0 + }, + new + { + Id = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Code = "consts_type", + IsDeleted = 0ul, + Name = "常量的分类", + Remark = "常量的分类,用于区别一组配置", + Sort = 100, + Status = 0 + }, + new + { + Id = "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", + Code = "yes_or_no", + IsDeleted = 0ul, + Name = "是否", + Remark = "是否", + Sort = 100, + Status = 0 + }, + new + { + Id = "2cecf329-cf95-44eb-a8d7-3fb77b13e093", + Code = "vis_type", + IsDeleted = 0ul, + Name = "访问类型", + Remark = "访问类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "e973d383-c28e-42e0-9e23-5f2bd592fef5", + Code = "menu_type", + IsDeleted = 0ul, + Name = "菜单类型", + Remark = "菜单类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "058db370-3718-42c3-8ba7-095341b1fe13", + Code = "send_type", + IsDeleted = 0ul, + Name = "发送类型", + Remark = "发送类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Code = "open_type", + IsDeleted = 0ul, + Name = "打开方式", + Remark = "打开方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "b3235678-f7fe-442b-8fba-e792a89b78f2", + Code = "menu_weight", + IsDeleted = 0ul, + Name = "菜单权重", + Remark = "菜单权重", + Sort = 100, + Status = 0 + }, + new + { + Id = "a2068ed1-62a6-463c-b720-06111d994079", + Code = "data_scope_type", + IsDeleted = 0ul, + Name = "数据范围类型", + Remark = "数据范围类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", + Code = "sms_send_source", + IsDeleted = 0ul, + Name = "短信发送来源", + Remark = "短信发送来源", + Sort = 100, + Status = 0 + }, + new + { + Id = "8461bd1d-311b-487e-b579-d6049c6fb191", + Code = "op_type", + IsDeleted = 0ul, + Name = "操作类型", + Remark = "操作类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "b924e0c1-3f23-4e37-9f27-90e945381304", + Code = "file_storage_location", + IsDeleted = 0ul, + Name = "文件存储位置", + Remark = "文件存储位置", + Sort = 100, + Status = 0 + }, + new + { + Id = "0f1b8660-d932-4a53-a681-a38bebae91e0", + Code = "run_status", + IsDeleted = 0ul, + Name = "运行状态", + Remark = "定时任务运行状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Code = "notice_type", + IsDeleted = 0ul, + Name = "通知公告类型", + Remark = "通知公告类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Code = "notice_status", + IsDeleted = 0ul, + Name = "通知公告状态", + Remark = "通知公告状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Code = "yes_true_false", + IsDeleted = 0ul, + Name = "是否boolean", + Remark = "是否boolean", + Sort = 100, + Status = 0 + }, + new + { + Id = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Code = "code_gen_create_type", + IsDeleted = 0ul, + Name = "代码生成方式", + Remark = "代码生成方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Code = "request_type", + IsDeleted = 0ul, + Name = "请求方式", + Remark = "请求方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Code = "code_gen_effect_type", + IsDeleted = 0ul, + Name = "代码生成作用类型", + Remark = "代码生成作用类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Code = "code_gen_query_type", + IsDeleted = 0ul, + Name = "代码生成查询类型", + Remark = "代码生成查询类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "28f653d4-e573-4f54-8e5c-4e308780145a", + Code = "code_gen_net_type", + IsDeleted = 0ul, + Name = "代码生成.NET类型", + Remark = "代码生成.NET类型", + Sort = 100, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysEmp", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("用户Id"); + + b.Property("JobNum") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("工号"); + + b.Property("OrgId") + .HasColumnType("varchar(36)") + .HasColumnName("OrgId") + .HasComment("机构Id"); + + b.Property("OrgName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("机构名称"); + + b.HasKey("Id"); + + b.ToTable("sys_emp"); + + b + .HasComment("员工表"); + + b.HasData( + new + { + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + JobNum = "D1001", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }, + new + { + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + JobNum = "D1002", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }, + new + { + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", + JobNum = "D1003", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => + { + b.Property("SysEmpId") + .HasColumnType("varchar(36)") + .HasColumnName("SysEmpId") + .HasComment("员工Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") + .HasComment("职位Id"); + + b.HasKey("SysEmpId", "SysOrgId", "SysPosId"); + + b.HasIndex("SysOrgId"); + + b.HasIndex("SysPosId"); + + b.ToTable("sys_emp_ext_org_pos"); + + b + .HasComment("员工附属机构职位表"); + + b.HasData( + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "127c0a5d-43ac-4370-b313-082361885aca", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + SysPosId = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66" + }, + new + { + 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("varchar(36)") + .HasColumnName("SysEmpId") + .HasComment("员工Id"); + + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") + .HasComment("职位Id"); + + b.HasKey("SysEmpId", "SysPosId"); + + b.HasIndex("SysPosId"); + + b.ToTable("sys_emp_pos"); + + b + .HasComment("员工职位表"); + + b.HasData( + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" + }, + new + { + SysEmpId = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" + }, + new + { + SysEmpId = "16a74726-e156-499f-9942-0e0e24ad0c3f", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysFile", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("FileBucket") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件仓库"); + + b.Property("FileLocation") + .HasColumnType("int") + .HasComment("文件存储位置"); + + b.Property("FileObjectName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("存储到bucket的名称"); + + b.Property("FileOriginName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件名称"); + + b.Property("FilePath") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("存储路径"); + + b.Property("FileSizeInfo") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件大小信息"); + + b.Property("FileSizeKb") + .HasColumnType("bigint") + .HasComment("文件大小kb"); + + b.Property("FileSuffix") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件后缀"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_file"); + + b + .HasComment("文件信息表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogAudit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("ColumnName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("操作时间"); + + b.Property("NewValue") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("新值"); + + b.Property("OldValue") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("旧值"); + + b.Property("Operate") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作方式"); + + b.Property("TableName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("表名"); + + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") + .HasComment("操作人Id"); + + b.Property("UserName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作人名称"); + + b.HasKey("Id"); + + b.ToTable("sys_log_audit"); + + b + .HasComment("审计日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogOp", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Account") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作人"); + + b.Property("Browser") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("浏览器"); + + b.Property("ClassName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("类名称"); + + b.Property("ElapsedTime") + .HasColumnType("bigint") + .HasComment("耗时"); + + b.Property("Ip") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("IP"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("地址"); + + b.Property("Message") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("具体消息"); + + b.Property("MethodName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("方法名称"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("OpTime") + .HasColumnType("datetime") + .HasComment("操作时间"); + + b.Property("OpType") + .HasColumnType("int") + .HasComment("操作类型"); + + b.Property("Os") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作系统"); + + b.Property("Param") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求参数"); + + b.Property("ReqMethod") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求方式"); + + b.Property("Result") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("返回结果"); + + b.Property("Success") + .HasColumnType("tinyint(1)") + .HasComment("是否执行成功"); + + b.Property("Url") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求地址"); + + b.HasKey("Id"); + + b.ToTable("sys_log_op"); + + b + .HasComment("操作日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogVis", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Account") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("访问人"); + + b.Property("Browser") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("浏览器"); + + b.Property("Ip") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("IP"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("地址"); + + b.Property("Message") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("具体消息"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Os") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作系统"); + + b.Property("Success") + .HasColumnType("tinyint(1)") + .HasComment("是否执行成功"); + + b.Property("VisTime") + .HasColumnType("datetime") + .HasComment("访问时间"); + + b.Property("VisType") + .HasColumnType("int") + .HasComment("访问类型"); + + b.HasKey("Id"); + + b.ToTable("sys_log_vis"); + + b + .HasComment("访问日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysMenu", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Application") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("应用分类"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Component") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("组件地址"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Icon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Link") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("内链地址"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("OpenType") + .HasColumnType("int") + .HasComment("打开方式"); + + b.Property("Permission") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("权限标识"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("父Ids"); + + b.Property("Redirect") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("重定向地址"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Router") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("路由地址"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("菜单类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Visible") + .HasColumnType("bit") + .HasColumnName("Visible") + .HasComment("是否可见"); + + b.Property("VisibleParent") + .HasColumnType("bit") + .HasColumnName("VisibleParent") + .HasComment("关联菜单显示"); + + b.Property("Weight") + .HasColumnType("int") + .HasComment("权重"); + + b.HasKey("Id"); + + b.ToTable("sys_menu"); + + b + .HasComment("菜单表"); + + b.HasData( + new + { + Id = "83ce02c9-b37f-4885-96e3-9b34371edb2e", + Application = "system", + Code = "system_index", + Component = "RouteView", + Icon = "home", + IsDeleted = 0ul, + Name = "主控面板", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Redirect = "/analysis", + Router = "/", + Sort = 1, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "914a520d-9e4f-465b-ae05-7248b37d4be1", + Application = "system", + Code = "system_index_dashboard", + Component = "system/dashboard/Analysis", + IsDeleted = 0ul, + Name = "分析页", + OpenType = 0, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "72981ad9-9036-4aa7-b8f4-dc407eda50b4", + Application = "system", + Code = "system_index_workplace", + Component = "system/dashboard/Workplace", + IsDeleted = 0ul, + Name = "工作台", + OpenType = 0, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", + Application = "system", + Code = "sys_mgr", + Component = "PageView", + Icon = "team", + IsDeleted = 0ul, + Name = "组织架构", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/sys", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Application = "system", + Code = "sys_user_mgr", + Component = "system/user/index", + IsDeleted = 0ul, + Name = "用户管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bff7e542-6463-4f82-a03d-b1022e60d4b6", + Application = "system", + Code = "sys_user_mgr_page", + IsDeleted = 0ul, + Name = "用户查询", + OpenType = 0, + Permission = "sysUser:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "936440c7-93ef-4d2f-adff-6151f4317355", + Application = "system", + Code = "sys_user_mgr_edit", + IsDeleted = 0ul, + Name = "用户编辑", + OpenType = 0, + Permission = "sysUser:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "281888e3-d183-4711-ba27-298ef6e64659", + Application = "system", + Code = "sys_user_mgr_add", + IsDeleted = 0ul, + Name = "用户增加", + OpenType = 0, + Permission = "sysUser:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e4aff800-d34a-416b-bd6e-dcebaa1dd436", + Application = "system", + Code = "sys_user_mgr_delete", + IsDeleted = 0ul, + Name = "用户删除", + OpenType = 0, + Permission = "sysUser:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "7a266494-e17b-480d-8f50-cc234e6fe424", + Application = "system", + Code = "sys_user_mgr_detail", + IsDeleted = 0ul, + Name = "用户详情", + OpenType = 0, + Permission = "sysUser:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0d93f763-20d3-4c95-add3-3d94770b110e", + Application = "system", + Code = "sys_user_mgr_export", + IsDeleted = 0ul, + Name = "用户导出", + OpenType = 0, + Permission = "sysUser:export", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "17d047c3-6e95-4f7d-93db-97817d886fa2", + Application = "system", + Code = "sys_user_mgr_selector", + IsDeleted = 0ul, + Name = "用户选择器", + OpenType = 0, + Permission = "sysUser:selector", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5fc44256-2e56-4805-9382-b5504ca5b6cb", + Application = "system", + Code = "sys_user_mgr_grant_role", + IsDeleted = 0ul, + Name = "用户授权角色", + OpenType = 0, + Permission = "sysUser:grantRole", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ceff7899-6779-4708-b9ed-a2d5b488cff2", + Application = "system", + Code = "sys_user_mgr_own_role", + IsDeleted = 0ul, + Name = "用户拥有角色", + OpenType = 0, + Permission = "sysUser:ownRole", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "38ba9ccc-eb96-4a60-a5ab-f6ea013f8291", + Application = "system", + Code = "sys_user_mgr_grant_data", + IsDeleted = 0ul, + Name = "用户授权数据", + OpenType = 0, + Permission = "sysUser:grantData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf2f8faf-b280-456c-8865-64115e04019f", + Application = "system", + Code = "sys_user_mgr_own_data", + IsDeleted = 0ul, + Name = "用户拥有数据", + OpenType = 0, + Permission = "sysUser:ownData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "711563e5-fed6-44d6-bcf3-138c73cfbfca", + Application = "system", + Code = "sys_user_mgr_update_info", + IsDeleted = 0ul, + Name = "用户更新信息", + OpenType = 0, + Permission = "sysUser:updateInfo", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "306fe9bf-3132-4011-9f3f-1a2f4ead7734", + Application = "system", + Code = "sys_user_mgr_update_pwd", + IsDeleted = 0ul, + Name = "用户修改密码", + OpenType = 0, + Permission = "sysUser:updatePwd", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "791b0d88-7e25-490f-a94f-a2e32bb3b6e6", + Application = "system", + Code = "sys_user_mgr_change_status", + IsDeleted = 0ul, + Name = "用户修改状态", + OpenType = 0, + Permission = "sysUser:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9d681aac-528a-46b0-9718-ffc4abe9c29e", + Application = "system", + Code = "sys_user_mgr_update_avatar", + IsDeleted = 0ul, + Name = "用户修改头像", + OpenType = 0, + Permission = "sysUser:updateAvatar", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "471b5259-5f55-4643-841c-f07089cfafdf", + Application = "system", + Code = "sys_user_mgr_reset_pwd", + IsDeleted = 0ul, + Name = "用户重置密码", + OpenType = 0, + Permission = "sysUser:resetPwd", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "471d3098-90a4-47e1-bd07-5d3ed8d21fb0", + Application = "system", + Code = "sys_user_mgr_login", + IsDeleted = 0ul, + Name = "用户登录信息", + OpenType = 0, + Permission = "getLoginUser", + 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 = 0ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Application = "system", + Code = "sys_org_mgr", + Component = "system/org/index", + IsDeleted = 0ul, + Name = "机构管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "b7c34c9b-933e-4c48-b1d0-af15a1f7da1f", + Application = "system", + Code = "sys_org_mgr_page", + IsDeleted = 0ul, + Name = "机构查询", + OpenType = 0, + Permission = "sysOrg:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "917064b2-c715-4fa4-9b2d-20a11b784ed1", + Application = "system", + Code = "sys_org_mgr_list", + IsDeleted = 0ul, + Name = "机构列表", + OpenType = 0, + Permission = "sysOrg:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d7c18d60-f28f-4a57-90b3-26fc95249ae0", + Application = "system", + Code = "sys_org_mgr_add", + IsDeleted = 0ul, + Name = "机构增加", + OpenType = 0, + Permission = "sysOrg:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e65eb1e3-cc9e-4309-8c7a-9ac41765b239", + Application = "system", + Code = "sys_org_mgr_edit", + IsDeleted = 0ul, + Name = "机构编辑", + OpenType = 0, + Permission = "sysOrg:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c2450c4c-89c6-46e8-8f89-11331790cbe3", + Application = "system", + Code = "sys_org_mgr_delete", + IsDeleted = 0ul, + Name = "机构删除", + OpenType = 0, + Permission = "sysOrg:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "695a6018-82c3-466e-a2a1-dab16039bfdb", + Application = "system", + Code = "sys_org_mgr_detail", + IsDeleted = 0ul, + Name = "机构详情", + OpenType = 0, + Permission = "sysOrg:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2d153046-279b-43be-8f57-46875118fd2c", + Application = "system", + Code = "sys_org_mgr_tree", + IsDeleted = 0ul, + Name = "机构树", + OpenType = 0, + Permission = "sysOrg:tree", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Application = "system", + Code = "sys_pos_mgr", + Component = "system/pos/index", + IsDeleted = 0ul, + Name = "职位管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d2436601-bc48-4610-ba67-5b666f8ce33a", + Application = "system", + Code = "sys_pos_mgr_page", + IsDeleted = 0ul, + Name = "职位查询", + OpenType = 0, + Permission = "sysPos:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1305efaa-b81a-475f-9dde-8f6549ca7743", + Application = "system", + Code = "sys_pos_mgr_list", + IsDeleted = 0ul, + Name = "职位列表", + OpenType = 0, + Permission = "sysPos:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c227e732-f231-4488-89b0-d1c9dad78950", + Application = "system", + Code = "sys_pos_mgr_add", + IsDeleted = 0ul, + Name = "职位增加", + OpenType = 0, + Permission = "sysPos:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9dafbe04-83c9-482c-9c83-81f4da045da5", + Application = "system", + Code = "sys_pos_mgr_edit", + IsDeleted = 0ul, + Name = "职位编辑", + OpenType = 0, + Permission = "sysPos:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "031df05e-b7c6-4ecd-aff2-f189c994e86d", + Application = "system", + Code = "sys_pos_mgr_delete", + IsDeleted = 0ul, + Name = "职位删除", + OpenType = 0, + Permission = "sysPos:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fe5ee8a1-2145-43c6-bdeb-518f3a9c127d", + Application = "system", + Code = "sys_pos_mgr_detail", + IsDeleted = 0ul, + Name = "职位详情", + OpenType = 0, + Permission = "sysPos:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", + Application = "system", + Code = "auth_manager", + Component = "PageView", + Icon = "safety-certificate", + IsDeleted = 0ul, + Name = "权限管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/auth", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Application = "system", + Code = "sys_app_mgr", + Component = "system/app/index", + IsDeleted = 0ul, + Name = "应用管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "dbaa7a6d-234f-4cc9-977f-4544b8bb45b8", + Application = "system", + Code = "sys_app_mgr_page", + IsDeleted = 0ul, + Name = "应用查询", + OpenType = 0, + Permission = "sysApp:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ab7b2b41-b0bc-4b9c-9017-f5c6918e393e", + Application = "system", + Code = "sys_app_mgr_list", + IsDeleted = 0ul, + Name = "应用列表", + OpenType = 0, + Permission = "sysApp:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f4e1d63b-5d92-46eb-82aa-267335a5a3f3", + Application = "system", + Code = "sys_app_mgr_add", + IsDeleted = 0ul, + Name = "应用增加", + OpenType = 0, + Permission = "sysApp:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f33a3791-1c01-4d30-bcc3-d9fdf5246376", + Application = "system", + Code = "sys_app_mgr_edit", + IsDeleted = 0ul, + Name = "应用编辑", + OpenType = 0, + Permission = "sysApp:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e0a6cf90-0a8b-44e4-a32f-5f43ef996b82", + Application = "system", + Code = "sys_app_mgr_delete", + IsDeleted = 0ul, + Name = "应用删除", + OpenType = 0, + Permission = "sysApp:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a0abe974-5ae9-440b-9d16-2412eab52d70", + Application = "system", + Code = "sys_app_mgr_detail", + IsDeleted = 0ul, + Name = "应用详情", + OpenType = 0, + Permission = "sysApp:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f640e243-b439-4109-8aea-c66205ef6b12", + Application = "system", + Code = "sys_app_mgr_set_as_default", + IsDeleted = 0ul, + Name = "设为默认应用", + OpenType = 0, + Permission = "sysApp:setAsDefault", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Application = "system", + Code = "sys_menu_mgr", + Component = "system/menu/index", + IsDeleted = 0ul, + Name = "菜单管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e9982e73-1833-4674-9403-ee3dee2efdf7", + Application = "system", + Code = "sys_menu_mgr_list", + IsDeleted = 0ul, + Name = "菜单列表", + OpenType = 0, + Permission = "sysMenu:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "758e15e6-75a6-4b72-8f94-5da379e53354", + Application = "system", + Code = "sys_menu_mgr_add", + IsDeleted = 0ul, + Name = "菜单增加", + OpenType = 0, + Permission = "sysMenu:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "07139c19-6b39-49f5-9e22-c4dc7e9d947b", + Application = "system", + Code = "sys_menu_mgr_edit", + IsDeleted = 0ul, + Name = "菜单编辑", + OpenType = 0, + Permission = "sysMenu:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "857fb581-78ff-4884-a6fb-8dfb4951fef9", + Application = "system", + Code = "sys_menu_mgr_delete", + IsDeleted = 0ul, + Name = "菜单删除", + OpenType = 0, + Permission = "sysMenu:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cd43a8ee-9f98-4355-bf81-ba40f388b23f", + Application = "system", + Code = "sys_menu_mgr_detail", + IsDeleted = 0ul, + Name = "菜单详情", + OpenType = 0, + Permission = "sysMenu:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ec318997-596d-403a-91be-f303b234b02d", + Application = "system", + Code = "sys_menu_mgr_grant_tree", + IsDeleted = 0ul, + Name = "菜单授权树", + OpenType = 0, + Permission = "sysMenu:treeForGrant", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "3892ef5d-39b2-4a4d-8047-cb96542fb54f", + Application = "system", + Code = "sys_menu_mgr_tree", + IsDeleted = 0ul, + Name = "菜单树", + OpenType = 0, + Permission = "sysMenu:tree", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "00831a3b-d080-411f-afb9-9f415334b192", + Application = "system", + Code = "sys_menu_mgr_change", + IsDeleted = 0ul, + Name = "菜单切换", + OpenType = 0, + Permission = "sysMenu:change", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Application = "system", + Code = "sys_role_mgr", + Component = "system/role/index", + IsDeleted = 0ul, + Name = "角色管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4241f4a0-89ab-4a6a-80bb-2830f855d3be", + Application = "system", + Code = "sys_role_mgr_page", + IsDeleted = 0ul, + Name = "角色查询", + OpenType = 0, + Permission = "sysRole:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6a48beb1-c828-43d6-af3d-3e18ef163070", + Application = "system", + Code = "sys_role_mgr_add", + IsDeleted = 0ul, + Name = "角色增加", + OpenType = 0, + Permission = "sysRole:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1198a602-a23d-4a06-aa9a-76aaf5f065a7", + Application = "system", + Code = "sys_role_mgr_edit", + IsDeleted = 0ul, + Name = "角色编辑", + OpenType = 0, + Permission = "sysRole:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e7708eeb-2c87-4c3d-bc71-c395e5d708db", + Application = "system", + Code = "sys_role_mgr_delete", + IsDeleted = 0ul, + Name = "角色删除", + OpenType = 0, + Permission = "sysRole:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "63ab477f-88fb-4f4b-9dcd-0cb83ac767f6", + Application = "system", + Code = "sys_role_mgr_detail", + IsDeleted = 0ul, + Name = "角色详情", + OpenType = 0, + Permission = "sysRole:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2622348c-dd8f-4ade-a350-de0a8f01e1f6", + Application = "system", + Code = "sys_role_mgr_drop_down", + IsDeleted = 0ul, + Name = "角色下拉", + OpenType = 0, + Permission = "sysRole:dropDown", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "73d84863-b381-40be-84bc-ec8381fa6c0a", + Application = "system", + Code = "sys_role_mgr_grant_menu", + IsDeleted = 0ul, + Name = "角色授权菜单", + OpenType = 0, + Permission = "sysRole:grantMenu", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bbc5e792-3d72-4d0d-8ddb-25cf2c4e1374", + Application = "system", + Code = "sys_role_mgr_own_menu", + IsDeleted = 0ul, + Name = "角色拥有菜单", + OpenType = 0, + Permission = "sysRole:ownMenu", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "19234814-6007-484c-818c-88a664a2a339", + Application = "system", + Code = "sys_role_mgr_grant_data", + IsDeleted = 0ul, + Name = "角色授权数据", + OpenType = 0, + Permission = "sysRole:grantData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "19e5c5f6-b598-4c42-8eed-3d46fb11b465", + Application = "system", + Code = "sys_role_mgr_own_data", + IsDeleted = 0ul, + Name = "角色拥有数据", + OpenType = 0, + Permission = "sysRole:ownData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Application = "system", + Code = "system_tools", + Component = "PageView", + Icon = "euro", + IsDeleted = 0ul, + Name = "开发管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/tools", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Application = "system", + Code = "system_tools_config", + Component = "system/config/index", + IsDeleted = 0ul, + Name = "系统配置", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c14c82bd-632d-4cc9-9236-37aa64b15ecf", + Application = "system", + Code = "system_tools_config_page", + IsDeleted = 0ul, + Name = "配置查询", + OpenType = 0, + Permission = "sysConfig:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "78d31d68-9c9b-4e02-94c9-8a74eea4c1fb", + Application = "system", + Code = "system_tools_config_list", + IsDeleted = 0ul, + Name = "配置列表", + OpenType = 0, + Permission = "sysConfig:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fc91afb5-2b9e-428b-b5ff-b0ef35dd5336", + Application = "system", + Code = "system_tools_config_add", + IsDeleted = 0ul, + Name = "配置增加", + OpenType = 0, + Permission = "sysConfig:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1efb72e8-3449-490a-92e0-308b124c338f", + Application = "system", + Code = "system_tools_config_edit", + IsDeleted = 0ul, + Name = "配置编辑", + OpenType = 0, + Permission = "sysConfig:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5760230f-e6fc-4c3d-ba38-1c8a5a923eb3", + Application = "system", + Code = "system_tools_config_delete", + IsDeleted = 0ul, + Name = "配置删除", + OpenType = 0, + Permission = "sysConfig:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6bfc0c53-5d6c-437c-9757-bc79e664d0f5", + Application = "system", + Code = "system_tools_config_detail", + IsDeleted = 0ul, + Name = "配置详情", + OpenType = 0, + Permission = "sysConfig:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f7fe47a3-86b2-4660-9920-0c9836755666", + Application = "system", + Code = "sys_app_mgr_set_as_default", + IsDeleted = 0ul, + Name = "设为默认应用", + OpenType = 0, + Permission = "sysApp:setAsDefault", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", + Application = "system", + Code = "sys_email_mgr", + Component = "system/email/index", + IsDeleted = 0ul, + Name = "邮件发送", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4d4cf5b3-bd4c-4f17-9fb2-47b28b00681f", + Application = "system", + Code = "sys_email_mgr_send_email", + IsDeleted = 0ul, + Name = "发送文本邮件", + OpenType = 0, + Permission = "email:sendEmail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "51e45073-1461-4b3b-ae06-d0d3dcf222e0", + Application = "system", + Code = "sys_email_mgr_send_email_html", + IsDeleted = 0ul, + Name = "发送html邮件", + OpenType = 0, + Permission = "email:sendEmailHtml", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", + Application = "system", + Code = "sys_sms_mgr", + Component = "system/sms/index", + IsDeleted = 0ul, + Name = "短信管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2afa4925-b927-457e-88a1-d215b7d75fb6", + Application = "system", + Code = "sys_sms_mgr_page", + IsDeleted = 0ul, + Name = "短信发送查询", + OpenType = 0, + Permission = "sms:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "97c1b073-5e19-4542-89e2-d8da44d0f1df", + Application = "system", + Code = "sys_sms_mgr_send_login_message", + IsDeleted = 0ul, + Name = "发送验证码短信", + OpenType = 0, + Permission = "sms:sendLoginMessage", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d2454bd2-f300-4b28-95c0-12432c28cbdf", + Application = "system", + Code = "sys_sms_mgr_validate_message", + IsDeleted = 0ul, + Name = "验证短信验证码", + OpenType = 0, + Permission = "sms:validateMessage", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Application = "system", + Code = "sys_dict_mgr", + Component = "system/dict/index", + IsDeleted = 0ul, + Name = "字典管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "70c5e8c5-6104-4e53-99c0-4743e557456b", + Application = "system", + Code = "sys_dict_mgr_dict_type_page", + IsDeleted = 0ul, + Name = "字典类型查询", + OpenType = 0, + Permission = "sysDictType:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1bd1d982-e05a-4bdc-a4e0-752d94f3196c", + Application = "system", + Code = "sys_dict_mgr_dict_type_list", + IsDeleted = 0ul, + Name = "字典类型列表", + OpenType = 0, + Permission = "sysDictType:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bd09b023-0884-4f31-8cf7-f66f789fa3db", + Application = "system", + Code = "sys_dict_mgr_dict_type_add", + IsDeleted = 0ul, + Name = "字典类型增加", + OpenType = 0, + Permission = "sysDictType:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1f7a41ff-5a46-449c-81f3-1618dfdcb4cd", + Application = "system", + Code = "sys_dict_mgr_dict_type_delete", + IsDeleted = 0ul, + Name = "字典类型删除", + OpenType = 0, + Permission = "sysDictType:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2381cde4-2174-47e7-a1e5-e58da70e7a11", + Application = "system", + Code = "sys_dict_mgr_dict_type_edit", + IsDeleted = 0ul, + Name = "字典类型编辑", + OpenType = 0, + Permission = "sysDictType:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8f7d3c74-8800-4922-9662-ac6af378c882", + Application = "system", + Code = "sys_dict_mgr_dict_type_detail", + IsDeleted = 0ul, + Name = "字典类型详情", + OpenType = 0, + Permission = "sysDictType:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4f87b6de-be62-4398-b680-1f8611f2cd70", + Application = "system", + Code = "sys_dict_mgr_dict_type_drop_down", + IsDeleted = 0ul, + Name = "字典类型下拉", + OpenType = 0, + Permission = "sysDictType:dropDown", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "07c799b2-e8e9-4955-83da-97560f161d87", + Application = "system", + Code = "sys_dict_mgr_dict_type_change_status", + IsDeleted = 0ul, + Name = "字典类型修改状态", + OpenType = 0, + Permission = "sysDictType:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "29be8e3c-c2bb-4162-b282-fdf58c218b9d", + Application = "system", + Code = "sys_dict_mgr_dict_page", + IsDeleted = 0ul, + Name = "字典值查询", + OpenType = 0, + Permission = "sysDictData:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "b8cbc4e1-ac10-4cda-b1e4-f816a2632d02", + Application = "system", + Code = "sys_dict_mgr_dict_list", + IsDeleted = 0ul, + Name = "字典值列表", + OpenType = 0, + Permission = "sysDictData:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54e97bde-94d6-42df-89e3-4c3ace153b22", + Application = "system", + Code = "sys_dict_mgr_dict_add", + IsDeleted = 0ul, + Name = "字典值增加", + OpenType = 0, + Permission = "sysDictData:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "be98da08-a3b0-463c-8208-05d843620258", + Application = "system", + Code = "sys_dict_mgr_dict_delete", + IsDeleted = 0ul, + Name = "字典值删除", + OpenType = 0, + Permission = "sysDictData:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "38809fc3-163f-4fe9-a488-c9bb5bce752a", + Application = "system", + Code = "sys_dict_mgr_dict_edit", + IsDeleted = 0ul, + Name = "字典值编辑", + OpenType = 0, + Permission = "sysDictData:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fc511b42-f0a1-489b-8418-7ef94b0fb374", + Application = "system", + Code = "sys_role_mgr_grant_data", + IsDeleted = 0ul, + Name = "字典值详情", + OpenType = 0, + Permission = "sysDictData:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "200428b3-1605-4c70-b840-e691e302ae69", + Application = "system", + Code = "sys_dict_mgr_dict_change_status", + IsDeleted = 0ul, + Name = "字典值修改状态", + OpenType = 0, + Permission = "sysDictData:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d40f424d-d5fc-4b86-a2bd-3a5a76076bc1", + Application = "system", + Code = "sys_swagger_mgr", + Component = "Iframe", + IsDeleted = 0ul, + Link = "http://127.0.0.1:5566/", + Name = "接口文档", + OpenType = 2, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "eec4563e-9307-4ccd-ac3a-93598badb195", + Application = "system", + Code = "sys_log_mgr", + Component = "PageView", + Icon = "read", + IsDeleted = 0ul, + Name = "日志管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/log", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "322b2cb6-df29-483b-b011-54dce1532fae", + Application = "system", + Code = "sys_log_mgr_vis_log", + Component = "system/log/vislog/index", + IsDeleted = 0ul, + Name = "访问日志", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "122641c1-ab6d-4f91-9527-16fc8fea9708", + Application = "system", + Code = "sys_log_mgr_vis_log_page", + IsDeleted = 0ul, + Name = "访问日志查询", + OpenType = 0, + Permission = "sysVisLog:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f2367804-6382-4e72-8282-e4f6f988ecd1", + Application = "system", + Code = "sys_log_mgr_vis_log_delete", + IsDeleted = 0ul, + Name = "访问日志清空", + OpenType = 0, + Permission = "sysVisLog:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", + Application = "system", + Code = "sys_log_mgr_op_log", + Component = "system/log/oplog/index", + IsDeleted = 0ul, + Name = "操作日志", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "7f44f49e-6458-4149-bbcd-9a937f552cec", + Application = "system", + Code = "sys_log_mgr_op_log_page", + IsDeleted = 0ul, + Name = "操作日志查询", + OpenType = 0, + Permission = "sysOpLog:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "263e0c00-2796-411c-9f50-0aa361f7781c", + Application = "system", + Code = "sys_log_mgr_op_log_delete", + IsDeleted = 0ul, + Name = "操作日志清空", + OpenType = 0, + Permission = "sysOpLog:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", + Application = "system", + Code = "sys_monitor_mgr", + Component = "PageView", + Icon = "deployment-unit", + IsDeleted = 0ul, + Name = "系统监控", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/monitor", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c1e70042-fe3f-4efc-a6cc-86de8507f948", + Application = "system", + Code = "sys_monitor_mgr_machine_monitor", + Component = "system/machine/index", + IsDeleted = 0ul, + Name = "服务监控", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "444f3658-defe-47a7-880e-bf0af8b66591", + Application = "system", + Code = "sys_monitor_mgr_machine_monitor_query", + IsDeleted = 0ul, + Name = "服务监控查询", + OpenType = 0, + Permission = "sysMachine:query", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "49a8b476-327b-4f33-87b8-2d9bc50dc390", + Application = "system", + Code = "sys_monitor_mgr_online_user", + Component = "system/onlineUser/index", + IsDeleted = 0ul, + Name = "在线用户", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4785eb5a-678a-4f9c-b07c-3b92acdd6de0", + Application = "system", + Code = "sys_monitor_mgr_online_user_list", + IsDeleted = 0ul, + Name = "在线用户列表", + OpenType = 0, + Permission = "sysOnlineUser:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4dbf6765-ac79-4708-a9d5-16a4d4b09164", + Application = "system", + Code = "sys_monitor_mgr_online_user_force_exist", + IsDeleted = 0ul, + Name = "在线用户强退", + OpenType = 0, + Permission = "sysOnlineUser:forceExist", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "31c2af01-b856-4a1d-a131-cdf8e847b1a4", + Application = "system", + Code = "sys_monitor_mgr_druid", + Component = "Iframe", + IsDeleted = 0ul, + Link = "http://localhost:82/druid/login.html", + Name = "数据监控", + OpenType = 2, + 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 = 0ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d4cac841-99e5-4014-af17-2986c9340306", + Application = "system", + Code = "sys_notice", + Component = "PageView", + Icon = "sound", + IsDeleted = 0ul, + Name = "通知公告", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/notice", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Application = "system", + Code = "sys_notice_mgr", + Component = "system/notice/index", + IsDeleted = 0ul, + Name = "公告管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54584ab7-25d1-45b7-b3d4-76ba21511f97", + Application = "system", + Code = "sys_notice_mgr_page", + IsDeleted = 0ul, + Name = "公告查询", + OpenType = 0, + Permission = "sysNotice:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f27c8431-7da5-4ffe-a8f3-b511cf44c0c8", + Application = "system", + Code = "sys_notice_mgr_add", + IsDeleted = 0ul, + Name = "公告增加", + OpenType = 0, + Permission = "sysNotice:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f84c1f3a-3a51-4be2-97c9-7543b044e457", + Application = "system", + Code = "sys_notice_mgr_edit", + IsDeleted = 0ul, + Name = "公告编辑", + OpenType = 0, + Permission = "sysNotice:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a8abcb85-ad3b-47b9-8c9b-e7d1876b90cf", + Application = "system", + Code = "sys_notice_mgr_delete", + IsDeleted = 0ul, + Name = "公告删除", + OpenType = 0, + Permission = "sysNotice:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fe9cbb41-7b05-4f32-b960-87a1ef146166", + Application = "system", + Code = "sys_notice_mgr_detail", + IsDeleted = 0ul, + Name = "公告查看", + OpenType = 0, + Permission = "sysNotice:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "3e547bb0-4cf5-4cf0-8386-48d2f3c12dcb", + Application = "system", + Code = "sys_notice_mgr_changeStatus", + IsDeleted = 0ul, + Name = "公告修改状态", + OpenType = 0, + Permission = "sysNotice:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ac3065ff-d239-4e0e-86e5-d72cc658224c", + Application = "system", + Code = "sys_notice_mgr_received", + Component = "system/noticeReceived/index", + IsDeleted = 0ul, + Name = "已收公告", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e2d4b13b-eb3e-4ead-8fb8-4c61a3004726", + Application = "system", + Code = "sys_notice_mgr_received_page", + IsDeleted = 0ul, + Name = "已收公告查询", + OpenType = 0, + Permission = "sysNotice:received", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "05326e62-f496-4950-8a29-40e8a479424f", + Application = "system", + Code = "sys_file_mgr", + Component = "PageView", + Icon = "file", + IsDeleted = 0ul, + Name = "文件管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/file", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0af2a460-bbb0-472c-b027-8532970425df", + Application = "system", + Code = "sys_file_mgr_sys_file", + Component = "system/file/index", + IsDeleted = 0ul, + Name = "系统文件", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c7bac800-b922-4173-bd8d-9888b4eab1d4", + Application = "system", + Code = "sys_file_mgr_sys_file_page", + IsDeleted = 0ul, + Name = "文件查询", + OpenType = 0, + Permission = "sysFileInfo:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f47e1fa7-6329-4d67-8fe6-36ca06aad54b", + Application = "system", + Code = "sys_file_mgr_sys_file_list", + IsDeleted = 0ul, + Name = "文件列表", + OpenType = 0, + Permission = "sysFileInfo:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cca0a2ee-cfb9-4996-affb-dc8d8168ac10", + Application = "system", + Code = "sys_file_mgr_sys_file_delete", + IsDeleted = 0ul, + Name = "文件删除", + OpenType = 0, + Permission = "sysFileInfo:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "eb738eaa-5eed-466d-b422-4eb6f4662dd9", + Application = "system", + Code = "sys_file_mgr_sys_file_detail", + IsDeleted = 0ul, + Name = "文件详情", + OpenType = 0, + Permission = "sysFileInfo:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "69b97ace-d849-4e52-8fc2-9da7d93e325f", + Application = "system", + Code = "sys_file_mgr_sys_file_upload", + IsDeleted = 0ul, + Name = "文件上传", + OpenType = 0, + Permission = "sysFileInfo:upload", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e286d53d-bf3c-4711-b0a3-15cfad0a7521", + Application = "system", + Code = "sys_file_mgr_sys_file_download", + IsDeleted = 0ul, + Name = "文件下载", + OpenType = 0, + Permission = "sysFileInfo:download", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1975891b-7940-44a8-a513-9f2e8b05dda1", + Application = "system", + Code = "sys_file_mgr_sys_file_preview", + IsDeleted = 0ul, + Name = "图片预览", + OpenType = 0, + Permission = "sysFileInfo:preview", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ba03cfd5-5d72-465f-87b6-71134da68fab", + Application = "system", + Code = "sys_timers", + Component = "PageView", + Icon = "dashboard", + IsDeleted = 0ul, + Name = "定时任务", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/timers", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Application = "system", + Code = "sys_timers_mgr", + Component = "system/timers/index", + IsDeleted = 0ul, + Name = "任务管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "db62154a-470e-43c8-8959-a686b954fe7d", + Application = "system", + Code = "sys_timers_mgr_page", + IsDeleted = 0ul, + Name = "定时任务查询", + OpenType = 0, + Permission = "sysTimers:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "dc07cd9f-4a53-40d9-988e-70290a146eff", + Application = "system", + Code = "sys_timers_mgr_list", + IsDeleted = 0ul, + Name = "定时任务列表", + OpenType = 0, + Permission = "sysTimers:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1e562d31-c2f8-4af8-be4b-47e3b251d9a3", + Application = "system", + Code = "sys_timers_mgr_detail", + IsDeleted = 0ul, + Name = "定时任务详情", + OpenType = 0, + Permission = "sysTimers:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f27ba442-7d6f-499f-8053-a737adc3492a", + Application = "system", + Code = "sys_timers_mgr_add", + IsDeleted = 0ul, + Name = "定时任务增加", + OpenType = 0, + Permission = "sysTimers:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "99129601-0be5-43ee-842b-a428603f013b", + Application = "system", + Code = "sys_timers_mgr_delete", + IsDeleted = 0ul, + Name = "定时任务删除", + OpenType = 0, + Permission = "sysTimers:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5e118fc0-f580-4d06-a89d-f321a84e5654", + Application = "system", + Code = "sys_timers_mgr_edit", + IsDeleted = 0ul, + Name = "定时任务编辑", + OpenType = 0, + Permission = "sysTimers:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4272f2e4-4a8b-45bb-b688-2b9471c35e83", + Application = "system", + Code = "sys_timers_mgr_get_action_classes", + IsDeleted = 0ul, + Name = "定时任务可执行列表", + OpenType = 0, + Permission = "sysTimers:getActionClasses", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54094687-f661-4cba-bdfc-e76f22db8d76", + Application = "system", + Code = "sys_timers_mgr_start", + IsDeleted = 0ul, + Name = "定时任务启动", + OpenType = 0, + Permission = "sysTimers:start", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6b82d407-d1ea-440e-9245-128ad03dffc0", + Application = "system", + Code = "sys_timers_mgr_stop", + IsDeleted = 0ul, + Name = "定时任务关闭", + OpenType = 0, + Permission = "sysTimers:stop", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5172265d-eda3-4b8a-a542-d582467a51a1", + Application = "system_tool", + Code = "code_gen", + Component = "gen/codeGenerate/index", + Icon = "thunderbolt", + IsDeleted = 0ul, + Name = "代码生成", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/codeGenerate/index", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf51df0a-8e0b-4252-ba06-9646cad648d1", + Application = "system_tool", + Code = "form_design", + Component = "system/formDesign/index", + Icon = "robot", + IsDeleted = 0ul, + Name = "表单设计", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/formDesign/index", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f4cf2a3d-0714-4ca4-a691-0b363c172f82", + Application = "advanced", + Code = "sys_tenant", + Component = "PageView", + Icon = "switcher", + IsDeleted = 0ul, + Name = "SaaS租户", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/tenant", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Application = "advanced", + Code = "sys_tenant_mgr", + Component = "system/tenant/index", + IsDeleted = 0ul, + Name = "租户管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8985ec0a-5060-4812-bf47-4f3102948066", + Application = "advanced", + Code = "sys_tenant_mgr_page", + IsDeleted = 0ul, + Name = "租户查询", + OpenType = 0, + Permission = "sysTenant:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d9584afb-18de-4f7e-b992-c21ad77b1aae", + Application = "advanced", + Code = "sys_tenant_mgr_detail", + IsDeleted = 0ul, + Name = "租户详情", + OpenType = 0, + Permission = "sysTenant:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "01ae6b95-9c1e-4882-a9ac-ebb9f1868c54", + Application = "advanced", + Code = "sys_tenant_mgr_add", + IsDeleted = 0ul, + Name = "租户增加", + OpenType = 0, + Permission = "sysTenant:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "59e9f6da-151a-4201-bea1-00ef06fe5842", + Application = "advanced", + Code = "sys_tenant_mgr_delete", + IsDeleted = 0ul, + Name = "租户删除", + OpenType = 0, + Permission = "sysTenant:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "220b6a86-e65d-469b-8aa0-46c4f5e77ab8", + Application = "advanced", + Code = "sys_tenant_mgr_edit", + IsDeleted = 0ul, + Name = "租户编辑", + OpenType = 0, + Permission = "sysTenant:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysNotice", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Attachments") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("上传文件id集合"); + + b.Property("CancelTime") + .HasColumnType("datetime") + .HasComment("撤回时间"); + + b.Property("Content") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("内容"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("PublicOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicOrgId") + .HasComment("发布机构Id"); + + b.Property("PublicOrgName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("发布机构名称"); + + b.Property("PublicTime") + .HasColumnType("datetime") + .HasComment("发布时间"); + + b.Property("PublicUserId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicUserId") + .HasComment("发布人Id"); + + b.Property("PublicUserName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("发布人姓名"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("Title") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("标题"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_notice"); + + b + .HasComment("通知公告表"); + }); + + modelBuilder.Entity("Ewide.Core.SysNoticeUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NoticeId") + .HasColumnType("varchar(36)") + .HasColumnName("NoticeId") + .HasComment("通知公告Id"); + + b.Property("ReadStatus") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("ReadTime") + .HasColumnType("datetime") + .HasComment("阅读时间"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") + .HasComment("用户Id"); + + b.HasKey("Id"); + + b.ToTable("sys_notice_user"); + + b + .HasComment("通知公告用户表"); + }); + + modelBuilder.Entity("Ewide.Core.SysOauthUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AccessToken") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Token"); + + b.Property("Avatar") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("头像"); + + b.Property("Blog") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("用户网址"); + + b.Property("Company") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("所在公司"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("邮箱"); + + b.Property("Gender") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("性别"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("位置"); + + b.Property("NickName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("昵称"); + + b.Property("Phone") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Source") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("用户来源"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Uuid") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("UUID"); + + b.HasKey("Id"); + + b.ToTable("sys_oauth_user"); + + b + .HasComment("Oauth登录用户表"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AreaCode") + .HasColumnType("varchar(50) CHARACTER SET utf8mb4"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Contacts") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("联系人"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Pids"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("Tel") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("机构类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_org"); + + b + .HasComment("组织机构表"); + + b.HasData( + new + { + Id = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Code = "hxjt", + IsDeleted = 0ul, + Name = "华夏集团", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Remark = "华夏集团", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + Code = "hxjt_bj", + IsDeleted = 0ul, + Name = "华夏集团北京分公司", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", + Remark = "华夏集团北京分公司", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "127c0a5d-43ac-4370-b313-082361885aca", + Code = "hxjt_cd", + IsDeleted = 0ul, + Name = "华夏集团成都分公司", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", + Remark = "华夏集团成都分公司", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + Code = "hxjt_bj_yfb", + IsDeleted = 0ul, + Name = "研发部", + 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, + Type = 0 + }, + new + { + Id = "07322be0-2015-41f2-859e-132b5e142fca", + Code = "hxjt_bj_qhb", + IsDeleted = 0ul, + Name = "企划部", + 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, + Type = 0 + }, + new + { + Id = "49dc3f25-873d-4998-9767-46978d79d8e6", + Code = "hxjt_cd_scb", + IsDeleted = 0ul, + Name = "市场部", + 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, + Type = 0 + }, + new + { + Id = "56b7a823-cc62-492b-a91b-0b053ef2683b", + Code = "hxjt_cd_cwb", + IsDeleted = 0ul, + Name = "财务部", + 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, + Type = 0 + }, + new + { + Id = "e9f97d63-a585-40ff-bf0c-7406e785f660", + Code = "hxjt_cd_scb_2b", + IsDeleted = 0ul, + Name = "市场部二部", + 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, + Type = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysPos", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_pos"); + + b + .HasComment("职位表"); + + b.HasData( + new + { + Id = "269236c4-d74e-4e54-9d50-f6f61580a197", + Code = "zjl", + IsDeleted = 0ul, + Name = "总经理", + Remark = "总经理", + Sort = 100, + Status = 0 + }, + new + { + Id = "46c68a62-f119-4ff7-b621-0bbd77504538", + Code = "fzjl", + IsDeleted = 0ul, + Name = "副总经理", + Remark = "副总经理", + Sort = 101, + Status = 0 + }, + new + { + Id = "5bd8c466-2bca-4386-a551-daac78e3cee8", + Code = "bmjl", + IsDeleted = 0ul, + Name = "部门经理", + Remark = "部门经理", + Sort = 102, + Status = 0 + }, + new + { + Id = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66", + Code = "gzry", + IsDeleted = 0ul, + Name = "工作人员", + Remark = "工作人员", + Sort = 103, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysRole", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("DataScopeType") + .HasColumnType("int") + .HasComment("数据范围类型"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_role"); + + b + .HasComment("角色表"); + + b.HasData( + new + { + Id = "6dfe9189-ce10-434e-a7a7-5cdc46e85047", + Code = "sys_manager_role", + DataScopeType = 1, + IsDeleted = 0ul, + Name = "系统管理员", + Remark = "系统管理员", + Sort = 100, + Status = 0 + }, + new + { + Id = "cd187ebd-ab3d-4768-9669-85e2219c2910", + Code = "common_role", + DataScopeType = 5, + IsDeleted = 0ul, + Name = "普通用户", + Remark = "普通用户", + Sort = 101, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleArea", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasComment("角色Id"); + + b.Property("AreaCode") + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域代码"); + + b.HasKey("SysRoleId", "AreaCode"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_role_area"); + + b + .HasComment("角色区域自定义数据"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.HasKey("SysRoleId", "SysOrgId"); + + b.HasIndex("SysOrgId"); + + b.ToTable("sys_role_data_scope"); + + b + .HasComment("角色数据范围表"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.Property("SysMenuId") + .HasColumnType("varchar(36)") + .HasColumnName("SysMenuId") + .HasComment("菜单Id"); + + b.HasKey("SysRoleId", "SysMenuId"); + + b.HasIndex("SysMenuId"); + + b.ToTable("sys_role_menu"); + + b + .HasComment("角色菜单表"); + }); + + modelBuilder.Entity("Ewide.Core.SysTenant", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Connection") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库连接"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电子邮箱"); + + b.Property("Host") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("主机"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Phone") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Schema") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("架构"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_tenant"); + + b + .HasComment("租户表"); + + b.HasData( + new + { + Id = "506a14b7-882d-4548-96fa-a55dbe79bfa1", + Connection = "Data Source=./Ewide.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Email = "zuohuaijun@163.com", + Host = "localhost:5566", + IsDeleted = 0ul, + Name = "默认租户", + Phone = "18020030720" + }, + new + { + Id = "eed8c4a6-70d8-49fd-9566-21a6966bb702", + Connection = "Data Source=./Dilon_1.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Host = "localhost:5588", + IsDeleted = 0ul, + Name = "其他租户" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysTimer", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("BeginTime") + .HasColumnType("datetime") + .HasComment("开始时间"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Cron") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Cron表达式"); + + b.Property("DoOnce") + .HasColumnType("tinyint(1)") + .HasComment("只执行一次"); + + b.Property("EndTime") + .HasColumnType("datetime") + .HasComment("结束时间"); + + b.Property("ExecuteType") + .HasColumnType("int") + .HasComment("执行类型"); + + b.Property("Headers") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Headers"); + + b.Property("Interval") + .HasColumnType("int") + .HasComment("执行间隔时间"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("JobName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("任务名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("RequestParameters") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求参数"); + + b.Property("RequestType") + .HasColumnType("int") + .HasComment("请求类型"); + + b.Property("RequestUrl") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求url"); + + b.Property("RunNumber") + .HasColumnType("int") + .HasComment("执行次数"); + + b.Property("StartNow") + .HasColumnType("tinyint(1)") + .HasComment("立即执行"); + + b.Property("TimerType") + .HasColumnType("int") + .HasComment("定时器类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_timer"); + + b + .HasComment("定时任务表"); + + b.HasData( + new + { + Id = "971bc338-0c03-46d4-8113-c7738d54ea18", + BeginTime = new DateTime(2021, 3, 21, 0, 0, 0, 0, DateTimeKind.Local), + DoOnce = false, + ExecuteType = 0, + Interval = 30, + IsDeleted = 0ul, + JobName = "百度api", + RequestType = 2, + RequestUrl = "https://www.baidu.com", + StartNow = false, + TimerType = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Account") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("账号"); + + b.Property("AdminType") + .HasColumnType("int") + .HasComment("管理员类型-超级管理员_1、非管理员_2"); + + b.Property("Avatar") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("头像"); + + b.Property("Birthday") + .HasColumnType("datetime") + .HasComment("生日"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("邮箱"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("LastLoginIp") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("最后登录IP"); + + b.Property("LastLoginTime") + .HasColumnType("datetime") + .HasComment("最后登录时间"); + + b.Property("Name") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("姓名"); + + b.Property("NickName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("昵称"); + + b.Property("Password") + .IsRequired() + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("密码"); + + b.Property("Phone") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("手机"); + + b.Property("SecurityLevel") + .HasColumnType("int") + .HasComment("密码安全级别"); + + b.Property("Sex") + .HasColumnType("int") + .HasComment("性别-男_1、女_2"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态-正常_0、停用_1、删除_2"); + + b.Property("Tel") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_user"); + + b + .HasComment("用户表"); + + b.HasData( + new + { + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + Account = "superAdmin", + AdminType = 1, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "superAdmin", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 1, + Status = 0 + }, + new + { + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + Account = "admin", + AdminType = 1, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "admin", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 2, + Status = 0 + }, + new + { + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", + Account = "zuohuaijun", + AdminType = 2, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "zuohuaijun", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 1, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysUserArea", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("AreaCode") + .HasMaxLength(10) + .HasColumnType("varchar(10) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域代码"); + + b.HasKey("SysUserId", "AreaCode"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_user_area"); + + b + .HasComment("用户授权区域信息"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.HasKey("SysUserId", "SysOrgId"); + + b.HasIndex("SysOrgId"); + + b.ToTable("sys_user_data_scope"); + + b + .HasComment("用户数据范围表"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserRole", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.HasKey("SysUserId", "SysRoleId"); + + b.HasIndex("SysRoleId"); + + b.ToTable("sys_user_role"); + + b + .HasComment("用户角色表"); + }); + + modelBuilder.Entity("Vote.Services.Entities.Experts", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("login_code") + .HasMaxLength(36) + .HasColumnType("varchar(36) CHARACTER SET utf8mb4") + .HasComment("登录码"); + + b.HasKey("Id"); + + b.ToTable("Experts"); + + b.HasData( + new + { + Id = "f6afc724-1b88-4a70-8714-d047c20928a4", + IsDeleted = 0ul, + login_code = "XQLGQ8" + }, + new + { + Id = "86c1a965-3229-46d6-a034-de4a06655d55", + IsDeleted = 0ul, + login_code = "CWYB3P" + }, + new + { + Id = "1b4f9504-f486-4f8f-9588-24357b9ad0e0", + IsDeleted = 0ul, + login_code = "C6FSMT" + }, + new + { + Id = "c5401037-33b6-433f-9dd2-054dfb93a09e", + IsDeleted = 0ul, + login_code = "TYVWMZ" + }, + new + { + Id = "36a50b18-b513-4f89-9dab-a0a10031ec48", + IsDeleted = 0ul, + login_code = "JL022B" + }, + new + { + Id = "08c8ad90-b44f-4270-890c-8447f086d579", + IsDeleted = 0ul, + login_code = "8YCDD9" + }, + new + { + Id = "0eae9b66-e00d-42cf-b41f-d6b7ebdff800", + IsDeleted = 0ul, + login_code = "XV8U1U" + }, + new + { + Id = "3d135a79-97bf-4f10-bba5-7bed90e911a3", + IsDeleted = 0ul, + login_code = "5MJQY7" + }, + new + { + Id = "d3674cdd-142f-4549-9766-4d2d3991cd76", + IsDeleted = 0ul, + login_code = "DH1HCC" + }, + new + { + Id = "355563e6-615d-443a-bec6-d6247f4dbaf7", + IsDeleted = 0ul, + login_code = "K8H9PW" + }, + new + { + Id = "e7f6f049-6bff-4479-b7fb-845c4db9bd01", + IsDeleted = 0ul, + login_code = "HCY26V" + }, + new + { + Id = "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0", + IsDeleted = 0ul, + login_code = "SMBG3Q" + }, + new + { + Id = "9a21e83c-06ae-44bc-9b9b-cecd92a0d606", + IsDeleted = 0ul, + login_code = "97GFZQ" + }, + new + { + Id = "8db1378a-2deb-4d13-b49f-9490dd1ffd1d", + IsDeleted = 0ul, + login_code = "2154MF" + }, + new + { + Id = "90234cce-2f80-40cd-922e-d9d5ccd4a3c2", + IsDeleted = 0ul, + login_code = "A4P3RZ" + }, + new + { + Id = "439260c8-54de-48c3-977d-fe2c11ae7fe6", + IsDeleted = 0ul, + login_code = "ZFD5VL" + }, + new + { + Id = "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d", + IsDeleted = 0ul, + login_code = "FNNUA9" + }, + new + { + Id = "63e8a280-90c4-4c9b-9572-74f9d4278cd4", + IsDeleted = 0ul, + login_code = "WHM9CF" + }, + new + { + Id = "510e42da-856e-4d93-a099-d7e998dfbd7a", + IsDeleted = 0ul, + login_code = "3GZDEW" + }, + new + { + Id = "eb83bc26-e942-4b98-8adc-02688bf1a32d", + IsDeleted = 0ul, + login_code = "KZS4WS" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysDictData", b => + { + b.HasOne("Ewide.Core.SysDictType", "SysDictType") + .WithMany("SysDictDatas") + .HasForeignKey("TypeId"); + + b.Navigation("SysDictType"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => + { + b.HasOne("Ewide.Core.SysEmp", "SysEmp") + .WithMany() + .HasForeignKey("SysEmpId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany() + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysPos", "SysPos") + .WithMany() + .HasForeignKey("SysPosId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysEmp"); + + b.Navigation("SysOrg"); + + b.Navigation("SysPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpPos", b => + { + b.HasOne("Ewide.Core.SysEmp", "SysEmp") + .WithMany("SysEmpPos") + .HasForeignKey("SysEmpId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysPos", "SysPos") + .WithMany("SysEmpPos") + .HasForeignKey("SysPosId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysEmp"); + + b.Navigation("SysPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysOrgs") + .HasForeignKey("AreaCode"); + + b.Navigation("Area"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleArea", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysRoleAreas") + .HasForeignKey("AreaCode") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleAreas") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Area"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => + { + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany("SysRoleDataScopes") + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleDataScopes") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysOrg"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => + { + b.HasOne("Ewide.Core.SysMenu", "SysMenu") + .WithMany("SysRoleMenus") + .HasForeignKey("SysMenuId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleMenus") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysMenu"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserArea", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysUserAreas") + .HasForeignKey("AreaCode") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserAreas") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Area"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => + { + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany("SysUserDataScopes") + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserDataScopes") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysOrg"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserRole", b => + { + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysUserRoles") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserRoles") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysRole"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysAreaCode", b => + { + b.Navigation("SysOrgs"); + + b.Navigation("SysRoleAreas"); + + b.Navigation("SysUserAreas"); + }); + + modelBuilder.Entity("Ewide.Core.SysDictType", b => + { + b.Navigation("SysDictDatas"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmp", b => + { + b.Navigation("SysEmpPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysMenu", b => + { + b.Navigation("SysRoleMenus"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.Navigation("SysRoleDataScopes"); + + b.Navigation("SysUserDataScopes"); + }); + + modelBuilder.Entity("Ewide.Core.SysPos", b => + { + b.Navigation("SysEmpPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysRole", b => + { + b.Navigation("SysRoleAreas"); + + b.Navigation("SysRoleDataScopes"); + + b.Navigation("SysRoleMenus"); + + b.Navigation("SysUserRoles"); + }); + + modelBuilder.Entity("Ewide.Core.SysUser", b => + { + b.Navigation("SysUserAreas"); + + b.Navigation("SysUserDataScopes"); + + b.Navigation("SysUserRoles"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330103714_v1.0.1.cs b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330103714_v1.0.1.cs new file mode 100644 index 0000000..318167e --- /dev/null +++ b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330103714_v1.0.1.cs @@ -0,0 +1,63 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Ewide.Database.Migrations.Migrations +{ + public partial class v101 : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "Experts", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + login_code = table.Column(type: "varchar(36) CHARACTER SET utf8mb4", maxLength: 36, nullable: true, comment: "登录码"), + CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime", 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_Experts", x => x.Id); + }); + + migrationBuilder.InsertData( + table: "Experts", + columns: new[] { "Id", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "login_code" }, + values: new object[,] + { + { "f6afc724-1b88-4a70-8714-d047c20928a4", null, null, null, 0ul, null, null, null, "XQLGQ8" }, + { "63e8a280-90c4-4c9b-9572-74f9d4278cd4", null, null, null, 0ul, null, null, null, "WHM9CF" }, + { "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d", null, null, null, 0ul, null, null, null, "FNNUA9" }, + { "439260c8-54de-48c3-977d-fe2c11ae7fe6", null, null, null, 0ul, null, null, null, "ZFD5VL" }, + { "90234cce-2f80-40cd-922e-d9d5ccd4a3c2", null, null, null, 0ul, null, null, null, "A4P3RZ" }, + { "8db1378a-2deb-4d13-b49f-9490dd1ffd1d", null, null, null, 0ul, null, null, null, "2154MF" }, + { "9a21e83c-06ae-44bc-9b9b-cecd92a0d606", null, null, null, 0ul, null, null, null, "97GFZQ" }, + { "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0", null, null, null, 0ul, null, null, null, "SMBG3Q" }, + { "e7f6f049-6bff-4479-b7fb-845c4db9bd01", null, null, null, 0ul, null, null, null, "HCY26V" }, + { "355563e6-615d-443a-bec6-d6247f4dbaf7", null, null, null, 0ul, null, null, null, "K8H9PW" }, + { "d3674cdd-142f-4549-9766-4d2d3991cd76", null, null, null, 0ul, null, null, null, "DH1HCC" }, + { "3d135a79-97bf-4f10-bba5-7bed90e911a3", null, null, null, 0ul, null, null, null, "5MJQY7" }, + { "0eae9b66-e00d-42cf-b41f-d6b7ebdff800", null, null, null, 0ul, null, null, null, "XV8U1U" }, + { "08c8ad90-b44f-4270-890c-8447f086d579", null, null, null, 0ul, null, null, null, "8YCDD9" }, + { "36a50b18-b513-4f89-9dab-a0a10031ec48", null, null, null, 0ul, null, null, null, "JL022B" }, + { "c5401037-33b6-433f-9dd2-054dfb93a09e", null, null, null, 0ul, null, null, null, "TYVWMZ" }, + { "1b4f9504-f486-4f8f-9588-24357b9ad0e0", null, null, null, 0ul, null, null, null, "C6FSMT" }, + { "86c1a965-3229-46d6-a034-de4a06655d55", null, null, null, 0ul, null, null, null, "CWYB3P" }, + { "510e42da-856e-4d93-a099-d7e998dfbd7a", null, null, null, 0ul, null, null, null, "3GZDEW" }, + { "eb83bc26-e942-4b98-8adc-02688bf1a32d", null, null, null, 0ul, null, null, null, "KZS4WS" } + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "Experts"); + } + } +} diff --git a/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330105408_v1.0.2.Designer.cs b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330105408_v1.0.2.Designer.cs new file mode 100644 index 0000000..decd6d4 --- /dev/null +++ b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330105408_v1.0.2.Designer.cs @@ -0,0 +1,8090 @@ +// +using System; +using Ewide.EntityFramework.Core; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +namespace Ewide.Database.Migrations.Migrations +{ + [DbContext(typeof(DefaultDbContext))] + [Migration("20220330105408_v1.0.2")] + partial class v102 + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("Relational:MaxIdentifierLength", 64) + .HasAnnotation("ProductVersion", "5.0.15"); + + modelBuilder.Entity("Ewide.Core.SysApp", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Active") + .HasColumnType("bit") + .HasColumnName("Active") + .HasComment("是否默认激活"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Color") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标颜色"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Icon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_app"); + + b + .HasComment("系统应用表"); + + b.HasData( + new + { + Id = "8b2aeb5e-09a6-4afd-bcae-8ee8e5a1e6ec", + Active = 0ul, + Code = "busapp", + IsDeleted = 0ul, + Name = "业务应用", + Sort = 100, + Status = 0 + }, + new + { + Id = "d781b8f1-0d08-48c8-b7a5-ed75ddfa676c", + Active = 1ul, + Code = "system", + IsDeleted = 0ul, + Name = "系统管理", + Sort = 100, + Status = 0 + }, + new + { + Id = "850ab86f-cd6a-4d49-b920-77dfa5d78813", + Active = 0ul, + Code = "system_tool", + IsDeleted = 0ul, + Name = "系统工具", + Sort = 100, + Status = 0 + }, + new + { + Id = "05a32be5-82e8-423f-affa-e17232a63ee1", + Active = 0ul, + Code = "advanced", + IsDeleted = 0ul, + Name = "高级功能", + Sort = 100, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysAreaCode", b => + { + b.Property("Code") + .HasMaxLength(50) + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域编码"); + + b.Property("AdCode") + .HasMaxLength(50) + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("区域的行政编码"); + + b.Property("LevelType") + .HasColumnType("int") + .HasComment("类别"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("varchar(100) CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Note") + .HasMaxLength(1000) + .HasColumnType("varchar(1000) CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.HasKey("Code"); + + b.ToTable("sys_area_code"); + + b + .HasComment("区域表"); + + b.HasData( + new + { + Code = "3302", + AdCode = "3302", + LevelType = 1, + Name = "XX市", + Note = "XX市", + Sort = 0 + }, + new + { + Code = "330266", + AdCode = "330266", + LevelType = 2, + Name = "测试区", + Note = "测试区", + Sort = 100 + }, + new + { + Code = "330266001", + AdCode = "330266001", + LevelType = 3, + Name = "测试街道", + Note = "测试街道", + Sort = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysCodeGen", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AuthorName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("作者姓名"); + + b.Property("BusName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("业务名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("GenerateType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("生成方式"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NameSpace") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("命名空间"); + + b.Property("TableName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库表名"); + + b.Property("TablePrefix") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否移除表前缀"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_code_gen"); + + b + .HasComment("代码生成表"); + }); + + modelBuilder.Entity("Ewide.Core.SysCodeGenConfig", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CodeGenId") + .HasColumnType("varchar(36)") + .HasColumnName("CodeGenId") + .HasComment("代码生成主表ID"); + + b.Property("ColumnComment") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("字段描述"); + + b.Property("ColumnKey") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("主外键"); + + b.Property("ColumnName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库字段名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("DataType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库中类型"); + + b.Property("DictTypeCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("字典Code"); + + b.Property("EffectType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("作用类型"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NetType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment(".NET数据类型"); + + b.Property("QueryType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("查询方式"); + + b.Property("QueryWhether") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否是查询条件"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("WhetherAddUpdate") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("增改"); + + b.Property("WhetherCommon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否通用字段"); + + b.Property("WhetherRequired") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否必填"); + + b.Property("WhetherRetract") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列表是否缩进"); + + b.Property("WhetherTable") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列表显示"); + + b.HasKey("Id"); + + b.ToTable("sys_code_gen_config"); + + b + .HasComment("代码生成字段配置表"); + }); + + modelBuilder.Entity("Ewide.Core.SysConfig", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("GroupCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("常量所属分类的编码"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("SysFlag") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否是系统参数"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Value") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("属性值"); + + b.HasKey("Id"); + + b.ToTable("sys_config"); + + b + .HasComment("参数配置表"); + + b.HasData( + new + { + Id = "7c2765cd-d39b-4772-8d6c-0dbcdcfa1ff8", + Code = "DILON_JWT_SECRET", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "jwt密钥", + Remark = "(重要)jwt密钥,默认为空,自行设置", + Status = 0, + SysFlag = "Y", + Value = "xiaonuo" + }, + new + { + Id = "e3553657-14cf-4c26-ba7b-dbb4bfd4bc55", + Code = "DILON_DEFAULT_PASSWORD", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "默认密码", + Remark = "默认密码", + Status = 0, + SysFlag = "Y", + Value = "123456" + }, + new + { + Id = "2c677cd2-2a54-46c6-971d-f9fe20f101f3", + Code = "DILON_TOKEN_EXPIRE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "token过期时间", + Remark = "token过期时间(单位:秒)", + Status = 0, + SysFlag = "Y", + Value = "86400" + }, + new + { + Id = "8938506d-2e00-44e0-8592-48453d43f9f5", + Code = "DILON_SESSION_EXPIRE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "session会话过期时间", + Remark = "session会话过期时间(单位:秒)", + Status = 0, + SysFlag = "Y", + Value = "7200" + }, + new + { + Id = "beb2e9e7-f4d9-43b1-bfab-3557ea232f8d", + Code = "DILON_ALIYUN_SMS_ACCESSKEY_ID", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信keyId", + Remark = "阿里云短信keyId", + Status = 0, + SysFlag = "Y", + Value = "你的keyId" + }, + new + { + Id = "ead14cd0-9fd4-4fd6-b75c-239d8b2ebed8", + Code = "DILON_ALIYUN_SMS_ACCESSKEY_SECRET", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信secret", + Remark = "阿里云短信secret", + Status = 0, + SysFlag = "Y", + Value = "你的secret" + }, + new + { + Id = "beaaafc2-3fdf-42af-9b06-ead3a6dd6306", + Code = "DILON_ALIYUN_SMS_SIGN_NAME", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信签名", + Remark = "阿里云短信签名", + Status = 0, + SysFlag = "Y", + Value = "你的签名" + }, + new + { + Id = "e26a10cf-911a-4fe0-a113-76965be749a0", + Code = "DILON_ALIYUN_SMS_LOGIN_TEMPLATE_CODE", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信-登录模板号", + Remark = "阿里云短信-登录模板号", + Status = 0, + SysFlag = "Y", + Value = "SMS_1877123456" + }, + new + { + Id = "24d3f286-efca-49af-91b4-e3ce42cce36e", + Code = "DILON_ALIYUN_SMS_INVALIDATE_MINUTES", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信默认失效时间", + Remark = "阿里云短信默认失效时间(单位:分钟)", + Status = 0, + SysFlag = "Y", + Value = "5" + }, + new + { + Id = "c6540a07-ce32-47b4-ab83-b647bdb14491", + Code = "DILON_TENCENT_SMS_SECRET_ID", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信secretId", + Remark = "腾讯云短信secretId", + Status = 0, + SysFlag = "Y", + Value = "你的secretId" + }, + new + { + Id = "a0412212-d50b-42aa-9484-3cef8fe3cc59", + Code = "DILON_TENCENT_SMS_SECRET_KEY", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信secretKey", + Remark = "腾讯云短信secretKey", + Status = 0, + SysFlag = "Y", + Value = "你的secretkey" + }, + new + { + Id = "c928ca11-5137-4b71-bf1c-f3bc95bcd34d", + Code = "DILON_TENCENT_SMS_SDK_APP_ID", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信sdkAppId", + Remark = "腾讯云短信sdkAppId", + Status = 0, + SysFlag = "Y", + Value = "1400375123" + }, + new + { + Id = "16ce1b6e-c8ad-4299-9293-6caff0e5cb49", + Code = "DILON_TENCENT_SMS_SIGN", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信签名", + Remark = "腾讯云短信签名", + Status = 0, + SysFlag = "Y", + Value = "你的签名" + }, + new + { + Id = "66e63d64-b7eb-4e6a-b5b6-c87811c2e700", + Code = "DILON_EMAIL_HOST", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱host", + Remark = "邮箱host", + Status = 0, + SysFlag = "Y", + Value = "smtp.126.com" + }, + new + { + Id = "997a9bc6-22ed-4fe6-a20c-c3c2a0b682a0", + Code = "DILON_EMAIL_USERNAME", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱用户名", + Remark = "邮箱用户名", + Status = 0, + SysFlag = "Y", + Value = "test@126.com" + }, + new + { + Id = "633d1851-41d9-4ebd-b83b-3aa4501cd1a7", + Code = "DILON_EMAIL_PASSWORD", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱密码", + Remark = "邮箱密码", + Status = 0, + SysFlag = "Y", + Value = "你的邮箱密码" + }, + new + { + Id = "67e468f7-e791-4e91-a896-62e9f7411635", + Code = "DILON_EMAIL_PORT", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱端口", + Remark = "邮箱端口", + Status = 0, + SysFlag = "Y", + Value = "465" + }, + new + { + Id = "dc462c05-de23-4f90-bcdc-88de4abcdf22", + Code = "DILON_EMAIL_SSL", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱是否开启ssl", + Remark = "邮箱是否开启ssl", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "8beac2a0-4c67-4499-a7ce-27e989546ce9", + Code = "DILON_EMAIL_FROM", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱发件人", + Remark = "邮箱发件人", + Status = 0, + SysFlag = "Y", + Value = "test@126.com" + }, + new + { + Id = "55756524-ecb8-444e-9cdd-a0fc767c4b96", + Code = "DILON_FILE_UPLOAD_PATH_FOR_WINDOWS", + GroupCode = "FILE_PATH", + IsDeleted = 0ul, + Name = "Win本地上传文件路径", + Remark = "Win本地上传文件路径", + Status = 0, + SysFlag = "Y", + Value = "D:/tmp" + }, + new + { + Id = "d2db41ee-ce1f-46de-ac00-5860634afed9", + Code = "DILON_FILE_UPLOAD_PATH_FOR_LINUX", + GroupCode = "FILE_PATH", + IsDeleted = 0ul, + Name = "Linux/Mac本地上传文件路径", + Remark = "Linux/Mac本地上传文件路径", + Status = 0, + SysFlag = "Y", + Value = "/tmp" + }, + new + { + Id = "ff8debdd-eca0-4f91-8213-e2080f76b35d", + Code = "DILON_UN_XSS_FILTER_URL", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "放开XSS过滤的接口", + Remark = "多个url可以用英文逗号隔开", + Status = 0, + SysFlag = "Y", + Value = "/demo/xssfilter,/demo/unxss" + }, + new + { + Id = "5584fb84-f580-463f-b06d-bbb80a4dfb72", + Code = "DILON_ENABLE_SINGLE_LOGIN", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "单用户登陆的开关", + Remark = "true-打开,false-关闭,如果一个人登录两次,就会将上一次登陆挤下去", + Status = 0, + SysFlag = "Y", + Value = "false" + }, + new + { + Id = "53b0afb2-4917-4b85-bcca-fe7c7723ae22", + Code = "DILON_CAPTCHA_OPEN", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "登录验证码的开关", + Remark = "true-打开,false-关闭", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "974740d8-8647-4cf8-8102-542eea53e97f", + Code = "DILON_DRUID_USERNAME", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "Druid监控登录账号", + Remark = "Druid监控登录账号", + Status = 0, + SysFlag = "Y", + Value = "superAdmin" + }, + new + { + Id = "8cee44ea-ba4c-42db-a57d-69b8b5316ca5", + Code = "DILON_DRUID_PASSWORD", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "Druid监控界面登录密码", + Remark = "Druid监控界面登录密码", + Status = 0, + SysFlag = "Y", + Value = "123456" + }, + new + { + Id = "efc235ab-9b05-4820-afe4-32a1eb59e4de", + Code = "DILON_IP_GEO_API", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "阿里云定位api接口地址", + Remark = "阿里云定位api接口地址", + Status = 0, + SysFlag = "Y", + Value = "http://api01.aliyun.venuscn.com/ip?ip=%s" + }, + new + { + Id = "d3597d8a-562a-4b24-93c7-8655c5445d74", + Code = "DILON_IP_GEO_APP_CODE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "阿里云定位appCode", + Remark = "阿里云定位appCode", + Status = 0, + SysFlag = "Y", + Value = "461535aabeae4f34861884d392f5d452" + }, + new + { + Id = "59c8a6f2-9e3c-4e9e-b9cf-8ecad5f0cb45", + Code = "DILON_ENABLE_OAUTH_LOGIN", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth用户登录的开关", + Remark = "Oauth用户登录的开关", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "ff502ee7-8129-4828-8d16-fb04562ef52c", + Code = "DILON_OAUTH_GITEE_CLIENT_ID", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录ClientId", + Remark = "Oauth码云登录ClientId", + Status = 0, + SysFlag = "Y", + Value = "你的clientId" + }, + new + { + Id = "a1d957ef-2b70-456f-8eda-b70a4cf01535", + Code = "DILON_OAUTH_GITEE_CLIENT_SECRET", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录ClientSecret", + Remark = "Oauth码云登录ClientSecret", + Status = 0, + SysFlag = "Y", + Value = "你的clientSecret" + }, + new + { + Id = "b32ee22b-671d-40bf-8070-32e1054fef96", + Code = "DILON_OAUTH_GITEE_REDIRECT_URI", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录回调地址", + Remark = "Oauth码云登录回调地址", + Status = 0, + SysFlag = "Y", + Value = "http://127.0.0.1:5566/oauth/callback/gitee" + }, + new + { + Id = "38dda85c-2a98-4768-aebd-a60ab286052c", + Code = "DILON_DEMO_ENV_FLAG", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "演示环境", + Remark = "演示环境的开关,true-打开,false-关闭,如果演示环境开启,则只能读数据不能写数据", + Status = 0, + SysFlag = "Y", + Value = "false" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysDictData", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("ExtCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("扩展编码,以json形式存储"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("TypeId") + .HasColumnType("varchar(36)") + .HasColumnName("TypeId") + .HasComment("字典类型Id"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Value") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("值"); + + b.HasKey("Id"); + + b.HasIndex("TypeId"); + + b.ToTable("sys_dict_data"); + + b + .HasComment("字典值表"); + + b.HasData( + new + { + Id = "99b965d3-1f2b-4f5b-a62a-6763b8d64a64", + Code = "1", + IsDeleted = 0ul, + Remark = "通知", + Sort = 100, + Status = 0, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Value = "通知" + }, + new + { + Id = "2616e6c2-a504-4fc6-993e-72701b48e79a", + Code = "2", + IsDeleted = 0ul, + Remark = "公告", + Sort = 100, + Status = 0, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Value = "公告" + }, + new + { + Id = "40d336cd-918a-4e90-8836-cba7c1bf6cdf", + Code = "0", + IsDeleted = 0ul, + Remark = "草稿", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "草稿" + }, + new + { + Id = "f5b49fa9-31a1-44c2-9df0-b28bf5daeee0", + Code = "1", + IsDeleted = 0ul, + Remark = "发布", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "发布" + }, + new + { + Id = "d2f73bb4-05a1-4aa5-9273-e9f3c393996d", + Code = "2", + IsDeleted = 0ul, + Remark = "撤回", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "撤回" + }, + new + { + Id = "6385916f-6ead-470e-889b-cfb9d2da6256", + Code = "3", + IsDeleted = 0ul, + Remark = "删除", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "删除" + }, + new + { + Id = "1f432e9d-f031-4787-a527-f37bb20ebe3a", + Code = "true", + IsDeleted = 0ul, + Remark = "是", + Sort = 100, + Status = 0, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Value = "是" + }, + new + { + Id = "0724636d-e870-46c6-8e1e-67f1ea5f58e5", + Code = "false", + IsDeleted = 0ul, + Remark = "否", + Sort = 100, + Status = 0, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Value = "否" + }, + new + { + Id = "881ebcf2-94a6-4938-81a4-55b81736f3b3", + Code = "1", + IsDeleted = 0ul, + Remark = "下载压缩包", + Sort = 100, + Status = 0, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Value = "下载压缩包" + }, + new + { + Id = "5bc8662d-b795-48f1-a88e-2f4be5279d37", + Code = "2", + IsDeleted = 0ul, + Remark = "生成到本项目", + Sort = 100, + Status = 0, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Value = "生成到本项目" + }, + new + { + Id = "b2a00b40-23e1-40e1-8995-60ab420eafe1", + Code = "1", + IsDeleted = 0ul, + Remark = "GET", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "GET" + }, + new + { + Id = "10070836-0c89-4b89-96e3-c65c7e33a86c", + Code = "2", + IsDeleted = 0ul, + Remark = "POST", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "POST" + }, + new + { + Id = "69a34c0b-85ce-4e53-9ad4-a592057dddd4", + Code = "3", + IsDeleted = 0ul, + Remark = "PUT", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "PUT" + }, + new + { + Id = "0e4dc1f1-8654-401b-800a-22b31f62ced1", + Code = "4", + IsDeleted = 0ul, + Remark = "DELETE", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "DELETE" + }, + new + { + Id = "443f965e-96b4-4fd2-93e9-07fe00a47205", + Code = "input", + IsDeleted = 0ul, + Remark = "输入框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "输入框" + }, + new + { + Id = "bf7be9a2-53fb-4250-87fe-49d7f741d159", + Code = "datepicker", + IsDeleted = 0ul, + Remark = "时间选择", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "时间选择" + }, + new + { + Id = "cea10919-47e2-43ab-a19b-9d41fe648310", + Code = "select", + IsDeleted = 0ul, + Remark = "下拉框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "下拉框" + }, + new + { + Id = "7d534f44-cf66-472e-b0d3-20a4cc2ad432", + Code = "radio", + IsDeleted = 0ul, + Remark = "单选框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "单选框" + }, + new + { + Id = "d63b06d4-be11-4ab7-9905-87f6f2ca056f", + Code = "switch", + IsDeleted = 0ul, + Remark = "开关", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "开关" + }, + new + { + Id = "46967f62-bac9-47fd-9278-b29c047b0c38", + Code = "checkbox", + IsDeleted = 0ul, + Remark = "多选框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "多选框" + }, + new + { + Id = "a8ac5009-93d3-4405-a6b9-81ed3e2811f2", + Code = "inputnumber", + IsDeleted = 0ul, + Remark = "数字输入框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "数字输入框" + }, + new + { + Id = "d00b3efa-2f9d-464c-8134-aa7013ef52bb", + Code = "textarea", + IsDeleted = 0ul, + Remark = "文本域", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "文本域" + }, + new + { + Id = "ad759239-e34e-4fdf-a0d0-6b39eb41f880", + Code = "==", + IsDeleted = 0ul, + Remark = "等于", + Sort = 1, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "等于" + }, + new + { + Id = "2c8e1240-f3ef-4df1-bd68-3047109ad5b4", + Code = "like", + IsDeleted = 0ul, + Remark = "模糊", + Sort = 2, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "模糊" + }, + new + { + Id = "efc18513-c17b-4fc1-8e0e-2e79fb9b0107", + Code = ">", + IsDeleted = 0ul, + Remark = "大于", + Sort = 3, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "大于" + }, + new + { + Id = "a6812d98-7785-4db2-b2f8-d476a459c5ed", + Code = "<", + IsDeleted = 0ul, + Remark = "小于", + Sort = 4, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "小于" + }, + new + { + Id = "218b5bac-343e-4594-a9da-30e391c7735c", + Code = "!=", + IsDeleted = 0ul, + Remark = "不等于", + Sort = 5, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "不等于" + }, + new + { + Id = "4825f15d-077b-4c16-8ee7-0205d653e14d", + Code = ">=", + IsDeleted = 0ul, + Remark = "大于等于", + Sort = 6, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "大于等于" + }, + new + { + Id = "7c9e8270-db5a-45b7-acd7-f95c8ee31547", + Code = "<=", + IsDeleted = 0ul, + Remark = "小于等于", + Sort = 7, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "小于等于" + }, + new + { + Id = "759ea7de-a18f-4ed7-9032-bbd1a4dadc9e", + Code = "isNotNull", + IsDeleted = 0ul, + Remark = "不为空", + Sort = 8, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "不为空" + }, + new + { + Id = "a5cdf75e-6361-490d-a043-f5929ccf65a9", + Code = "int", + IsDeleted = 0ul, + Remark = "int", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "int" + }, + new + { + Id = "cffdd4b5-d4e0-4196-81b9-02045de8b189", + Code = "long", + IsDeleted = 0ul, + Remark = "long", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "long" + }, + new + { + Id = "25be90ea-b439-4e9d-993c-48a5ce3b9358", + Code = "string", + IsDeleted = 0ul, + Remark = "string", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "string" + }, + new + { + Id = "496eef62-3849-4263-b274-a3e6090942e3", + Code = "bool", + IsDeleted = 0ul, + Remark = "bool", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "bool" + }, + new + { + Id = "681c02ea-7570-4a97-85a7-957a77314df6", + Code = "double", + IsDeleted = 0ul, + Remark = "double", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "double" + }, + new + { + Id = "259698cf-b25d-427a-8d22-33b9c1899eea", + Code = "DateTime", + IsDeleted = 0ul, + Remark = "DateTime", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "DateTime" + }, + new + { + Id = "a30c682e-744a-468d-a74f-827928c96c01", + Code = "float", + IsDeleted = 0ul, + Remark = "float", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "float" + }, + new + { + Id = "4b68cb83-f173-4864-bd10-a7a7d5248102", + Code = "decimal", + IsDeleted = 0ul, + Remark = "decimal", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "decimal" + }, + new + { + Id = "134d4173-8d93-4c19-bf6b-a640d35da097", + Code = "Guid", + IsDeleted = 0ul, + Remark = "Guid", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "Guid" + }, + new + { + Id = "c597306f-5fd0-4f75-9a46-12de340cd199", + Code = "DateTimeOffset", + IsDeleted = 0ul, + Remark = "DateTimeOffset", + Sort = 100, + Status = 0, + 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("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("父Ids"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_dict_type"); + + b + .HasComment("字典类型表"); + + b.HasData( + new + { + Id = "b0cfa91c-1189-4f39-bc5a-f035885d0604", + Code = "common_status", + IsDeleted = 0ul, + Name = "通用状态", + Remark = "通用状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "301ed120-dfc5-4d7c-af59-b56a519581c9", + Code = "sex", + IsDeleted = 0ul, + Name = "性别", + Remark = "性别字典", + Sort = 100, + Status = 0 + }, + new + { + Id = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Code = "consts_type", + IsDeleted = 0ul, + Name = "常量的分类", + Remark = "常量的分类,用于区别一组配置", + Sort = 100, + Status = 0 + }, + new + { + Id = "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", + Code = "yes_or_no", + IsDeleted = 0ul, + Name = "是否", + Remark = "是否", + Sort = 100, + Status = 0 + }, + new + { + Id = "2cecf329-cf95-44eb-a8d7-3fb77b13e093", + Code = "vis_type", + IsDeleted = 0ul, + Name = "访问类型", + Remark = "访问类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "e973d383-c28e-42e0-9e23-5f2bd592fef5", + Code = "menu_type", + IsDeleted = 0ul, + Name = "菜单类型", + Remark = "菜单类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "058db370-3718-42c3-8ba7-095341b1fe13", + Code = "send_type", + IsDeleted = 0ul, + Name = "发送类型", + Remark = "发送类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Code = "open_type", + IsDeleted = 0ul, + Name = "打开方式", + Remark = "打开方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "b3235678-f7fe-442b-8fba-e792a89b78f2", + Code = "menu_weight", + IsDeleted = 0ul, + Name = "菜单权重", + Remark = "菜单权重", + Sort = 100, + Status = 0 + }, + new + { + Id = "a2068ed1-62a6-463c-b720-06111d994079", + Code = "data_scope_type", + IsDeleted = 0ul, + Name = "数据范围类型", + Remark = "数据范围类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", + Code = "sms_send_source", + IsDeleted = 0ul, + Name = "短信发送来源", + Remark = "短信发送来源", + Sort = 100, + Status = 0 + }, + new + { + Id = "8461bd1d-311b-487e-b579-d6049c6fb191", + Code = "op_type", + IsDeleted = 0ul, + Name = "操作类型", + Remark = "操作类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "b924e0c1-3f23-4e37-9f27-90e945381304", + Code = "file_storage_location", + IsDeleted = 0ul, + Name = "文件存储位置", + Remark = "文件存储位置", + Sort = 100, + Status = 0 + }, + new + { + Id = "0f1b8660-d932-4a53-a681-a38bebae91e0", + Code = "run_status", + IsDeleted = 0ul, + Name = "运行状态", + Remark = "定时任务运行状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Code = "notice_type", + IsDeleted = 0ul, + Name = "通知公告类型", + Remark = "通知公告类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Code = "notice_status", + IsDeleted = 0ul, + Name = "通知公告状态", + Remark = "通知公告状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Code = "yes_true_false", + IsDeleted = 0ul, + Name = "是否boolean", + Remark = "是否boolean", + Sort = 100, + Status = 0 + }, + new + { + Id = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Code = "code_gen_create_type", + IsDeleted = 0ul, + Name = "代码生成方式", + Remark = "代码生成方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Code = "request_type", + IsDeleted = 0ul, + Name = "请求方式", + Remark = "请求方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Code = "code_gen_effect_type", + IsDeleted = 0ul, + Name = "代码生成作用类型", + Remark = "代码生成作用类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Code = "code_gen_query_type", + IsDeleted = 0ul, + Name = "代码生成查询类型", + Remark = "代码生成查询类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "28f653d4-e573-4f54-8e5c-4e308780145a", + Code = "code_gen_net_type", + IsDeleted = 0ul, + Name = "代码生成.NET类型", + Remark = "代码生成.NET类型", + Sort = 100, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysEmp", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("用户Id"); + + b.Property("JobNum") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("工号"); + + b.Property("OrgId") + .HasColumnType("varchar(36)") + .HasColumnName("OrgId") + .HasComment("机构Id"); + + b.Property("OrgName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("机构名称"); + + b.HasKey("Id"); + + b.ToTable("sys_emp"); + + b + .HasComment("员工表"); + + b.HasData( + new + { + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + JobNum = "D1001", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }, + new + { + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + JobNum = "D1002", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }, + new + { + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", + JobNum = "D1003", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => + { + b.Property("SysEmpId") + .HasColumnType("varchar(36)") + .HasColumnName("SysEmpId") + .HasComment("员工Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") + .HasComment("职位Id"); + + b.HasKey("SysEmpId", "SysOrgId", "SysPosId"); + + b.HasIndex("SysOrgId"); + + b.HasIndex("SysPosId"); + + b.ToTable("sys_emp_ext_org_pos"); + + b + .HasComment("员工附属机构职位表"); + + b.HasData( + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "127c0a5d-43ac-4370-b313-082361885aca", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + SysPosId = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66" + }, + new + { + 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("varchar(36)") + .HasColumnName("SysEmpId") + .HasComment("员工Id"); + + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") + .HasComment("职位Id"); + + b.HasKey("SysEmpId", "SysPosId"); + + b.HasIndex("SysPosId"); + + b.ToTable("sys_emp_pos"); + + b + .HasComment("员工职位表"); + + b.HasData( + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" + }, + new + { + SysEmpId = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" + }, + new + { + SysEmpId = "16a74726-e156-499f-9942-0e0e24ad0c3f", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysFile", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("FileBucket") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件仓库"); + + b.Property("FileLocation") + .HasColumnType("int") + .HasComment("文件存储位置"); + + b.Property("FileObjectName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("存储到bucket的名称"); + + b.Property("FileOriginName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件名称"); + + b.Property("FilePath") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("存储路径"); + + b.Property("FileSizeInfo") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件大小信息"); + + b.Property("FileSizeKb") + .HasColumnType("bigint") + .HasComment("文件大小kb"); + + b.Property("FileSuffix") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件后缀"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_file"); + + b + .HasComment("文件信息表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogAudit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("ColumnName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("操作时间"); + + b.Property("NewValue") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("新值"); + + b.Property("OldValue") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("旧值"); + + b.Property("Operate") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作方式"); + + b.Property("TableName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("表名"); + + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") + .HasComment("操作人Id"); + + b.Property("UserName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作人名称"); + + b.HasKey("Id"); + + b.ToTable("sys_log_audit"); + + b + .HasComment("审计日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogOp", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Account") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作人"); + + b.Property("Browser") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("浏览器"); + + b.Property("ClassName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("类名称"); + + b.Property("ElapsedTime") + .HasColumnType("bigint") + .HasComment("耗时"); + + b.Property("Ip") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("IP"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("地址"); + + b.Property("Message") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("具体消息"); + + b.Property("MethodName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("方法名称"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("OpTime") + .HasColumnType("datetime") + .HasComment("操作时间"); + + b.Property("OpType") + .HasColumnType("int") + .HasComment("操作类型"); + + b.Property("Os") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作系统"); + + b.Property("Param") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求参数"); + + b.Property("ReqMethod") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求方式"); + + b.Property("Result") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("返回结果"); + + b.Property("Success") + .HasColumnType("tinyint(1)") + .HasComment("是否执行成功"); + + b.Property("Url") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求地址"); + + b.HasKey("Id"); + + b.ToTable("sys_log_op"); + + b + .HasComment("操作日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogVis", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Account") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("访问人"); + + b.Property("Browser") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("浏览器"); + + b.Property("Ip") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("IP"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("地址"); + + b.Property("Message") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("具体消息"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Os") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作系统"); + + b.Property("Success") + .HasColumnType("tinyint(1)") + .HasComment("是否执行成功"); + + b.Property("VisTime") + .HasColumnType("datetime") + .HasComment("访问时间"); + + b.Property("VisType") + .HasColumnType("int") + .HasComment("访问类型"); + + b.HasKey("Id"); + + b.ToTable("sys_log_vis"); + + b + .HasComment("访问日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysMenu", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Application") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("应用分类"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Component") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("组件地址"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Icon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Link") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("内链地址"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("OpenType") + .HasColumnType("int") + .HasComment("打开方式"); + + b.Property("Permission") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("权限标识"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("父Ids"); + + b.Property("Redirect") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("重定向地址"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Router") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("路由地址"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("菜单类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Visible") + .HasColumnType("bit") + .HasColumnName("Visible") + .HasComment("是否可见"); + + b.Property("VisibleParent") + .HasColumnType("bit") + .HasColumnName("VisibleParent") + .HasComment("关联菜单显示"); + + b.Property("Weight") + .HasColumnType("int") + .HasComment("权重"); + + b.HasKey("Id"); + + b.ToTable("sys_menu"); + + b + .HasComment("菜单表"); + + b.HasData( + new + { + Id = "83ce02c9-b37f-4885-96e3-9b34371edb2e", + Application = "system", + Code = "system_index", + Component = "RouteView", + Icon = "home", + IsDeleted = 0ul, + Name = "主控面板", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Redirect = "/analysis", + Router = "/", + Sort = 1, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "914a520d-9e4f-465b-ae05-7248b37d4be1", + Application = "system", + Code = "system_index_dashboard", + Component = "system/dashboard/Analysis", + IsDeleted = 0ul, + Name = "分析页", + OpenType = 0, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "72981ad9-9036-4aa7-b8f4-dc407eda50b4", + Application = "system", + Code = "system_index_workplace", + Component = "system/dashboard/Workplace", + IsDeleted = 0ul, + Name = "工作台", + OpenType = 0, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", + Application = "system", + Code = "sys_mgr", + Component = "PageView", + Icon = "team", + IsDeleted = 0ul, + Name = "组织架构", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/sys", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Application = "system", + Code = "sys_user_mgr", + Component = "system/user/index", + IsDeleted = 0ul, + Name = "用户管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bff7e542-6463-4f82-a03d-b1022e60d4b6", + Application = "system", + Code = "sys_user_mgr_page", + IsDeleted = 0ul, + Name = "用户查询", + OpenType = 0, + Permission = "sysUser:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "936440c7-93ef-4d2f-adff-6151f4317355", + Application = "system", + Code = "sys_user_mgr_edit", + IsDeleted = 0ul, + Name = "用户编辑", + OpenType = 0, + Permission = "sysUser:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "281888e3-d183-4711-ba27-298ef6e64659", + Application = "system", + Code = "sys_user_mgr_add", + IsDeleted = 0ul, + Name = "用户增加", + OpenType = 0, + Permission = "sysUser:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e4aff800-d34a-416b-bd6e-dcebaa1dd436", + Application = "system", + Code = "sys_user_mgr_delete", + IsDeleted = 0ul, + Name = "用户删除", + OpenType = 0, + Permission = "sysUser:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "7a266494-e17b-480d-8f50-cc234e6fe424", + Application = "system", + Code = "sys_user_mgr_detail", + IsDeleted = 0ul, + Name = "用户详情", + OpenType = 0, + Permission = "sysUser:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0d93f763-20d3-4c95-add3-3d94770b110e", + Application = "system", + Code = "sys_user_mgr_export", + IsDeleted = 0ul, + Name = "用户导出", + OpenType = 0, + Permission = "sysUser:export", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "17d047c3-6e95-4f7d-93db-97817d886fa2", + Application = "system", + Code = "sys_user_mgr_selector", + IsDeleted = 0ul, + Name = "用户选择器", + OpenType = 0, + Permission = "sysUser:selector", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5fc44256-2e56-4805-9382-b5504ca5b6cb", + Application = "system", + Code = "sys_user_mgr_grant_role", + IsDeleted = 0ul, + Name = "用户授权角色", + OpenType = 0, + Permission = "sysUser:grantRole", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ceff7899-6779-4708-b9ed-a2d5b488cff2", + Application = "system", + Code = "sys_user_mgr_own_role", + IsDeleted = 0ul, + Name = "用户拥有角色", + OpenType = 0, + Permission = "sysUser:ownRole", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "38ba9ccc-eb96-4a60-a5ab-f6ea013f8291", + Application = "system", + Code = "sys_user_mgr_grant_data", + IsDeleted = 0ul, + Name = "用户授权数据", + OpenType = 0, + Permission = "sysUser:grantData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf2f8faf-b280-456c-8865-64115e04019f", + Application = "system", + Code = "sys_user_mgr_own_data", + IsDeleted = 0ul, + Name = "用户拥有数据", + OpenType = 0, + Permission = "sysUser:ownData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "711563e5-fed6-44d6-bcf3-138c73cfbfca", + Application = "system", + Code = "sys_user_mgr_update_info", + IsDeleted = 0ul, + Name = "用户更新信息", + OpenType = 0, + Permission = "sysUser:updateInfo", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "306fe9bf-3132-4011-9f3f-1a2f4ead7734", + Application = "system", + Code = "sys_user_mgr_update_pwd", + IsDeleted = 0ul, + Name = "用户修改密码", + OpenType = 0, + Permission = "sysUser:updatePwd", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "791b0d88-7e25-490f-a94f-a2e32bb3b6e6", + Application = "system", + Code = "sys_user_mgr_change_status", + IsDeleted = 0ul, + Name = "用户修改状态", + OpenType = 0, + Permission = "sysUser:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9d681aac-528a-46b0-9718-ffc4abe9c29e", + Application = "system", + Code = "sys_user_mgr_update_avatar", + IsDeleted = 0ul, + Name = "用户修改头像", + OpenType = 0, + Permission = "sysUser:updateAvatar", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "471b5259-5f55-4643-841c-f07089cfafdf", + Application = "system", + Code = "sys_user_mgr_reset_pwd", + IsDeleted = 0ul, + Name = "用户重置密码", + OpenType = 0, + Permission = "sysUser:resetPwd", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "471d3098-90a4-47e1-bd07-5d3ed8d21fb0", + Application = "system", + Code = "sys_user_mgr_login", + IsDeleted = 0ul, + Name = "用户登录信息", + OpenType = 0, + Permission = "getLoginUser", + 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 = 0ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Application = "system", + Code = "sys_org_mgr", + Component = "system/org/index", + IsDeleted = 0ul, + Name = "机构管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "b7c34c9b-933e-4c48-b1d0-af15a1f7da1f", + Application = "system", + Code = "sys_org_mgr_page", + IsDeleted = 0ul, + Name = "机构查询", + OpenType = 0, + Permission = "sysOrg:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "917064b2-c715-4fa4-9b2d-20a11b784ed1", + Application = "system", + Code = "sys_org_mgr_list", + IsDeleted = 0ul, + Name = "机构列表", + OpenType = 0, + Permission = "sysOrg:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d7c18d60-f28f-4a57-90b3-26fc95249ae0", + Application = "system", + Code = "sys_org_mgr_add", + IsDeleted = 0ul, + Name = "机构增加", + OpenType = 0, + Permission = "sysOrg:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e65eb1e3-cc9e-4309-8c7a-9ac41765b239", + Application = "system", + Code = "sys_org_mgr_edit", + IsDeleted = 0ul, + Name = "机构编辑", + OpenType = 0, + Permission = "sysOrg:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c2450c4c-89c6-46e8-8f89-11331790cbe3", + Application = "system", + Code = "sys_org_mgr_delete", + IsDeleted = 0ul, + Name = "机构删除", + OpenType = 0, + Permission = "sysOrg:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "695a6018-82c3-466e-a2a1-dab16039bfdb", + Application = "system", + Code = "sys_org_mgr_detail", + IsDeleted = 0ul, + Name = "机构详情", + OpenType = 0, + Permission = "sysOrg:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2d153046-279b-43be-8f57-46875118fd2c", + Application = "system", + Code = "sys_org_mgr_tree", + IsDeleted = 0ul, + Name = "机构树", + OpenType = 0, + Permission = "sysOrg:tree", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Application = "system", + Code = "sys_pos_mgr", + Component = "system/pos/index", + IsDeleted = 0ul, + Name = "职位管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d2436601-bc48-4610-ba67-5b666f8ce33a", + Application = "system", + Code = "sys_pos_mgr_page", + IsDeleted = 0ul, + Name = "职位查询", + OpenType = 0, + Permission = "sysPos:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1305efaa-b81a-475f-9dde-8f6549ca7743", + Application = "system", + Code = "sys_pos_mgr_list", + IsDeleted = 0ul, + Name = "职位列表", + OpenType = 0, + Permission = "sysPos:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c227e732-f231-4488-89b0-d1c9dad78950", + Application = "system", + Code = "sys_pos_mgr_add", + IsDeleted = 0ul, + Name = "职位增加", + OpenType = 0, + Permission = "sysPos:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9dafbe04-83c9-482c-9c83-81f4da045da5", + Application = "system", + Code = "sys_pos_mgr_edit", + IsDeleted = 0ul, + Name = "职位编辑", + OpenType = 0, + Permission = "sysPos:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "031df05e-b7c6-4ecd-aff2-f189c994e86d", + Application = "system", + Code = "sys_pos_mgr_delete", + IsDeleted = 0ul, + Name = "职位删除", + OpenType = 0, + Permission = "sysPos:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fe5ee8a1-2145-43c6-bdeb-518f3a9c127d", + Application = "system", + Code = "sys_pos_mgr_detail", + IsDeleted = 0ul, + Name = "职位详情", + OpenType = 0, + Permission = "sysPos:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", + Application = "system", + Code = "auth_manager", + Component = "PageView", + Icon = "safety-certificate", + IsDeleted = 0ul, + Name = "权限管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/auth", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Application = "system", + Code = "sys_app_mgr", + Component = "system/app/index", + IsDeleted = 0ul, + Name = "应用管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "dbaa7a6d-234f-4cc9-977f-4544b8bb45b8", + Application = "system", + Code = "sys_app_mgr_page", + IsDeleted = 0ul, + Name = "应用查询", + OpenType = 0, + Permission = "sysApp:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ab7b2b41-b0bc-4b9c-9017-f5c6918e393e", + Application = "system", + Code = "sys_app_mgr_list", + IsDeleted = 0ul, + Name = "应用列表", + OpenType = 0, + Permission = "sysApp:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f4e1d63b-5d92-46eb-82aa-267335a5a3f3", + Application = "system", + Code = "sys_app_mgr_add", + IsDeleted = 0ul, + Name = "应用增加", + OpenType = 0, + Permission = "sysApp:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f33a3791-1c01-4d30-bcc3-d9fdf5246376", + Application = "system", + Code = "sys_app_mgr_edit", + IsDeleted = 0ul, + Name = "应用编辑", + OpenType = 0, + Permission = "sysApp:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e0a6cf90-0a8b-44e4-a32f-5f43ef996b82", + Application = "system", + Code = "sys_app_mgr_delete", + IsDeleted = 0ul, + Name = "应用删除", + OpenType = 0, + Permission = "sysApp:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a0abe974-5ae9-440b-9d16-2412eab52d70", + Application = "system", + Code = "sys_app_mgr_detail", + IsDeleted = 0ul, + Name = "应用详情", + OpenType = 0, + Permission = "sysApp:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f640e243-b439-4109-8aea-c66205ef6b12", + Application = "system", + Code = "sys_app_mgr_set_as_default", + IsDeleted = 0ul, + Name = "设为默认应用", + OpenType = 0, + Permission = "sysApp:setAsDefault", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Application = "system", + Code = "sys_menu_mgr", + Component = "system/menu/index", + IsDeleted = 0ul, + Name = "菜单管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e9982e73-1833-4674-9403-ee3dee2efdf7", + Application = "system", + Code = "sys_menu_mgr_list", + IsDeleted = 0ul, + Name = "菜单列表", + OpenType = 0, + Permission = "sysMenu:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "758e15e6-75a6-4b72-8f94-5da379e53354", + Application = "system", + Code = "sys_menu_mgr_add", + IsDeleted = 0ul, + Name = "菜单增加", + OpenType = 0, + Permission = "sysMenu:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "07139c19-6b39-49f5-9e22-c4dc7e9d947b", + Application = "system", + Code = "sys_menu_mgr_edit", + IsDeleted = 0ul, + Name = "菜单编辑", + OpenType = 0, + Permission = "sysMenu:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "857fb581-78ff-4884-a6fb-8dfb4951fef9", + Application = "system", + Code = "sys_menu_mgr_delete", + IsDeleted = 0ul, + Name = "菜单删除", + OpenType = 0, + Permission = "sysMenu:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cd43a8ee-9f98-4355-bf81-ba40f388b23f", + Application = "system", + Code = "sys_menu_mgr_detail", + IsDeleted = 0ul, + Name = "菜单详情", + OpenType = 0, + Permission = "sysMenu:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ec318997-596d-403a-91be-f303b234b02d", + Application = "system", + Code = "sys_menu_mgr_grant_tree", + IsDeleted = 0ul, + Name = "菜单授权树", + OpenType = 0, + Permission = "sysMenu:treeForGrant", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "3892ef5d-39b2-4a4d-8047-cb96542fb54f", + Application = "system", + Code = "sys_menu_mgr_tree", + IsDeleted = 0ul, + Name = "菜单树", + OpenType = 0, + Permission = "sysMenu:tree", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "00831a3b-d080-411f-afb9-9f415334b192", + Application = "system", + Code = "sys_menu_mgr_change", + IsDeleted = 0ul, + Name = "菜单切换", + OpenType = 0, + Permission = "sysMenu:change", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Application = "system", + Code = "sys_role_mgr", + Component = "system/role/index", + IsDeleted = 0ul, + Name = "角色管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4241f4a0-89ab-4a6a-80bb-2830f855d3be", + Application = "system", + Code = "sys_role_mgr_page", + IsDeleted = 0ul, + Name = "角色查询", + OpenType = 0, + Permission = "sysRole:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6a48beb1-c828-43d6-af3d-3e18ef163070", + Application = "system", + Code = "sys_role_mgr_add", + IsDeleted = 0ul, + Name = "角色增加", + OpenType = 0, + Permission = "sysRole:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1198a602-a23d-4a06-aa9a-76aaf5f065a7", + Application = "system", + Code = "sys_role_mgr_edit", + IsDeleted = 0ul, + Name = "角色编辑", + OpenType = 0, + Permission = "sysRole:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e7708eeb-2c87-4c3d-bc71-c395e5d708db", + Application = "system", + Code = "sys_role_mgr_delete", + IsDeleted = 0ul, + Name = "角色删除", + OpenType = 0, + Permission = "sysRole:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "63ab477f-88fb-4f4b-9dcd-0cb83ac767f6", + Application = "system", + Code = "sys_role_mgr_detail", + IsDeleted = 0ul, + Name = "角色详情", + OpenType = 0, + Permission = "sysRole:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2622348c-dd8f-4ade-a350-de0a8f01e1f6", + Application = "system", + Code = "sys_role_mgr_drop_down", + IsDeleted = 0ul, + Name = "角色下拉", + OpenType = 0, + Permission = "sysRole:dropDown", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "73d84863-b381-40be-84bc-ec8381fa6c0a", + Application = "system", + Code = "sys_role_mgr_grant_menu", + IsDeleted = 0ul, + Name = "角色授权菜单", + OpenType = 0, + Permission = "sysRole:grantMenu", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bbc5e792-3d72-4d0d-8ddb-25cf2c4e1374", + Application = "system", + Code = "sys_role_mgr_own_menu", + IsDeleted = 0ul, + Name = "角色拥有菜单", + OpenType = 0, + Permission = "sysRole:ownMenu", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "19234814-6007-484c-818c-88a664a2a339", + Application = "system", + Code = "sys_role_mgr_grant_data", + IsDeleted = 0ul, + Name = "角色授权数据", + OpenType = 0, + Permission = "sysRole:grantData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "19e5c5f6-b598-4c42-8eed-3d46fb11b465", + Application = "system", + Code = "sys_role_mgr_own_data", + IsDeleted = 0ul, + Name = "角色拥有数据", + OpenType = 0, + Permission = "sysRole:ownData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Application = "system", + Code = "system_tools", + Component = "PageView", + Icon = "euro", + IsDeleted = 0ul, + Name = "开发管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/tools", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Application = "system", + Code = "system_tools_config", + Component = "system/config/index", + IsDeleted = 0ul, + Name = "系统配置", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c14c82bd-632d-4cc9-9236-37aa64b15ecf", + Application = "system", + Code = "system_tools_config_page", + IsDeleted = 0ul, + Name = "配置查询", + OpenType = 0, + Permission = "sysConfig:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "78d31d68-9c9b-4e02-94c9-8a74eea4c1fb", + Application = "system", + Code = "system_tools_config_list", + IsDeleted = 0ul, + Name = "配置列表", + OpenType = 0, + Permission = "sysConfig:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fc91afb5-2b9e-428b-b5ff-b0ef35dd5336", + Application = "system", + Code = "system_tools_config_add", + IsDeleted = 0ul, + Name = "配置增加", + OpenType = 0, + Permission = "sysConfig:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1efb72e8-3449-490a-92e0-308b124c338f", + Application = "system", + Code = "system_tools_config_edit", + IsDeleted = 0ul, + Name = "配置编辑", + OpenType = 0, + Permission = "sysConfig:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5760230f-e6fc-4c3d-ba38-1c8a5a923eb3", + Application = "system", + Code = "system_tools_config_delete", + IsDeleted = 0ul, + Name = "配置删除", + OpenType = 0, + Permission = "sysConfig:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6bfc0c53-5d6c-437c-9757-bc79e664d0f5", + Application = "system", + Code = "system_tools_config_detail", + IsDeleted = 0ul, + Name = "配置详情", + OpenType = 0, + Permission = "sysConfig:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f7fe47a3-86b2-4660-9920-0c9836755666", + Application = "system", + Code = "sys_app_mgr_set_as_default", + IsDeleted = 0ul, + Name = "设为默认应用", + OpenType = 0, + Permission = "sysApp:setAsDefault", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", + Application = "system", + Code = "sys_email_mgr", + Component = "system/email/index", + IsDeleted = 0ul, + Name = "邮件发送", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4d4cf5b3-bd4c-4f17-9fb2-47b28b00681f", + Application = "system", + Code = "sys_email_mgr_send_email", + IsDeleted = 0ul, + Name = "发送文本邮件", + OpenType = 0, + Permission = "email:sendEmail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "51e45073-1461-4b3b-ae06-d0d3dcf222e0", + Application = "system", + Code = "sys_email_mgr_send_email_html", + IsDeleted = 0ul, + Name = "发送html邮件", + OpenType = 0, + Permission = "email:sendEmailHtml", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", + Application = "system", + Code = "sys_sms_mgr", + Component = "system/sms/index", + IsDeleted = 0ul, + Name = "短信管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2afa4925-b927-457e-88a1-d215b7d75fb6", + Application = "system", + Code = "sys_sms_mgr_page", + IsDeleted = 0ul, + Name = "短信发送查询", + OpenType = 0, + Permission = "sms:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "97c1b073-5e19-4542-89e2-d8da44d0f1df", + Application = "system", + Code = "sys_sms_mgr_send_login_message", + IsDeleted = 0ul, + Name = "发送验证码短信", + OpenType = 0, + Permission = "sms:sendLoginMessage", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d2454bd2-f300-4b28-95c0-12432c28cbdf", + Application = "system", + Code = "sys_sms_mgr_validate_message", + IsDeleted = 0ul, + Name = "验证短信验证码", + OpenType = 0, + Permission = "sms:validateMessage", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Application = "system", + Code = "sys_dict_mgr", + Component = "system/dict/index", + IsDeleted = 0ul, + Name = "字典管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "70c5e8c5-6104-4e53-99c0-4743e557456b", + Application = "system", + Code = "sys_dict_mgr_dict_type_page", + IsDeleted = 0ul, + Name = "字典类型查询", + OpenType = 0, + Permission = "sysDictType:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1bd1d982-e05a-4bdc-a4e0-752d94f3196c", + Application = "system", + Code = "sys_dict_mgr_dict_type_list", + IsDeleted = 0ul, + Name = "字典类型列表", + OpenType = 0, + Permission = "sysDictType:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bd09b023-0884-4f31-8cf7-f66f789fa3db", + Application = "system", + Code = "sys_dict_mgr_dict_type_add", + IsDeleted = 0ul, + Name = "字典类型增加", + OpenType = 0, + Permission = "sysDictType:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1f7a41ff-5a46-449c-81f3-1618dfdcb4cd", + Application = "system", + Code = "sys_dict_mgr_dict_type_delete", + IsDeleted = 0ul, + Name = "字典类型删除", + OpenType = 0, + Permission = "sysDictType:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2381cde4-2174-47e7-a1e5-e58da70e7a11", + Application = "system", + Code = "sys_dict_mgr_dict_type_edit", + IsDeleted = 0ul, + Name = "字典类型编辑", + OpenType = 0, + Permission = "sysDictType:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8f7d3c74-8800-4922-9662-ac6af378c882", + Application = "system", + Code = "sys_dict_mgr_dict_type_detail", + IsDeleted = 0ul, + Name = "字典类型详情", + OpenType = 0, + Permission = "sysDictType:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4f87b6de-be62-4398-b680-1f8611f2cd70", + Application = "system", + Code = "sys_dict_mgr_dict_type_drop_down", + IsDeleted = 0ul, + Name = "字典类型下拉", + OpenType = 0, + Permission = "sysDictType:dropDown", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "07c799b2-e8e9-4955-83da-97560f161d87", + Application = "system", + Code = "sys_dict_mgr_dict_type_change_status", + IsDeleted = 0ul, + Name = "字典类型修改状态", + OpenType = 0, + Permission = "sysDictType:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "29be8e3c-c2bb-4162-b282-fdf58c218b9d", + Application = "system", + Code = "sys_dict_mgr_dict_page", + IsDeleted = 0ul, + Name = "字典值查询", + OpenType = 0, + Permission = "sysDictData:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "b8cbc4e1-ac10-4cda-b1e4-f816a2632d02", + Application = "system", + Code = "sys_dict_mgr_dict_list", + IsDeleted = 0ul, + Name = "字典值列表", + OpenType = 0, + Permission = "sysDictData:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54e97bde-94d6-42df-89e3-4c3ace153b22", + Application = "system", + Code = "sys_dict_mgr_dict_add", + IsDeleted = 0ul, + Name = "字典值增加", + OpenType = 0, + Permission = "sysDictData:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "be98da08-a3b0-463c-8208-05d843620258", + Application = "system", + Code = "sys_dict_mgr_dict_delete", + IsDeleted = 0ul, + Name = "字典值删除", + OpenType = 0, + Permission = "sysDictData:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "38809fc3-163f-4fe9-a488-c9bb5bce752a", + Application = "system", + Code = "sys_dict_mgr_dict_edit", + IsDeleted = 0ul, + Name = "字典值编辑", + OpenType = 0, + Permission = "sysDictData:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fc511b42-f0a1-489b-8418-7ef94b0fb374", + Application = "system", + Code = "sys_role_mgr_grant_data", + IsDeleted = 0ul, + Name = "字典值详情", + OpenType = 0, + Permission = "sysDictData:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "200428b3-1605-4c70-b840-e691e302ae69", + Application = "system", + Code = "sys_dict_mgr_dict_change_status", + IsDeleted = 0ul, + Name = "字典值修改状态", + OpenType = 0, + Permission = "sysDictData:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d40f424d-d5fc-4b86-a2bd-3a5a76076bc1", + Application = "system", + Code = "sys_swagger_mgr", + Component = "Iframe", + IsDeleted = 0ul, + Link = "http://127.0.0.1:5566/", + Name = "接口文档", + OpenType = 2, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "eec4563e-9307-4ccd-ac3a-93598badb195", + Application = "system", + Code = "sys_log_mgr", + Component = "PageView", + Icon = "read", + IsDeleted = 0ul, + Name = "日志管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/log", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "322b2cb6-df29-483b-b011-54dce1532fae", + Application = "system", + Code = "sys_log_mgr_vis_log", + Component = "system/log/vislog/index", + IsDeleted = 0ul, + Name = "访问日志", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "122641c1-ab6d-4f91-9527-16fc8fea9708", + Application = "system", + Code = "sys_log_mgr_vis_log_page", + IsDeleted = 0ul, + Name = "访问日志查询", + OpenType = 0, + Permission = "sysVisLog:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f2367804-6382-4e72-8282-e4f6f988ecd1", + Application = "system", + Code = "sys_log_mgr_vis_log_delete", + IsDeleted = 0ul, + Name = "访问日志清空", + OpenType = 0, + Permission = "sysVisLog:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", + Application = "system", + Code = "sys_log_mgr_op_log", + Component = "system/log/oplog/index", + IsDeleted = 0ul, + Name = "操作日志", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "7f44f49e-6458-4149-bbcd-9a937f552cec", + Application = "system", + Code = "sys_log_mgr_op_log_page", + IsDeleted = 0ul, + Name = "操作日志查询", + OpenType = 0, + Permission = "sysOpLog:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "263e0c00-2796-411c-9f50-0aa361f7781c", + Application = "system", + Code = "sys_log_mgr_op_log_delete", + IsDeleted = 0ul, + Name = "操作日志清空", + OpenType = 0, + Permission = "sysOpLog:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", + Application = "system", + Code = "sys_monitor_mgr", + Component = "PageView", + Icon = "deployment-unit", + IsDeleted = 0ul, + Name = "系统监控", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/monitor", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c1e70042-fe3f-4efc-a6cc-86de8507f948", + Application = "system", + Code = "sys_monitor_mgr_machine_monitor", + Component = "system/machine/index", + IsDeleted = 0ul, + Name = "服务监控", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "444f3658-defe-47a7-880e-bf0af8b66591", + Application = "system", + Code = "sys_monitor_mgr_machine_monitor_query", + IsDeleted = 0ul, + Name = "服务监控查询", + OpenType = 0, + Permission = "sysMachine:query", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "49a8b476-327b-4f33-87b8-2d9bc50dc390", + Application = "system", + Code = "sys_monitor_mgr_online_user", + Component = "system/onlineUser/index", + IsDeleted = 0ul, + Name = "在线用户", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4785eb5a-678a-4f9c-b07c-3b92acdd6de0", + Application = "system", + Code = "sys_monitor_mgr_online_user_list", + IsDeleted = 0ul, + Name = "在线用户列表", + OpenType = 0, + Permission = "sysOnlineUser:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4dbf6765-ac79-4708-a9d5-16a4d4b09164", + Application = "system", + Code = "sys_monitor_mgr_online_user_force_exist", + IsDeleted = 0ul, + Name = "在线用户强退", + OpenType = 0, + Permission = "sysOnlineUser:forceExist", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "31c2af01-b856-4a1d-a131-cdf8e847b1a4", + Application = "system", + Code = "sys_monitor_mgr_druid", + Component = "Iframe", + IsDeleted = 0ul, + Link = "http://localhost:82/druid/login.html", + Name = "数据监控", + OpenType = 2, + 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 = 0ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d4cac841-99e5-4014-af17-2986c9340306", + Application = "system", + Code = "sys_notice", + Component = "PageView", + Icon = "sound", + IsDeleted = 0ul, + Name = "通知公告", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/notice", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Application = "system", + Code = "sys_notice_mgr", + Component = "system/notice/index", + IsDeleted = 0ul, + Name = "公告管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54584ab7-25d1-45b7-b3d4-76ba21511f97", + Application = "system", + Code = "sys_notice_mgr_page", + IsDeleted = 0ul, + Name = "公告查询", + OpenType = 0, + Permission = "sysNotice:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f27c8431-7da5-4ffe-a8f3-b511cf44c0c8", + Application = "system", + Code = "sys_notice_mgr_add", + IsDeleted = 0ul, + Name = "公告增加", + OpenType = 0, + Permission = "sysNotice:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f84c1f3a-3a51-4be2-97c9-7543b044e457", + Application = "system", + Code = "sys_notice_mgr_edit", + IsDeleted = 0ul, + Name = "公告编辑", + OpenType = 0, + Permission = "sysNotice:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a8abcb85-ad3b-47b9-8c9b-e7d1876b90cf", + Application = "system", + Code = "sys_notice_mgr_delete", + IsDeleted = 0ul, + Name = "公告删除", + OpenType = 0, + Permission = "sysNotice:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fe9cbb41-7b05-4f32-b960-87a1ef146166", + Application = "system", + Code = "sys_notice_mgr_detail", + IsDeleted = 0ul, + Name = "公告查看", + OpenType = 0, + Permission = "sysNotice:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "3e547bb0-4cf5-4cf0-8386-48d2f3c12dcb", + Application = "system", + Code = "sys_notice_mgr_changeStatus", + IsDeleted = 0ul, + Name = "公告修改状态", + OpenType = 0, + Permission = "sysNotice:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ac3065ff-d239-4e0e-86e5-d72cc658224c", + Application = "system", + Code = "sys_notice_mgr_received", + Component = "system/noticeReceived/index", + IsDeleted = 0ul, + Name = "已收公告", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e2d4b13b-eb3e-4ead-8fb8-4c61a3004726", + Application = "system", + Code = "sys_notice_mgr_received_page", + IsDeleted = 0ul, + Name = "已收公告查询", + OpenType = 0, + Permission = "sysNotice:received", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "05326e62-f496-4950-8a29-40e8a479424f", + Application = "system", + Code = "sys_file_mgr", + Component = "PageView", + Icon = "file", + IsDeleted = 0ul, + Name = "文件管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/file", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0af2a460-bbb0-472c-b027-8532970425df", + Application = "system", + Code = "sys_file_mgr_sys_file", + Component = "system/file/index", + IsDeleted = 0ul, + Name = "系统文件", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c7bac800-b922-4173-bd8d-9888b4eab1d4", + Application = "system", + Code = "sys_file_mgr_sys_file_page", + IsDeleted = 0ul, + Name = "文件查询", + OpenType = 0, + Permission = "sysFileInfo:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f47e1fa7-6329-4d67-8fe6-36ca06aad54b", + Application = "system", + Code = "sys_file_mgr_sys_file_list", + IsDeleted = 0ul, + Name = "文件列表", + OpenType = 0, + Permission = "sysFileInfo:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cca0a2ee-cfb9-4996-affb-dc8d8168ac10", + Application = "system", + Code = "sys_file_mgr_sys_file_delete", + IsDeleted = 0ul, + Name = "文件删除", + OpenType = 0, + Permission = "sysFileInfo:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "eb738eaa-5eed-466d-b422-4eb6f4662dd9", + Application = "system", + Code = "sys_file_mgr_sys_file_detail", + IsDeleted = 0ul, + Name = "文件详情", + OpenType = 0, + Permission = "sysFileInfo:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "69b97ace-d849-4e52-8fc2-9da7d93e325f", + Application = "system", + Code = "sys_file_mgr_sys_file_upload", + IsDeleted = 0ul, + Name = "文件上传", + OpenType = 0, + Permission = "sysFileInfo:upload", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e286d53d-bf3c-4711-b0a3-15cfad0a7521", + Application = "system", + Code = "sys_file_mgr_sys_file_download", + IsDeleted = 0ul, + Name = "文件下载", + OpenType = 0, + Permission = "sysFileInfo:download", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1975891b-7940-44a8-a513-9f2e8b05dda1", + Application = "system", + Code = "sys_file_mgr_sys_file_preview", + IsDeleted = 0ul, + Name = "图片预览", + OpenType = 0, + Permission = "sysFileInfo:preview", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ba03cfd5-5d72-465f-87b6-71134da68fab", + Application = "system", + Code = "sys_timers", + Component = "PageView", + Icon = "dashboard", + IsDeleted = 0ul, + Name = "定时任务", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/timers", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Application = "system", + Code = "sys_timers_mgr", + Component = "system/timers/index", + IsDeleted = 0ul, + Name = "任务管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "db62154a-470e-43c8-8959-a686b954fe7d", + Application = "system", + Code = "sys_timers_mgr_page", + IsDeleted = 0ul, + Name = "定时任务查询", + OpenType = 0, + Permission = "sysTimers:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "dc07cd9f-4a53-40d9-988e-70290a146eff", + Application = "system", + Code = "sys_timers_mgr_list", + IsDeleted = 0ul, + Name = "定时任务列表", + OpenType = 0, + Permission = "sysTimers:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1e562d31-c2f8-4af8-be4b-47e3b251d9a3", + Application = "system", + Code = "sys_timers_mgr_detail", + IsDeleted = 0ul, + Name = "定时任务详情", + OpenType = 0, + Permission = "sysTimers:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f27ba442-7d6f-499f-8053-a737adc3492a", + Application = "system", + Code = "sys_timers_mgr_add", + IsDeleted = 0ul, + Name = "定时任务增加", + OpenType = 0, + Permission = "sysTimers:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "99129601-0be5-43ee-842b-a428603f013b", + Application = "system", + Code = "sys_timers_mgr_delete", + IsDeleted = 0ul, + Name = "定时任务删除", + OpenType = 0, + Permission = "sysTimers:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5e118fc0-f580-4d06-a89d-f321a84e5654", + Application = "system", + Code = "sys_timers_mgr_edit", + IsDeleted = 0ul, + Name = "定时任务编辑", + OpenType = 0, + Permission = "sysTimers:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4272f2e4-4a8b-45bb-b688-2b9471c35e83", + Application = "system", + Code = "sys_timers_mgr_get_action_classes", + IsDeleted = 0ul, + Name = "定时任务可执行列表", + OpenType = 0, + Permission = "sysTimers:getActionClasses", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54094687-f661-4cba-bdfc-e76f22db8d76", + Application = "system", + Code = "sys_timers_mgr_start", + IsDeleted = 0ul, + Name = "定时任务启动", + OpenType = 0, + Permission = "sysTimers:start", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6b82d407-d1ea-440e-9245-128ad03dffc0", + Application = "system", + Code = "sys_timers_mgr_stop", + IsDeleted = 0ul, + Name = "定时任务关闭", + OpenType = 0, + Permission = "sysTimers:stop", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5172265d-eda3-4b8a-a542-d582467a51a1", + Application = "system_tool", + Code = "code_gen", + Component = "gen/codeGenerate/index", + Icon = "thunderbolt", + IsDeleted = 0ul, + Name = "代码生成", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/codeGenerate/index", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf51df0a-8e0b-4252-ba06-9646cad648d1", + Application = "system_tool", + Code = "form_design", + Component = "system/formDesign/index", + Icon = "robot", + IsDeleted = 0ul, + Name = "表单设计", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/formDesign/index", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f4cf2a3d-0714-4ca4-a691-0b363c172f82", + Application = "advanced", + Code = "sys_tenant", + Component = "PageView", + Icon = "switcher", + IsDeleted = 0ul, + Name = "SaaS租户", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/tenant", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Application = "advanced", + Code = "sys_tenant_mgr", + Component = "system/tenant/index", + IsDeleted = 0ul, + Name = "租户管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8985ec0a-5060-4812-bf47-4f3102948066", + Application = "advanced", + Code = "sys_tenant_mgr_page", + IsDeleted = 0ul, + Name = "租户查询", + OpenType = 0, + Permission = "sysTenant:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d9584afb-18de-4f7e-b992-c21ad77b1aae", + Application = "advanced", + Code = "sys_tenant_mgr_detail", + IsDeleted = 0ul, + Name = "租户详情", + OpenType = 0, + Permission = "sysTenant:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "01ae6b95-9c1e-4882-a9ac-ebb9f1868c54", + Application = "advanced", + Code = "sys_tenant_mgr_add", + IsDeleted = 0ul, + Name = "租户增加", + OpenType = 0, + Permission = "sysTenant:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "59e9f6da-151a-4201-bea1-00ef06fe5842", + Application = "advanced", + Code = "sys_tenant_mgr_delete", + IsDeleted = 0ul, + Name = "租户删除", + OpenType = 0, + Permission = "sysTenant:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "220b6a86-e65d-469b-8aa0-46c4f5e77ab8", + Application = "advanced", + Code = "sys_tenant_mgr_edit", + IsDeleted = 0ul, + Name = "租户编辑", + OpenType = 0, + Permission = "sysTenant:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysNotice", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Attachments") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("上传文件id集合"); + + b.Property("CancelTime") + .HasColumnType("datetime") + .HasComment("撤回时间"); + + b.Property("Content") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("内容"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("PublicOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicOrgId") + .HasComment("发布机构Id"); + + b.Property("PublicOrgName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("发布机构名称"); + + b.Property("PublicTime") + .HasColumnType("datetime") + .HasComment("发布时间"); + + b.Property("PublicUserId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicUserId") + .HasComment("发布人Id"); + + b.Property("PublicUserName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("发布人姓名"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("Title") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("标题"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_notice"); + + b + .HasComment("通知公告表"); + }); + + modelBuilder.Entity("Ewide.Core.SysNoticeUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NoticeId") + .HasColumnType("varchar(36)") + .HasColumnName("NoticeId") + .HasComment("通知公告Id"); + + b.Property("ReadStatus") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("ReadTime") + .HasColumnType("datetime") + .HasComment("阅读时间"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") + .HasComment("用户Id"); + + b.HasKey("Id"); + + b.ToTable("sys_notice_user"); + + b + .HasComment("通知公告用户表"); + }); + + modelBuilder.Entity("Ewide.Core.SysOauthUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AccessToken") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Token"); + + b.Property("Avatar") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("头像"); + + b.Property("Blog") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("用户网址"); + + b.Property("Company") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("所在公司"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("邮箱"); + + b.Property("Gender") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("性别"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("位置"); + + b.Property("NickName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("昵称"); + + b.Property("Phone") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Source") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("用户来源"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Uuid") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("UUID"); + + b.HasKey("Id"); + + b.ToTable("sys_oauth_user"); + + b + .HasComment("Oauth登录用户表"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AreaCode") + .HasColumnType("varchar(50) CHARACTER SET utf8mb4"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Contacts") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("联系人"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Pids"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("Tel") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("机构类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_org"); + + b + .HasComment("组织机构表"); + + b.HasData( + new + { + Id = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Code = "hxjt", + IsDeleted = 0ul, + Name = "华夏集团", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Remark = "华夏集团", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + Code = "hxjt_bj", + IsDeleted = 0ul, + Name = "华夏集团北京分公司", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", + Remark = "华夏集团北京分公司", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "127c0a5d-43ac-4370-b313-082361885aca", + Code = "hxjt_cd", + IsDeleted = 0ul, + Name = "华夏集团成都分公司", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", + Remark = "华夏集团成都分公司", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + Code = "hxjt_bj_yfb", + IsDeleted = 0ul, + Name = "研发部", + 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, + Type = 0 + }, + new + { + Id = "07322be0-2015-41f2-859e-132b5e142fca", + Code = "hxjt_bj_qhb", + IsDeleted = 0ul, + Name = "企划部", + 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, + Type = 0 + }, + new + { + Id = "49dc3f25-873d-4998-9767-46978d79d8e6", + Code = "hxjt_cd_scb", + IsDeleted = 0ul, + Name = "市场部", + 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, + Type = 0 + }, + new + { + Id = "56b7a823-cc62-492b-a91b-0b053ef2683b", + Code = "hxjt_cd_cwb", + IsDeleted = 0ul, + Name = "财务部", + 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, + Type = 0 + }, + new + { + Id = "e9f97d63-a585-40ff-bf0c-7406e785f660", + Code = "hxjt_cd_scb_2b", + IsDeleted = 0ul, + Name = "市场部二部", + 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, + Type = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysPos", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_pos"); + + b + .HasComment("职位表"); + + b.HasData( + new + { + Id = "269236c4-d74e-4e54-9d50-f6f61580a197", + Code = "zjl", + IsDeleted = 0ul, + Name = "总经理", + Remark = "总经理", + Sort = 100, + Status = 0 + }, + new + { + Id = "46c68a62-f119-4ff7-b621-0bbd77504538", + Code = "fzjl", + IsDeleted = 0ul, + Name = "副总经理", + Remark = "副总经理", + Sort = 101, + Status = 0 + }, + new + { + Id = "5bd8c466-2bca-4386-a551-daac78e3cee8", + Code = "bmjl", + IsDeleted = 0ul, + Name = "部门经理", + Remark = "部门经理", + Sort = 102, + Status = 0 + }, + new + { + Id = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66", + Code = "gzry", + IsDeleted = 0ul, + Name = "工作人员", + Remark = "工作人员", + Sort = 103, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysRole", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("DataScopeType") + .HasColumnType("int") + .HasComment("数据范围类型"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_role"); + + b + .HasComment("角色表"); + + b.HasData( + new + { + Id = "6dfe9189-ce10-434e-a7a7-5cdc46e85047", + Code = "sys_manager_role", + DataScopeType = 1, + IsDeleted = 0ul, + Name = "系统管理员", + Remark = "系统管理员", + Sort = 100, + Status = 0 + }, + new + { + Id = "cd187ebd-ab3d-4768-9669-85e2219c2910", + Code = "common_role", + DataScopeType = 5, + IsDeleted = 0ul, + Name = "普通用户", + Remark = "普通用户", + Sort = 101, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleArea", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasComment("角色Id"); + + b.Property("AreaCode") + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域代码"); + + b.HasKey("SysRoleId", "AreaCode"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_role_area"); + + b + .HasComment("角色区域自定义数据"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.HasKey("SysRoleId", "SysOrgId"); + + b.HasIndex("SysOrgId"); + + b.ToTable("sys_role_data_scope"); + + b + .HasComment("角色数据范围表"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.Property("SysMenuId") + .HasColumnType("varchar(36)") + .HasColumnName("SysMenuId") + .HasComment("菜单Id"); + + b.HasKey("SysRoleId", "SysMenuId"); + + b.HasIndex("SysMenuId"); + + b.ToTable("sys_role_menu"); + + b + .HasComment("角色菜单表"); + }); + + modelBuilder.Entity("Ewide.Core.SysTenant", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Connection") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库连接"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电子邮箱"); + + b.Property("Host") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("主机"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Phone") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Schema") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("架构"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_tenant"); + + b + .HasComment("租户表"); + + b.HasData( + new + { + Id = "506a14b7-882d-4548-96fa-a55dbe79bfa1", + Connection = "Data Source=./Ewide.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Email = "zuohuaijun@163.com", + Host = "localhost:5566", + IsDeleted = 0ul, + Name = "默认租户", + Phone = "18020030720" + }, + new + { + Id = "eed8c4a6-70d8-49fd-9566-21a6966bb702", + Connection = "Data Source=./Dilon_1.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Host = "localhost:5588", + IsDeleted = 0ul, + Name = "其他租户" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysTimer", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("BeginTime") + .HasColumnType("datetime") + .HasComment("开始时间"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Cron") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Cron表达式"); + + b.Property("DoOnce") + .HasColumnType("tinyint(1)") + .HasComment("只执行一次"); + + b.Property("EndTime") + .HasColumnType("datetime") + .HasComment("结束时间"); + + b.Property("ExecuteType") + .HasColumnType("int") + .HasComment("执行类型"); + + b.Property("Headers") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Headers"); + + b.Property("Interval") + .HasColumnType("int") + .HasComment("执行间隔时间"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("JobName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("任务名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("RequestParameters") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求参数"); + + b.Property("RequestType") + .HasColumnType("int") + .HasComment("请求类型"); + + b.Property("RequestUrl") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求url"); + + b.Property("RunNumber") + .HasColumnType("int") + .HasComment("执行次数"); + + b.Property("StartNow") + .HasColumnType("tinyint(1)") + .HasComment("立即执行"); + + b.Property("TimerType") + .HasColumnType("int") + .HasComment("定时器类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_timer"); + + b + .HasComment("定时任务表"); + + b.HasData( + new + { + Id = "971bc338-0c03-46d4-8113-c7738d54ea18", + BeginTime = new DateTime(2021, 3, 21, 0, 0, 0, 0, DateTimeKind.Local), + DoOnce = false, + ExecuteType = 0, + Interval = 30, + IsDeleted = 0ul, + JobName = "百度api", + RequestType = 2, + RequestUrl = "https://www.baidu.com", + StartNow = false, + TimerType = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Account") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("账号"); + + b.Property("AdminType") + .HasColumnType("int") + .HasComment("管理员类型-超级管理员_1、非管理员_2"); + + b.Property("Avatar") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("头像"); + + b.Property("Birthday") + .HasColumnType("datetime") + .HasComment("生日"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("邮箱"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("LastLoginIp") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("最后登录IP"); + + b.Property("LastLoginTime") + .HasColumnType("datetime") + .HasComment("最后登录时间"); + + b.Property("Name") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("姓名"); + + b.Property("NickName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("昵称"); + + b.Property("Password") + .IsRequired() + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("密码"); + + b.Property("Phone") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("手机"); + + b.Property("SecurityLevel") + .HasColumnType("int") + .HasComment("密码安全级别"); + + b.Property("Sex") + .HasColumnType("int") + .HasComment("性别-男_1、女_2"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态-正常_0、停用_1、删除_2"); + + b.Property("Tel") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_user"); + + b + .HasComment("用户表"); + + b.HasData( + new + { + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + Account = "superAdmin", + AdminType = 1, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "superAdmin", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 1, + Status = 0 + }, + new + { + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + Account = "admin", + AdminType = 1, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "admin", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 2, + Status = 0 + }, + new + { + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", + Account = "zuohuaijun", + AdminType = 2, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "zuohuaijun", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 1, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysUserArea", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("AreaCode") + .HasMaxLength(10) + .HasColumnType("varchar(10) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域代码"); + + b.HasKey("SysUserId", "AreaCode"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_user_area"); + + b + .HasComment("用户授权区域信息"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.HasKey("SysUserId", "SysOrgId"); + + b.HasIndex("SysOrgId"); + + b.ToTable("sys_user_data_scope"); + + b + .HasComment("用户数据范围表"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserRole", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.HasKey("SysUserId", "SysRoleId"); + + b.HasIndex("SysRoleId"); + + b.ToTable("sys_user_role"); + + b + .HasComment("用户角色表"); + }); + + modelBuilder.Entity("Vote.Services.Entities.Experts", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("login_code") + .HasMaxLength(36) + .HasColumnType("varchar(36) CHARACTER SET utf8mb4") + .HasComment("登录码"); + + b.HasKey("Id"); + + b.ToTable("Experts"); + + b.HasData( + new + { + Id = "c6ef020b-1073-4250-b862-7190e560eb45", + IsDeleted = 0ul, + login_code = "0WDP23" + }, + new + { + Id = "fdf47078-a1ec-4582-95e4-f9ab4f1f1c91", + IsDeleted = 0ul, + login_code = "NAK68F" + }, + new + { + Id = "2155e5a0-d6e9-4273-81d1-750d41bb1684", + IsDeleted = 0ul, + login_code = "HG1M4D" + }, + new + { + Id = "717be2ce-0732-4e71-b6c2-6b156ea99f89", + IsDeleted = 0ul, + login_code = "XY1ZW3" + }, + new + { + Id = "9e97207c-eaed-4033-921b-c272d3cb38cc", + IsDeleted = 0ul, + login_code = "EGS0XD" + }, + new + { + Id = "2a08cae0-ddff-42e0-9435-75651f7ff2d4", + IsDeleted = 0ul, + login_code = "PRU0AP" + }, + new + { + Id = "7706b8b3-191f-41f4-a2e1-a201f6c690c3", + IsDeleted = 0ul, + login_code = "GQKLL2" + }, + new + { + Id = "cae38479-e03f-4d18-aee0-ef78cd654ba6", + IsDeleted = 0ul, + login_code = "9Q5SJ3" + }, + new + { + Id = "439ced63-e210-4171-b24a-47876a7921f7", + IsDeleted = 0ul, + login_code = "X6HDHP" + }, + new + { + Id = "90f1c279-d95c-4bf3-85d2-c2d0d67959a2", + IsDeleted = 0ul, + login_code = "YSPXPG" + }, + new + { + Id = "a7f19131-4208-449b-9557-2ef5a580ac02", + IsDeleted = 0ul, + login_code = "GT9NFN" + }, + new + { + Id = "d11d2ec7-3760-4b7d-bc8b-e0d3696f52d4", + IsDeleted = 0ul, + login_code = "FQA43L" + }, + new + { + Id = "45048c78-3ec8-49d1-bfb4-e1225d491562", + IsDeleted = 0ul, + login_code = "Y0QT57" + }, + new + { + Id = "754d5f4b-8cef-4745-8e1c-9cec9cc41853", + IsDeleted = 0ul, + login_code = "G9QFPQ" + }, + new + { + Id = "2c657c98-a68e-42d6-ac51-f73b283cf913", + IsDeleted = 0ul, + login_code = "FRCYF7" + }, + new + { + Id = "83f93ea6-bd79-4b6d-858d-156936fd7607", + IsDeleted = 0ul, + login_code = "TL5FKN" + }, + new + { + Id = "5337276d-438e-42d5-b9d1-d849709da702", + IsDeleted = 0ul, + login_code = "XFMKHX" + }, + new + { + Id = "c041100b-7aee-4823-b2bb-cd802fdd60a2", + IsDeleted = 0ul, + login_code = "DVLXMV" + }, + new + { + Id = "21fe40e4-9cb1-4993-910b-2b3c7c4d6d68", + IsDeleted = 0ul, + login_code = "CBKQC1" + }, + new + { + Id = "43cd3a6d-ddf1-4745-b140-e88ce8c744b6", + IsDeleted = 0ul, + login_code = "QKKQJ3" + }); + }); + + modelBuilder.Entity("Vote.Services.Entities.Projects", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("工程名称"); + + b.Property("serial_number") + .HasColumnType("int") + .HasComment("项目序号"); + + b.Property("type") + .HasColumnType("int") + .HasComment("项目类型"); + + b.HasKey("Id"); + + b.ToTable("Projects"); + + b.HasData( + new + { + Id = "5921ad9e-7027-446d-aae3-899ad388404b", + IsDeleted = 0ul, + name = "浙江纺织服装职业技术学院中英时尚设计学院综合楼项目", + serial_number = 1, + type = 0 + }, + new + { + Id = "3e458131-6318-4e27-935e-2e4a85c877b1", + IsDeleted = 0ul, + name = "宁波诺丁汉大学图书馆及学习中心项目", + serial_number = 2, + type = 0 + }, + new + { + Id = "03d59313-3e30-4345-920e-e21455c11228", + IsDeleted = 0ul, + name = "高新区滨江绿带整治工程五期(翔海路—大东江)I标段", + serial_number = 3, + type = 0 + }, + new + { + Id = "94e3b06e-2fa6-4830-8432-383305b237b8", + IsDeleted = 0ul, + name = "太平鸟高新区男装办公楼项目", + serial_number = 4, + type = 0 + }, + new + { + Id = "26f148e5-a44e-47d5-90aa-49136b1efb6d", + IsDeleted = 0ul, + name = "慈城新城高中项目", + serial_number = 5, + type = 0 + }, + new + { + Id = "686d2b36-30a8-47c4-9050-db601d8dcb8c", + IsDeleted = 0ul, + name = "宁海县妇幼保健院保健大楼工程", + serial_number = 6, + type = 0 + }, + new + { + Id = "8118f5fd-8082-4186-a5b4-32490cbadb19", + IsDeleted = 0ul, + name = "宁波市职业技术教育中心学校(荷池校区) 改扩建项目", + serial_number = 7, + type = 0 + }, + new + { + Id = "ecaf4b26-b27e-4eed-bbf2-0deaf52495fa", + IsDeleted = 0ul, + name = "大庆北路地段配套学校(二期)", + serial_number = 8, + type = 0 + }, + new + { + Id = "bb3eee7a-4846-4177-b377-fd2804d4db72", + IsDeleted = 0ul, + name = "鄞州区钟公庙第二初级中学工程", + serial_number = 9, + type = 0 + }, + new + { + Id = "21a336c4-f730-4244-ae5a-66d4e0f8f356", + IsDeleted = 0ul, + name = "北京航空航天大学宁波创新研究院(研究生院和国际交流中心)一期(实验用房)", + serial_number = 10, + type = 0 + }, + new + { + Id = "5c504c5d-9d69-4cf8-a483-c8699f0b517e", + IsDeleted = 0ul, + name = "余姚市人民医院肿瘤治疗中心项目", + serial_number = 11, + type = 0 + }, + new + { + Id = "2b257857-4905-4176-bebe-bc8b99eef73b", + IsDeleted = 0ul, + name = "庄市中心学校迁建工程", + serial_number = 12, + type = 0 + }, + new + { + Id = "9c16ca23-f3d8-44c9-92d7-d08d6b64e4f9", + IsDeleted = 0ul, + name = "镇海区中心学校新城校区项目", + serial_number = 13, + type = 0 + }, + new + { + Id = "62696ca2-719e-41df-8bad-e182efe84963", + IsDeleted = 0ul, + name = "宁波市海曙区段塘学校扩建工程", + serial_number = 14, + type = 0 + }, + new + { + Id = "ef61f197-b194-4190-ab74-f5f78c160bd3", + IsDeleted = 0ul, + name = "慈溪市明月湖幼儿园", + serial_number = 15, + type = 0 + }, + new + { + Id = "056e05e3-2ae5-4db5-b976-f4a1809a4d1a", + IsDeleted = 0ul, + name = "北仑外国语学校工程", + serial_number = 16, + type = 0 + }, + new + { + Id = "4c9d4677-539c-45c8-8885-45f9d2c1c15e", + IsDeleted = 0ul, + name = "宁波市残疾人康复中心(宁波市康复医院)扩建工程", + serial_number = 17, + type = 0 + }, + new + { + Id = "f640a90e-71c1-4142-afb4-b9d68f9ac08f", + IsDeleted = 0ul, + name = "宁波海关宁海办事处检测报关代理服务中心项目", + serial_number = 18, + type = 0 + }, + new + { + Id = "62eb67a1-2584-4b9e-b663-9c6c1b700d42", + IsDeleted = 0ul, + name = "新能源技术与材料综合研发平台- 核用碳化硅纤维及复合材料研发及应用平台项目", + serial_number = 19, + type = 0 + }, + new + { + Id = "23a38e3e-a77c-463c-902e-02088707d1ca", + IsDeleted = 0ul, + name = "东部新城核心区以东片区C1-6#地块邱隘镇九年一贯制学校工程", + serial_number = 20, + type = 0 + }, + new + { + Id = "1e9371d1-8b01-4c55-9431-000a3fffc0b4", + IsDeleted = 0ul, + name = "宁波大红鹰学院象山影视学院工程(二期)", + serial_number = 21, + type = 0 + }, + new + { + Id = "1f9ae2cf-c7c2-4a57-b678-b0fca4bf4959", + IsDeleted = 0ul, + name = "中国·浙江海洋运动中心(亚帆中心)工程", + serial_number = 22, + type = 0 + }, + new + { + Id = "c0e62c16-bf78-4d82-8dc6-442c1f0c0adc", + IsDeleted = 0ul, + name = "宁波市黄湖监狱迁建项目I标段、Ⅱ标段、Ⅲ标段、装修工程", + serial_number = 23, + type = 0 + }, + new + { + Id = "8be3e94f-0b17-4c97-9b9d-021b922fc6a2", + IsDeleted = 0ul, + name = "新潮塘区块九年一贯制学校新建工程", + serial_number = 24, + type = 0 + }, + new + { + Id = "fad24cde-bd7c-40cf-a7e2-ce46e396f489", + IsDeleted = 0ul, + name = "顾国和中学(爱国中学)工程(门卫、教学楼A-C、教学楼D、综合楼、食堂)", + serial_number = 25, + type = 0 + }, + new + { + Id = "6e52bfbf-4095-4189-b2f7-37eb1ced0ec9", + IsDeleted = 0ul, + name = "庄市街道同心湖幼儿园(暂名)工程", + serial_number = 26, + type = 0 + }, + new + { + Id = "dc22af65-c261-4245-b319-8908fc2e77f6", + IsDeleted = 0ul, + name = "中科院上海药物所宁波临床前研究中心", + serial_number = 27, + type = 0 + }, + new + { + Id = "09955588-0f17-479b-ba4b-c1f90ca58a85", + IsDeleted = 0ul, + name = "宁波科学中学新建项目", + serial_number = 28, + type = 0 + }, + new + { + Id = "39d80b14-8735-4710-bacb-432fd12dc309", + IsDeleted = 0ul, + name = "白沙路街道后油车股份经济合作社综合服务楼", + serial_number = 29, + type = 0 + }, + new + { + Id = "aa0e4017-2304-431a-b5ed-b725a77cb810", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅴ标段", + serial_number = 30, + type = 1 + }, + new + { + Id = "0c3672ab-23f4-4a8d-9de3-97fe401f3aee", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅵ标段", + serial_number = 31, + type = 1 + }, + new + { + Id = "e7ccba65-414f-4501-af69-4d6722e21d86", + IsDeleted = 0ul, + name = "三官堂大桥及接线(江南路至中官西路)工程(主桥)", + serial_number = 32, + type = 1 + }, + new + { + Id = "68f25778-4b2f-4a91-a2dc-640a0622f389", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅳ标段", + serial_number = 33, + type = 1 + }, + new + { + Id = "03265409-52b0-43dc-85b5-0698a0367211", + IsDeleted = 0ul, + name = "杭甬复线威海互通连接线一期工程(施工)Ⅲ标段", + serial_number = 34, + type = 1 + }, + new + { + Id = "c12f36c4-6887-4beb-8b90-1c5b68006af1", + IsDeleted = 0ul, + name = "甬江北岸大庆北路(湖东路-怡西街)道路工程I标段", + serial_number = 35, + type = 1 + }, + new + { + Id = "1d6aafe6-457e-4143-82fe-b1334bdabc45", + IsDeleted = 0ul, + name = "机场快速路南延(鄞州大道-绕城高速)工程施工Ⅰ标段", + serial_number = 36, + type = 1 + }, + new + { + Id = "54e26c4e-ffc4-4493-bb4c-3f3f66f46019", + IsDeleted = 0ul, + name = "永泰公园", + serial_number = 37, + type = 1 + }, + new + { + Id = "2bc85650-b86d-44de-a152-970928376305", + IsDeleted = 0ul, + name = "三官堂大桥及接线(江南路至中官西路)工程I标", + serial_number = 38, + type = 1 + }, + new + { + Id = "5a5dffca-ad94-476a-a25d-b68df2fd4908", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅷ标段", + serial_number = 39, + type = 1 + }, + new + { + Id = "c970ff56-ff36-4c64-a8a4-832c92e2f4bf", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅶ标段", + serial_number = 40, + type = 1 + }, + new + { + Id = "9742d735-e769-4355-8b26-5067a35b75bf", + IsDeleted = 0ul, + name = "西二环北延工程(明州路-中横线)", + serial_number = 41, + type = 1 + }, + new + { + Id = "35870caf-f7f5-4302-95d9-fb0c05462c40", + IsDeleted = 0ul, + name = "鄞奉路(新典路-三孔碶桥)道路工程", + serial_number = 42, + type = 1 + }, + new + { + Id = "b9690320-4839-40bb-8703-3b2724ce0578", + IsDeleted = 0ul, + name = "会展路(盛梅路-沙洲路)及南侧河道绿地工程", + serial_number = 43, + type = 1 + }, + new + { + Id = "7e1989e6-bf05-4fbc-b397-dc74069d301d", + IsDeleted = 0ul, + name = "宁波杭州湾新区南部新城海泉湾规划三路市政工程", + serial_number = 44, + type = 1 + }, + new + { + Id = "016e39e3-6fb9-4d8f-a5f8-2478b4e389e1", + IsDeleted = 0ul, + name = "杭州湾新区滨海新城启动区银滩路等六条路市政工程", + serial_number = 45, + type = 1 + }, + new + { + Id = "b38cedeb-f524-44ef-be8f-6cd1f7c54b59", + IsDeleted = 0ul, + name = "杭甬复线威海互通连接线一期工程(施工)Ⅰ标段", + serial_number = 46, + type = 1 + }, + new + { + Id = "8a5fc13a-d5aa-44b2-99dd-c2834ac00520", + IsDeleted = 0ul, + name = "杭甬复线威海互通连接线一期工程(施工)Ⅱ标段", + serial_number = 47, + type = 1 + }, + new + { + Id = "49dd82e4-b9b9-4d26-ae87-9f9092f367d1", + IsDeleted = 0ul, + name = "慈溪市北部污水处理厂提标改造工程", + serial_number = 48, + type = 1 + }, + new + { + Id = "a4d7196d-b9f3-439f-8258-4da4c04b177a", + IsDeleted = 0ul, + name = "通途路(世纪大道~东外环)综合管廊工程施工Ⅱ标段", + serial_number = 49, + type = 1 + }, + new + { + Id = "7f046001-a58d-400e-b97d-d4b55f79b6eb", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅲ标段", + serial_number = 50, + type = 1 + }, + new + { + Id = "bddeb30e-59bb-462b-bb69-5fe557b20614", + IsDeleted = 0ul, + name = "梅山保税港区港湾路(二期)工程", + serial_number = 51, + type = 1 + }, + new + { + Id = "cb5725b1-06cd-42da-abc4-c4412cecb627", + IsDeleted = 0ul, + name = "三官堂大桥及接线(江南路至中官西路)工程接线部分II标段", + serial_number = 52, + type = 1 + }, + new + { + Id = "19a78c25-d576-4fa0-872e-ae431a27f1fe", + IsDeleted = 0ul, + name = "霞浦污水泵站污水压力管工程", + serial_number = 53, + type = 1 + }, + new + { + Id = "92d860ce-94f5-4468-976d-6f4bc6d3a005", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅱ标段", + serial_number = 54, + type = 1 + }, + new + { + Id = "320907e0-5092-467c-ad38-9883af7e7694", + IsDeleted = 0ul, + name = "新长邱线拓宽改造工程(施工)2标段", + serial_number = 55, + type = 1 + }, + new + { + Id = "9f9d3b0f-0a9d-48cf-98a3-9ec2d805e8a9", + IsDeleted = 0ul, + name = "姚江东路(环城北路-机场路)工程I标段", + serial_number = 56, + type = 1 + }, + new + { + Id = "74c4cf12-880d-49f1-bd53-047bd7f858ac", + IsDeleted = 0ul, + name = "铁路平改立新大路(329国道 -金牌公路)工程", + serial_number = 57, + type = 1 + }, + new + { + Id = "37a5cc48-fe51-4493-b5bd-2dd0b42088b3", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅸ标段", + serial_number = 58, + type = 1 + }, + new + { + Id = "9ef49c31-8224-4c03-91e8-821d7b36b377", + IsDeleted = 0ul, + name = "姚江南岸滨江休闲带(机场路-青林渡路)工程", + serial_number = 59, + type = 1 + }, + new + { + Id = "8424686e-6e8a-49ca-b1db-8635ebda2157", + IsDeleted = 0ul, + name = "宁波北仑柴桥净化水厂EPC总承包项目", + serial_number = 60, + type = 1 + }, + new + { + Id = "44eebc4d-b467-477b-8c01-65931593722a", + IsDeleted = 0ul, + name = "沿山干河、陈渡界北三河周边剩余地块绿带工程", + serial_number = 61, + type = 1 + }, + new + { + Id = "5c4796db-5b4a-4259-b8b1-d89846d984ee", + IsDeleted = 0ul, + name = "铸锋路(康庄北路-通园路)拓宽改建工程Ⅱ标段", + serial_number = 62, + type = 1 + }, + new + { + Id = "a4054e2d-7f81-411e-8673-7b05938654f7", + IsDeleted = 0ul, + name = "柴桥临港产业园横二路(纬中路-环区路)工程", + serial_number = 63, + type = 1 + }, + new + { + Id = "85f873b8-ae62-4e5a-bab8-92332304368a", + IsDeleted = 0ul, + name = "机场快速路南延工程(绕城高速至岳林东路南)施工Ⅰ标段", + serial_number = 64, + type = 1 + }, + new + { + Id = "5e0e10fa-a4cc-4a7f-b5a5-9b0ca0e0a9af", + IsDeleted = 0ul, + name = "宁波杭州湾新区南部新城海泉湾博华路市政工程项目/宁波杭州湾新区南部新城海泉湾规划二路市政工程项目", + serial_number = 65, + type = 1 + }, + new + { + Id = "562be9ce-e9fd-4d81-b8a2-636fbc25d9c1", + IsDeleted = 0ul, + name = "宁波杭州湾新区海川大道(七塘公路—滨海一路)市政工程标段Ⅰ", + serial_number = 66, + type = 1 + }, + new + { + Id = "d52f2db9-07a5-4b77-add5-65c3b0a021e1", + IsDeleted = 0ul, + name = "梅景路改造(冬青路-渡驾桥江)工程", + serial_number = 67, + type = 1 + }, + new + { + Id = "a9be40e3-99b3-4d94-aaaa-92711f853075", + IsDeleted = 0ul, + name = "云飞路三期(康庄南路-长岛花园东侧路)工 程", + serial_number = 68, + type = 1 + }, + new + { + Id = "9b654b10-36d8-4530-8390-1406dc38bd84", + IsDeleted = 0ul, + name = "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)一标段", + serial_number = 69, + type = 1 + }, + new + { + Id = "594b2558-3c4d-4af5-a79e-17c74886b0b9", + IsDeleted = 0ul, + name = "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)二标段", + serial_number = 70, + type = 1 + }, + new + { + Id = "a3667aa7-9403-4cc6-a85e-42b96815ac32", + IsDeleted = 0ul, + name = "灵岩山路东延及沿山河南路延伸段工程一期", + serial_number = 71, + type = 1 + }, + new + { + Id = "6e8d85df-e9ed-4386-9b15-7c19eaccb199", + IsDeleted = 0ul, + name = "慈溪高新区基础设施建设四期", + serial_number = 72, + type = 1 + }, + new + { + Id = "996d15ac-467d-4ff8-8935-76517cc84fb7", + IsDeleted = 0ul, + name = "慈溪滨海经济开发区龙山滨海新城蓬苑路(横五路-横四路)工程", + serial_number = 73, + type = 1 + }, + new + { + Id = "91fd6b72-a524-480d-aadf-6e3bae73fbcb", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4001标段(翠柏里站)施工", + serial_number = 74, + type = 2 + }, + new + { + Id = "051a42c4-d157-47db-9887-12d5ea917922", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4011标段施工", + serial_number = 75, + type = 2 + }, + new + { + Id = "a25b1db3-23a2-4ea5-b10c-f020325c292f", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程供电系统安装施工Ⅱ标段", + serial_number = 76, + type = 2 + }, + new + { + Id = "5a9e2016-1c56-4435-8aed-4221bff231da", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第一批)TJ4015标段施工", + serial_number = 77, + type = 2 + }, + new + { + Id = "9c670713-7d5f-4372-ab7c-246e8e6dd3cf", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4013标段施工", + serial_number = 78, + type = 2 + }, + new + { + Id = "e4f7391b-a0a4-48d0-a803-4be81e52bbb9", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程JDSG4006标段车站机电安装施工", + serial_number = 79, + type = 2 + }, + new + { + Id = "d7c8a941-e37a-4889-b862-2b4c2fb8a992", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第四批)TJ4008标段施工", + serial_number = 80, + type = 2 + }, + new + { + Id = "1ed52273-3c72-4f79-919c-0c4020e4cdf3", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第四批)TJ4017标段施工", + serial_number = 81, + type = 2 + }, + new + { + Id = "aa28f286-cc5d-4051-978d-43ef4014cf5e", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4016标", + serial_number = 82, + type = 2 + }, + new + { + Id = "a3f6eea4-0349-4ddd-bfa7-33c0427bc90a", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程地下段轨道工程施工Ⅱ标段", + serial_number = 83, + type = 2 + }, + new + { + Id = "c04fa383-a9b0-47e4-a91c-9f1b657ac55b", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第二批)TJ4004标段施工", + serial_number = 84, + type = 2 + }, + new + { + Id = "40b27864-99c0-4d04-889c-5f9ff17cf726", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4018标", + serial_number = 85, + type = 2 + }, + new + { + Id = "b05f4d26-1b04-4a23-a295-8848ce4aa73e", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4012标段施工", + serial_number = 86, + type = 2 + }, + new + { + Id = "424b6a6a-8e16-4e5e-936b-25a73a3c244b", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第五批)TJ4007标段施工", + serial_number = 87, + type = 2 + }, + new + { + Id = "1a317eb0-a5fd-420a-b273-ca9d6a006921", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程地下段轨道工程施工I标段", + serial_number = 88, + type = 2 + }, + new + { + Id = "8fce8773-1eb4-4031-b9bd-60ce0fab8c18", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程JDSG4004标段车站机电安装施工", + serial_number = 89, + type = 2 + }, + new + { + Id = "d25f90c3-8125-4821-86cf-fbd3b879dd4b", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第四批)TJ4003标段施工", + serial_number = 90, + type = 2 + }, + new + { + Id = "25d0bc9e-30db-4768-9996-624312a0450c", + IsDeleted = 0ul, + name = "协丰220千伏变电站工程", + serial_number = 91, + type = 3 + }, + new + { + Id = "1d3333dd-ed50-4dcc-b210-2d44190febde", + IsDeleted = 0ul, + name = "新乐220千伏变电站整体改造工程", + serial_number = 92, + type = 3 + }, + new + { + Id = "b23702d5-9c73-4c79-aa63-fe2245f4d65d", + IsDeleted = 0ul, + name = "38省道宁海桥头胡至深甽段改建工程", + serial_number = 93, + type = 4 + }, + new + { + Id = "88909223-8273-4b3d-9b56-ba32e038ed35", + IsDeleted = 0ul, + name = "71省道盛宁线东陈至茅洋段改建工程", + serial_number = 94, + type = 4 + }, + new + { + Id = "f3ed2aeb-ac40-4580-bb37-008bea343731", + IsDeleted = 0ul, + name = "明州大道(洞桥至云龙段)工程第IV-2合同段", + serial_number = 95, + type = 4 + }, + new + { + Id = "4743c1eb-7135-4ea9-81f8-cf6d825e0ad5", + IsDeleted = 0ul, + name = "沿海中线北仑郭巨段(郭巨互通-北堤互通)拓宽工程", + serial_number = 96, + type = 4 + }, + new + { + Id = "4dcf10bd-93e6-43aa-8e18-9410392a8701", + IsDeleted = 0ul, + name = "梅山磨头碶移位及配套河道工程", + serial_number = 97, + type = 5 + }, + new + { + Id = "88b56348-6d04-45b4-8dc5-ba4c3b5303a7", + IsDeleted = 0ul, + name = "余姚市海塘除险治江围涂四期工程--临海北顺堤堤顶道路、堤岸防护及河道配套工程", + serial_number = 98, + type = 5 + }, + new + { + Id = "f2dc17f8-7bd1-4f6e-b16a-674e1ec34ed0", + IsDeleted = 0ul, + name = "庄桥机场周边区域水环境治理工程(江北大河整治工程二期庄桥段)", + serial_number = 99, + type = 5 + }, + new + { + Id = "64d400e2-0247-4c74-a02e-f32753292095", + IsDeleted = 0ul, + name = "掌起镇任佳溪村防洪分流(小流域治理)工程", + serial_number = 100, + type = 5 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysDictData", b => + { + b.HasOne("Ewide.Core.SysDictType", "SysDictType") + .WithMany("SysDictDatas") + .HasForeignKey("TypeId"); + + b.Navigation("SysDictType"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => + { + b.HasOne("Ewide.Core.SysEmp", "SysEmp") + .WithMany() + .HasForeignKey("SysEmpId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany() + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysPos", "SysPos") + .WithMany() + .HasForeignKey("SysPosId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysEmp"); + + b.Navigation("SysOrg"); + + b.Navigation("SysPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpPos", b => + { + b.HasOne("Ewide.Core.SysEmp", "SysEmp") + .WithMany("SysEmpPos") + .HasForeignKey("SysEmpId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysPos", "SysPos") + .WithMany("SysEmpPos") + .HasForeignKey("SysPosId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysEmp"); + + b.Navigation("SysPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysOrgs") + .HasForeignKey("AreaCode"); + + b.Navigation("Area"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleArea", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysRoleAreas") + .HasForeignKey("AreaCode") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleAreas") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Area"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => + { + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany("SysRoleDataScopes") + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleDataScopes") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysOrg"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => + { + b.HasOne("Ewide.Core.SysMenu", "SysMenu") + .WithMany("SysRoleMenus") + .HasForeignKey("SysMenuId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleMenus") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysMenu"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserArea", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysUserAreas") + .HasForeignKey("AreaCode") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserAreas") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Area"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => + { + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany("SysUserDataScopes") + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserDataScopes") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysOrg"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserRole", b => + { + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysUserRoles") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserRoles") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysRole"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysAreaCode", b => + { + b.Navigation("SysOrgs"); + + b.Navigation("SysRoleAreas"); + + b.Navigation("SysUserAreas"); + }); + + modelBuilder.Entity("Ewide.Core.SysDictType", b => + { + b.Navigation("SysDictDatas"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmp", b => + { + b.Navigation("SysEmpPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysMenu", b => + { + b.Navigation("SysRoleMenus"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.Navigation("SysRoleDataScopes"); + + b.Navigation("SysUserDataScopes"); + }); + + modelBuilder.Entity("Ewide.Core.SysPos", b => + { + b.Navigation("SysEmpPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysRole", b => + { + b.Navigation("SysRoleAreas"); + + b.Navigation("SysRoleDataScopes"); + + b.Navigation("SysRoleMenus"); + + b.Navigation("SysUserRoles"); + }); + + modelBuilder.Entity("Ewide.Core.SysUser", b => + { + b.Navigation("SysUserAreas"); + + b.Navigation("SysUserDataScopes"); + + b.Navigation("SysUserRoles"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330105408_v1.0.2.cs b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330105408_v1.0.2.cs new file mode 100644 index 0000000..01b4756 --- /dev/null +++ b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330105408_v1.0.2.cs @@ -0,0 +1,399 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Ewide.Database.Migrations.Migrations +{ + public partial class v102 : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "08c8ad90-b44f-4270-890c-8447f086d579"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "0eae9b66-e00d-42cf-b41f-d6b7ebdff800"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "1b4f9504-f486-4f8f-9588-24357b9ad0e0"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "355563e6-615d-443a-bec6-d6247f4dbaf7"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "36a50b18-b513-4f89-9dab-a0a10031ec48"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "3d135a79-97bf-4f10-bba5-7bed90e911a3"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "439260c8-54de-48c3-977d-fe2c11ae7fe6"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "510e42da-856e-4d93-a099-d7e998dfbd7a"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "63e8a280-90c4-4c9b-9572-74f9d4278cd4"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "86c1a965-3229-46d6-a034-de4a06655d55"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "8db1378a-2deb-4d13-b49f-9490dd1ffd1d"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "90234cce-2f80-40cd-922e-d9d5ccd4a3c2"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "9a21e83c-06ae-44bc-9b9b-cecd92a0d606"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "c5401037-33b6-433f-9dd2-054dfb93a09e"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "d3674cdd-142f-4549-9766-4d2d3991cd76"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "e7f6f049-6bff-4479-b7fb-845c4db9bd01"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "eb83bc26-e942-4b98-8adc-02688bf1a32d"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "f6afc724-1b88-4a70-8714-d047c20928a4"); + + migrationBuilder.CreateTable( + name: "Projects", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + serial_number = table.Column(type: "int", nullable: false, comment: "项目序号"), + name = table.Column(type: "longtext CHARACTER SET utf8mb4", nullable: true, comment: "工程名称"), + type = 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: "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_Projects", x => x.Id); + }); + + migrationBuilder.InsertData( + table: "Experts", + columns: new[] { "Id", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "login_code" }, + values: new object[,] + { + { "c6ef020b-1073-4250-b862-7190e560eb45", null, null, null, 0ul, null, null, null, "0WDP23" }, + { "43cd3a6d-ddf1-4745-b140-e88ce8c744b6", null, null, null, 0ul, null, null, null, "QKKQJ3" }, + { "21fe40e4-9cb1-4993-910b-2b3c7c4d6d68", null, null, null, 0ul, null, null, null, "CBKQC1" }, + { "c041100b-7aee-4823-b2bb-cd802fdd60a2", null, null, null, 0ul, null, null, null, "DVLXMV" }, + { "5337276d-438e-42d5-b9d1-d849709da702", null, null, null, 0ul, null, null, null, "XFMKHX" }, + { "83f93ea6-bd79-4b6d-858d-156936fd7607", null, null, null, 0ul, null, null, null, "TL5FKN" }, + { "754d5f4b-8cef-4745-8e1c-9cec9cc41853", null, null, null, 0ul, null, null, null, "G9QFPQ" }, + { "45048c78-3ec8-49d1-bfb4-e1225d491562", null, null, null, 0ul, null, null, null, "Y0QT57" }, + { "d11d2ec7-3760-4b7d-bc8b-e0d3696f52d4", null, null, null, 0ul, null, null, null, "FQA43L" }, + { "a7f19131-4208-449b-9557-2ef5a580ac02", null, null, null, 0ul, null, null, null, "GT9NFN" }, + { "2c657c98-a68e-42d6-ac51-f73b283cf913", null, null, null, 0ul, null, null, null, "FRCYF7" }, + { "439ced63-e210-4171-b24a-47876a7921f7", null, null, null, 0ul, null, null, null, "X6HDHP" }, + { "cae38479-e03f-4d18-aee0-ef78cd654ba6", null, null, null, 0ul, null, null, null, "9Q5SJ3" }, + { "7706b8b3-191f-41f4-a2e1-a201f6c690c3", null, null, null, 0ul, null, null, null, "GQKLL2" }, + { "2a08cae0-ddff-42e0-9435-75651f7ff2d4", null, null, null, 0ul, null, null, null, "PRU0AP" }, + { "9e97207c-eaed-4033-921b-c272d3cb38cc", null, null, null, 0ul, null, null, null, "EGS0XD" }, + { "717be2ce-0732-4e71-b6c2-6b156ea99f89", null, null, null, 0ul, null, null, null, "XY1ZW3" }, + { "2155e5a0-d6e9-4273-81d1-750d41bb1684", null, null, null, 0ul, null, null, null, "HG1M4D" }, + { "fdf47078-a1ec-4582-95e4-f9ab4f1f1c91", null, null, null, 0ul, null, null, null, "NAK68F" }, + { "90f1c279-d95c-4bf3-85d2-c2d0d67959a2", null, null, null, 0ul, null, null, null, "YSPXPG" } + }); + + migrationBuilder.InsertData( + table: "Projects", + columns: new[] { "Id", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "name", "serial_number", "type" }, + values: new object[,] + { + { "5e0e10fa-a4cc-4a7f-b5a5-9b0ca0e0a9af", null, null, null, 0ul, null, null, null, "宁波杭州湾新区南部新城海泉湾博华路市政工程项目/宁波杭州湾新区南部新城海泉湾规划二路市政工程项目", 65, 1 }, + { "562be9ce-e9fd-4d81-b8a2-636fbc25d9c1", null, null, null, 0ul, null, null, null, "宁波杭州湾新区海川大道(七塘公路—滨海一路)市政工程标段Ⅰ", 66, 1 }, + { "d52f2db9-07a5-4b77-add5-65c3b0a021e1", null, null, null, 0ul, null, null, null, "梅景路改造(冬青路-渡驾桥江)工程", 67, 1 }, + { "a9be40e3-99b3-4d94-aaaa-92711f853075", null, null, null, 0ul, null, null, null, "云飞路三期(康庄南路-长岛花园东侧路)工 程", 68, 1 }, + { "6e8d85df-e9ed-4386-9b15-7c19eaccb199", null, null, null, 0ul, null, null, null, "慈溪高新区基础设施建设四期", 72, 1 }, + { "594b2558-3c4d-4af5-a79e-17c74886b0b9", null, null, null, 0ul, null, null, null, "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)二标段", 70, 1 }, + { "a3667aa7-9403-4cc6-a85e-42b96815ac32", null, null, null, 0ul, null, null, null, "灵岩山路东延及沿山河南路延伸段工程一期", 71, 1 }, + { "85f873b8-ae62-4e5a-bab8-92332304368a", null, null, null, 0ul, null, null, null, "机场快速路南延工程(绕城高速至岳林东路南)施工Ⅰ标段", 64, 1 }, + { "9b654b10-36d8-4530-8390-1406dc38bd84", null, null, null, 0ul, null, null, null, "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)一标段", 69, 1 }, + { "a4054e2d-7f81-411e-8673-7b05938654f7", null, null, null, 0ul, null, null, null, "柴桥临港产业园横二路(纬中路-环区路)工程", 63, 1 }, + { "19a78c25-d576-4fa0-872e-ae431a27f1fe", null, null, null, 0ul, null, null, null, "霞浦污水泵站污水压力管工程", 53, 1 }, + { "44eebc4d-b467-477b-8c01-65931593722a", null, null, null, 0ul, null, null, null, "沿山干河、陈渡界北三河周边剩余地块绿带工程", 61, 1 }, + { "8424686e-6e8a-49ca-b1db-8635ebda2157", null, null, null, 0ul, null, null, null, "宁波北仑柴桥净化水厂EPC总承包项目", 60, 1 }, + { "9ef49c31-8224-4c03-91e8-821d7b36b377", null, null, null, 0ul, null, null, null, "姚江南岸滨江休闲带(机场路-青林渡路)工程", 59, 1 }, + { "37a5cc48-fe51-4493-b5bd-2dd0b42088b3", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅸ标段", 58, 1 }, + { "74c4cf12-880d-49f1-bd53-047bd7f858ac", null, null, null, 0ul, null, null, null, "铁路平改立新大路(329国道 -金牌公路)工程", 57, 1 }, + { "9f9d3b0f-0a9d-48cf-98a3-9ec2d805e8a9", null, null, null, 0ul, null, null, null, "姚江东路(环城北路-机场路)工程I标段", 56, 1 }, + { "320907e0-5092-467c-ad38-9883af7e7694", null, null, null, 0ul, null, null, null, "新长邱线拓宽改造工程(施工)2标段", 55, 1 }, + { "92d860ce-94f5-4468-976d-6f4bc6d3a005", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅱ标段", 54, 1 }, + { "996d15ac-467d-4ff8-8935-76517cc84fb7", null, null, null, 0ul, null, null, null, "慈溪滨海经济开发区龙山滨海新城蓬苑路(横五路-横四路)工程", 73, 1 }, + { "cb5725b1-06cd-42da-abc4-c4412cecb627", null, null, null, 0ul, null, null, null, "三官堂大桥及接线(江南路至中官西路)工程接线部分II标段", 52, 1 }, + { "5c4796db-5b4a-4259-b8b1-d89846d984ee", null, null, null, 0ul, null, null, null, "铸锋路(康庄北路-通园路)拓宽改建工程Ⅱ标段", 62, 1 }, + { "91fd6b72-a524-480d-aadf-6e3bae73fbcb", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4001标段(翠柏里站)施工", 74, 2 }, + { "c04fa383-a9b0-47e4-a91c-9f1b657ac55b", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第二批)TJ4004标段施工", 84, 2 }, + { "a25b1db3-23a2-4ea5-b10c-f020325c292f", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程供电系统安装施工Ⅱ标段", 76, 2 }, + { "88b56348-6d04-45b4-8dc5-ba4c3b5303a7", null, null, null, 0ul, null, null, null, "余姚市海塘除险治江围涂四期工程--临海北顺堤堤顶道路、堤岸防护及河道配套工程", 98, 5 }, + { "4dcf10bd-93e6-43aa-8e18-9410392a8701", null, null, null, 0ul, null, null, null, "梅山磨头碶移位及配套河道工程", 97, 5 }, + { "4743c1eb-7135-4ea9-81f8-cf6d825e0ad5", null, null, null, 0ul, null, null, null, "沿海中线北仑郭巨段(郭巨互通-北堤互通)拓宽工程", 96, 4 }, + { "f3ed2aeb-ac40-4580-bb37-008bea343731", null, null, null, 0ul, null, null, null, "明州大道(洞桥至云龙段)工程第IV-2合同段", 95, 4 }, + { "88909223-8273-4b3d-9b56-ba32e038ed35", null, null, null, 0ul, null, null, null, "71省道盛宁线东陈至茅洋段改建工程", 94, 4 }, + { "b23702d5-9c73-4c79-aa63-fe2245f4d65d", null, null, null, 0ul, null, null, null, "38省道宁海桥头胡至深甽段改建工程", 93, 4 }, + { "1d3333dd-ed50-4dcc-b210-2d44190febde", null, null, null, 0ul, null, null, null, "新乐220千伏变电站整体改造工程", 92, 3 }, + { "25d0bc9e-30db-4768-9996-624312a0450c", null, null, null, 0ul, null, null, null, "协丰220千伏变电站工程", 91, 3 }, + { "d25f90c3-8125-4821-86cf-fbd3b879dd4b", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第四批)TJ4003标段施工", 90, 2 }, + { "8fce8773-1eb4-4031-b9bd-60ce0fab8c18", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程JDSG4004标段车站机电安装施工", 89, 2 }, + { "051a42c4-d157-47db-9887-12d5ea917922", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4011标段施工", 75, 2 }, + { "1a317eb0-a5fd-420a-b273-ca9d6a006921", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程地下段轨道工程施工I标段", 88, 2 }, + { "b05f4d26-1b04-4a23-a295-8848ce4aa73e", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4012标段施工", 86, 2 }, + { "40b27864-99c0-4d04-889c-5f9ff17cf726", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4018标", 85, 2 }, + { "bddeb30e-59bb-462b-bb69-5fe557b20614", null, null, null, 0ul, null, null, null, "梅山保税港区港湾路(二期)工程", 51, 1 }, + { "a3f6eea4-0349-4ddd-bfa7-33c0427bc90a", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程地下段轨道工程施工Ⅱ标段", 83, 2 }, + { "aa28f286-cc5d-4051-978d-43ef4014cf5e", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4016标", 82, 2 }, + { "1ed52273-3c72-4f79-919c-0c4020e4cdf3", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第四批)TJ4017标段施工", 81, 2 }, + { "d7c8a941-e37a-4889-b862-2b4c2fb8a992", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第四批)TJ4008标段施工", 80, 2 }, + { "e4f7391b-a0a4-48d0-a803-4be81e52bbb9", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程JDSG4006标段车站机电安装施工", 79, 2 }, + { "9c670713-7d5f-4372-ab7c-246e8e6dd3cf", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4013标段施工", 78, 2 }, + { "5a9e2016-1c56-4435-8aed-4221bff231da", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第一批)TJ4015标段施工", 77, 2 }, + { "424b6a6a-8e16-4e5e-936b-25a73a3c244b", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第五批)TJ4007标段施工", 87, 2 }, + { "7f046001-a58d-400e-b97d-d4b55f79b6eb", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅲ标段", 50, 1 }, + { "c970ff56-ff36-4c64-a8a4-832c92e2f4bf", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅶ标段", 40, 1 }, + { "49dd82e4-b9b9-4d26-ae87-9f9092f367d1", null, null, null, 0ul, null, null, null, "慈溪市北部污水处理厂提标改造工程", 48, 1 }, + { "1e9371d1-8b01-4c55-9431-000a3fffc0b4", null, null, null, 0ul, null, null, null, "宁波大红鹰学院象山影视学院工程(二期)", 21, 0 }, + { "23a38e3e-a77c-463c-902e-02088707d1ca", null, null, null, 0ul, null, null, null, "东部新城核心区以东片区C1-6#地块邱隘镇九年一贯制学校工程", 20, 0 }, + { "62eb67a1-2584-4b9e-b663-9c6c1b700d42", null, null, null, 0ul, null, null, null, "新能源技术与材料综合研发平台- 核用碳化硅纤维及复合材料研发及应用平台项目", 19, 0 }, + { "f640a90e-71c1-4142-afb4-b9d68f9ac08f", null, null, null, 0ul, null, null, null, "宁波海关宁海办事处检测报关代理服务中心项目", 18, 0 }, + { "4c9d4677-539c-45c8-8885-45f9d2c1c15e", null, null, null, 0ul, null, null, null, "宁波市残疾人康复中心(宁波市康复医院)扩建工程", 17, 0 }, + { "056e05e3-2ae5-4db5-b976-f4a1809a4d1a", null, null, null, 0ul, null, null, null, "北仑外国语学校工程", 16, 0 }, + { "ef61f197-b194-4190-ab74-f5f78c160bd3", null, null, null, 0ul, null, null, null, "慈溪市明月湖幼儿园", 15, 0 }, + { "62696ca2-719e-41df-8bad-e182efe84963", null, null, null, 0ul, null, null, null, "宁波市海曙区段塘学校扩建工程", 14, 0 }, + { "9c16ca23-f3d8-44c9-92d7-d08d6b64e4f9", null, null, null, 0ul, null, null, null, "镇海区中心学校新城校区项目", 13, 0 }, + { "2b257857-4905-4176-bebe-bc8b99eef73b", null, null, null, 0ul, null, null, null, "庄市中心学校迁建工程", 12, 0 }, + { "5c504c5d-9d69-4cf8-a483-c8699f0b517e", null, null, null, 0ul, null, null, null, "余姚市人民医院肿瘤治疗中心项目", 11, 0 }, + { "21a336c4-f730-4244-ae5a-66d4e0f8f356", null, null, null, 0ul, null, null, null, "北京航空航天大学宁波创新研究院(研究生院和国际交流中心)一期(实验用房)", 10, 0 }, + { "bb3eee7a-4846-4177-b377-fd2804d4db72", null, null, null, 0ul, null, null, null, "鄞州区钟公庙第二初级中学工程", 9, 0 }, + { "ecaf4b26-b27e-4eed-bbf2-0deaf52495fa", null, null, null, 0ul, null, null, null, "大庆北路地段配套学校(二期)", 8, 0 }, + { "8118f5fd-8082-4186-a5b4-32490cbadb19", null, null, null, 0ul, null, null, null, "宁波市职业技术教育中心学校(荷池校区) 改扩建项目", 7, 0 }, + { "686d2b36-30a8-47c4-9050-db601d8dcb8c", null, null, null, 0ul, null, null, null, "宁海县妇幼保健院保健大楼工程", 6, 0 }, + { "26f148e5-a44e-47d5-90aa-49136b1efb6d", null, null, null, 0ul, null, null, null, "慈城新城高中项目", 5, 0 }, + { "94e3b06e-2fa6-4830-8432-383305b237b8", null, null, null, 0ul, null, null, null, "太平鸟高新区男装办公楼项目", 4, 0 }, + { "03d59313-3e30-4345-920e-e21455c11228", null, null, null, 0ul, null, null, null, "高新区滨江绿带整治工程五期(翔海路—大东江)I标段", 3, 0 }, + { "3e458131-6318-4e27-935e-2e4a85c877b1", null, null, null, 0ul, null, null, null, "宁波诺丁汉大学图书馆及学习中心项目", 2, 0 }, + { "5921ad9e-7027-446d-aae3-899ad388404b", null, null, null, 0ul, null, null, null, "浙江纺织服装职业技术学院中英时尚设计学院综合楼项目", 1, 0 }, + { "1f9ae2cf-c7c2-4a57-b678-b0fca4bf4959", null, null, null, 0ul, null, null, null, "中国·浙江海洋运动中心(亚帆中心)工程", 22, 0 }, + { "c0e62c16-bf78-4d82-8dc6-442c1f0c0adc", null, null, null, 0ul, null, null, null, "宁波市黄湖监狱迁建项目I标段、Ⅱ标段、Ⅲ标段、装修工程", 23, 0 }, + { "8be3e94f-0b17-4c97-9b9d-021b922fc6a2", null, null, null, 0ul, null, null, null, "新潮塘区块九年一贯制学校新建工程", 24, 0 }, + { "fad24cde-bd7c-40cf-a7e2-ce46e396f489", null, null, null, 0ul, null, null, null, "顾国和中学(爱国中学)工程(门卫、教学楼A-C、教学楼D、综合楼、食堂)", 25, 0 }, + { "8a5fc13a-d5aa-44b2-99dd-c2834ac00520", null, null, null, 0ul, null, null, null, "杭甬复线威海互通连接线一期工程(施工)Ⅱ标段", 47, 1 }, + { "b38cedeb-f524-44ef-be8f-6cd1f7c54b59", null, null, null, 0ul, null, null, null, "杭甬复线威海互通连接线一期工程(施工)Ⅰ标段", 46, 1 }, + { "016e39e3-6fb9-4d8f-a5f8-2478b4e389e1", null, null, null, 0ul, null, null, null, "杭州湾新区滨海新城启动区银滩路等六条路市政工程", 45, 1 }, + { "7e1989e6-bf05-4fbc-b397-dc74069d301d", null, null, null, 0ul, null, null, null, "宁波杭州湾新区南部新城海泉湾规划三路市政工程", 44, 1 }, + { "b9690320-4839-40bb-8703-3b2724ce0578", null, null, null, 0ul, null, null, null, "会展路(盛梅路-沙洲路)及南侧河道绿地工程", 43, 1 }, + { "35870caf-f7f5-4302-95d9-fb0c05462c40", null, null, null, 0ul, null, null, null, "鄞奉路(新典路-三孔碶桥)道路工程", 42, 1 }, + { "9742d735-e769-4355-8b26-5067a35b75bf", null, null, null, 0ul, null, null, null, "西二环北延工程(明州路-中横线)", 41, 1 }, + { "f2dc17f8-7bd1-4f6e-b16a-674e1ec34ed0", null, null, null, 0ul, null, null, null, "庄桥机场周边区域水环境治理工程(江北大河整治工程二期庄桥段)", 99, 5 }, + { "5a5dffca-ad94-476a-a25d-b68df2fd4908", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅷ标段", 39, 1 }, + { "2bc85650-b86d-44de-a152-970928376305", null, null, null, 0ul, null, null, null, "三官堂大桥及接线(江南路至中官西路)工程I标", 38, 1 }, + { "a4d7196d-b9f3-439f-8258-4da4c04b177a", null, null, null, 0ul, null, null, null, "通途路(世纪大道~东外环)综合管廊工程施工Ⅱ标段", 49, 1 }, + { "54e26c4e-ffc4-4493-bb4c-3f3f66f46019", null, null, null, 0ul, null, null, null, "永泰公园", 37, 1 }, + { "c12f36c4-6887-4beb-8b90-1c5b68006af1", null, null, null, 0ul, null, null, null, "甬江北岸大庆北路(湖东路-怡西街)道路工程I标段", 35, 1 }, + { "03265409-52b0-43dc-85b5-0698a0367211", null, null, null, 0ul, null, null, null, "杭甬复线威海互通连接线一期工程(施工)Ⅲ标段", 34, 1 }, + { "68f25778-4b2f-4a91-a2dc-640a0622f389", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅳ标段", 33, 1 }, + { "e7ccba65-414f-4501-af69-4d6722e21d86", null, null, null, 0ul, null, null, null, "三官堂大桥及接线(江南路至中官西路)工程(主桥)", 32, 1 }, + { "0c3672ab-23f4-4a8d-9de3-97fe401f3aee", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅵ标段", 31, 1 }, + { "aa0e4017-2304-431a-b5ed-b725a77cb810", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅴ标段", 30, 1 }, + { "39d80b14-8735-4710-bacb-432fd12dc309", null, null, null, 0ul, null, null, null, "白沙路街道后油车股份经济合作社综合服务楼", 29, 0 }, + { "09955588-0f17-479b-ba4b-c1f90ca58a85", null, null, null, 0ul, null, null, null, "宁波科学中学新建项目", 28, 0 }, + { "dc22af65-c261-4245-b319-8908fc2e77f6", null, null, null, 0ul, null, null, null, "中科院上海药物所宁波临床前研究中心", 27, 0 }, + { "6e52bfbf-4095-4189-b2f7-37eb1ced0ec9", null, null, null, 0ul, null, null, null, "庄市街道同心湖幼儿园(暂名)工程", 26, 0 }, + { "1d6aafe6-457e-4143-82fe-b1334bdabc45", null, null, null, 0ul, null, null, null, "机场快速路南延(鄞州大道-绕城高速)工程施工Ⅰ标段", 36, 1 }, + { "64d400e2-0247-4c74-a02e-f32753292095", null, null, null, 0ul, null, null, null, "掌起镇任佳溪村防洪分流(小流域治理)工程", 100, 5 } + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "Projects"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "2155e5a0-d6e9-4273-81d1-750d41bb1684"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "21fe40e4-9cb1-4993-910b-2b3c7c4d6d68"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "2a08cae0-ddff-42e0-9435-75651f7ff2d4"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "2c657c98-a68e-42d6-ac51-f73b283cf913"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "439ced63-e210-4171-b24a-47876a7921f7"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "43cd3a6d-ddf1-4745-b140-e88ce8c744b6"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "45048c78-3ec8-49d1-bfb4-e1225d491562"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "5337276d-438e-42d5-b9d1-d849709da702"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "717be2ce-0732-4e71-b6c2-6b156ea99f89"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "754d5f4b-8cef-4745-8e1c-9cec9cc41853"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "7706b8b3-191f-41f4-a2e1-a201f6c690c3"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "83f93ea6-bd79-4b6d-858d-156936fd7607"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "90f1c279-d95c-4bf3-85d2-c2d0d67959a2"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "9e97207c-eaed-4033-921b-c272d3cb38cc"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "a7f19131-4208-449b-9557-2ef5a580ac02"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "c041100b-7aee-4823-b2bb-cd802fdd60a2"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "c6ef020b-1073-4250-b862-7190e560eb45"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "cae38479-e03f-4d18-aee0-ef78cd654ba6"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "d11d2ec7-3760-4b7d-bc8b-e0d3696f52d4"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "fdf47078-a1ec-4582-95e4-f9ab4f1f1c91"); + + migrationBuilder.InsertData( + table: "Experts", + columns: new[] { "Id", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "login_code" }, + values: new object[,] + { + { "f6afc724-1b88-4a70-8714-d047c20928a4", null, null, null, 0ul, null, null, null, "XQLGQ8" }, + { "63e8a280-90c4-4c9b-9572-74f9d4278cd4", null, null, null, 0ul, null, null, null, "WHM9CF" }, + { "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d", null, null, null, 0ul, null, null, null, "FNNUA9" }, + { "439260c8-54de-48c3-977d-fe2c11ae7fe6", null, null, null, 0ul, null, null, null, "ZFD5VL" }, + { "90234cce-2f80-40cd-922e-d9d5ccd4a3c2", null, null, null, 0ul, null, null, null, "A4P3RZ" }, + { "8db1378a-2deb-4d13-b49f-9490dd1ffd1d", null, null, null, 0ul, null, null, null, "2154MF" }, + { "9a21e83c-06ae-44bc-9b9b-cecd92a0d606", null, null, null, 0ul, null, null, null, "97GFZQ" }, + { "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0", null, null, null, 0ul, null, null, null, "SMBG3Q" }, + { "e7f6f049-6bff-4479-b7fb-845c4db9bd01", null, null, null, 0ul, null, null, null, "HCY26V" }, + { "355563e6-615d-443a-bec6-d6247f4dbaf7", null, null, null, 0ul, null, null, null, "K8H9PW" }, + { "d3674cdd-142f-4549-9766-4d2d3991cd76", null, null, null, 0ul, null, null, null, "DH1HCC" }, + { "3d135a79-97bf-4f10-bba5-7bed90e911a3", null, null, null, 0ul, null, null, null, "5MJQY7" }, + { "0eae9b66-e00d-42cf-b41f-d6b7ebdff800", null, null, null, 0ul, null, null, null, "XV8U1U" }, + { "08c8ad90-b44f-4270-890c-8447f086d579", null, null, null, 0ul, null, null, null, "8YCDD9" }, + { "36a50b18-b513-4f89-9dab-a0a10031ec48", null, null, null, 0ul, null, null, null, "JL022B" }, + { "c5401037-33b6-433f-9dd2-054dfb93a09e", null, null, null, 0ul, null, null, null, "TYVWMZ" }, + { "1b4f9504-f486-4f8f-9588-24357b9ad0e0", null, null, null, 0ul, null, null, null, "C6FSMT" }, + { "86c1a965-3229-46d6-a034-de4a06655d55", null, null, null, 0ul, null, null, null, "CWYB3P" }, + { "510e42da-856e-4d93-a099-d7e998dfbd7a", null, null, null, 0ul, null, null, null, "3GZDEW" }, + { "eb83bc26-e942-4b98-8adc-02688bf1a32d", null, null, null, 0ul, null, null, null, "KZS4WS" } + }); + } + } +} diff --git a/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330110215_v1.0.3.Designer.cs b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330110215_v1.0.3.Designer.cs new file mode 100644 index 0000000..036acd7 --- /dev/null +++ b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330110215_v1.0.3.Designer.cs @@ -0,0 +1,8090 @@ +// +using System; +using Ewide.EntityFramework.Core; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +namespace Ewide.Database.Migrations.Migrations +{ + [DbContext(typeof(DefaultDbContext))] + [Migration("20220330110215_v1.0.3")] + partial class v103 + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("Relational:MaxIdentifierLength", 64) + .HasAnnotation("ProductVersion", "5.0.15"); + + modelBuilder.Entity("Ewide.Core.SysApp", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Active") + .HasColumnType("bit") + .HasColumnName("Active") + .HasComment("是否默认激活"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Color") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标颜色"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Icon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_app"); + + b + .HasComment("系统应用表"); + + b.HasData( + new + { + Id = "8b2aeb5e-09a6-4afd-bcae-8ee8e5a1e6ec", + Active = 0ul, + Code = "busapp", + IsDeleted = 0ul, + Name = "业务应用", + Sort = 100, + Status = 0 + }, + new + { + Id = "d781b8f1-0d08-48c8-b7a5-ed75ddfa676c", + Active = 1ul, + Code = "system", + IsDeleted = 0ul, + Name = "系统管理", + Sort = 100, + Status = 0 + }, + new + { + Id = "850ab86f-cd6a-4d49-b920-77dfa5d78813", + Active = 0ul, + Code = "system_tool", + IsDeleted = 0ul, + Name = "系统工具", + Sort = 100, + Status = 0 + }, + new + { + Id = "05a32be5-82e8-423f-affa-e17232a63ee1", + Active = 0ul, + Code = "advanced", + IsDeleted = 0ul, + Name = "高级功能", + Sort = 100, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysAreaCode", b => + { + b.Property("Code") + .HasMaxLength(50) + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域编码"); + + b.Property("AdCode") + .HasMaxLength(50) + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("区域的行政编码"); + + b.Property("LevelType") + .HasColumnType("int") + .HasComment("类别"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("varchar(100) CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Note") + .HasMaxLength(1000) + .HasColumnType("varchar(1000) CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.HasKey("Code"); + + b.ToTable("sys_area_code"); + + b + .HasComment("区域表"); + + b.HasData( + new + { + Code = "3302", + AdCode = "3302", + LevelType = 1, + Name = "XX市", + Note = "XX市", + Sort = 0 + }, + new + { + Code = "330266", + AdCode = "330266", + LevelType = 2, + Name = "测试区", + Note = "测试区", + Sort = 100 + }, + new + { + Code = "330266001", + AdCode = "330266001", + LevelType = 3, + Name = "测试街道", + Note = "测试街道", + Sort = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysCodeGen", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AuthorName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("作者姓名"); + + b.Property("BusName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("业务名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("GenerateType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("生成方式"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NameSpace") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("命名空间"); + + b.Property("TableName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库表名"); + + b.Property("TablePrefix") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否移除表前缀"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_code_gen"); + + b + .HasComment("代码生成表"); + }); + + modelBuilder.Entity("Ewide.Core.SysCodeGenConfig", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CodeGenId") + .HasColumnType("varchar(36)") + .HasColumnName("CodeGenId") + .HasComment("代码生成主表ID"); + + b.Property("ColumnComment") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("字段描述"); + + b.Property("ColumnKey") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("主外键"); + + b.Property("ColumnName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库字段名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("DataType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库中类型"); + + b.Property("DictTypeCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("字典Code"); + + b.Property("EffectType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("作用类型"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NetType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment(".NET数据类型"); + + b.Property("QueryType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("查询方式"); + + b.Property("QueryWhether") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否是查询条件"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("WhetherAddUpdate") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("增改"); + + b.Property("WhetherCommon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否通用字段"); + + b.Property("WhetherRequired") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否必填"); + + b.Property("WhetherRetract") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列表是否缩进"); + + b.Property("WhetherTable") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列表显示"); + + b.HasKey("Id"); + + b.ToTable("sys_code_gen_config"); + + b + .HasComment("代码生成字段配置表"); + }); + + modelBuilder.Entity("Ewide.Core.SysConfig", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("GroupCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("常量所属分类的编码"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("SysFlag") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否是系统参数"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Value") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("属性值"); + + b.HasKey("Id"); + + b.ToTable("sys_config"); + + b + .HasComment("参数配置表"); + + b.HasData( + new + { + Id = "7c2765cd-d39b-4772-8d6c-0dbcdcfa1ff8", + Code = "DILON_JWT_SECRET", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "jwt密钥", + Remark = "(重要)jwt密钥,默认为空,自行设置", + Status = 0, + SysFlag = "Y", + Value = "xiaonuo" + }, + new + { + Id = "e3553657-14cf-4c26-ba7b-dbb4bfd4bc55", + Code = "DILON_DEFAULT_PASSWORD", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "默认密码", + Remark = "默认密码", + Status = 0, + SysFlag = "Y", + Value = "123456" + }, + new + { + Id = "2c677cd2-2a54-46c6-971d-f9fe20f101f3", + Code = "DILON_TOKEN_EXPIRE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "token过期时间", + Remark = "token过期时间(单位:秒)", + Status = 0, + SysFlag = "Y", + Value = "86400" + }, + new + { + Id = "8938506d-2e00-44e0-8592-48453d43f9f5", + Code = "DILON_SESSION_EXPIRE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "session会话过期时间", + Remark = "session会话过期时间(单位:秒)", + Status = 0, + SysFlag = "Y", + Value = "7200" + }, + new + { + Id = "beb2e9e7-f4d9-43b1-bfab-3557ea232f8d", + Code = "DILON_ALIYUN_SMS_ACCESSKEY_ID", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信keyId", + Remark = "阿里云短信keyId", + Status = 0, + SysFlag = "Y", + Value = "你的keyId" + }, + new + { + Id = "ead14cd0-9fd4-4fd6-b75c-239d8b2ebed8", + Code = "DILON_ALIYUN_SMS_ACCESSKEY_SECRET", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信secret", + Remark = "阿里云短信secret", + Status = 0, + SysFlag = "Y", + Value = "你的secret" + }, + new + { + Id = "beaaafc2-3fdf-42af-9b06-ead3a6dd6306", + Code = "DILON_ALIYUN_SMS_SIGN_NAME", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信签名", + Remark = "阿里云短信签名", + Status = 0, + SysFlag = "Y", + Value = "你的签名" + }, + new + { + Id = "e26a10cf-911a-4fe0-a113-76965be749a0", + Code = "DILON_ALIYUN_SMS_LOGIN_TEMPLATE_CODE", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信-登录模板号", + Remark = "阿里云短信-登录模板号", + Status = 0, + SysFlag = "Y", + Value = "SMS_1877123456" + }, + new + { + Id = "24d3f286-efca-49af-91b4-e3ce42cce36e", + Code = "DILON_ALIYUN_SMS_INVALIDATE_MINUTES", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信默认失效时间", + Remark = "阿里云短信默认失效时间(单位:分钟)", + Status = 0, + SysFlag = "Y", + Value = "5" + }, + new + { + Id = "c6540a07-ce32-47b4-ab83-b647bdb14491", + Code = "DILON_TENCENT_SMS_SECRET_ID", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信secretId", + Remark = "腾讯云短信secretId", + Status = 0, + SysFlag = "Y", + Value = "你的secretId" + }, + new + { + Id = "a0412212-d50b-42aa-9484-3cef8fe3cc59", + Code = "DILON_TENCENT_SMS_SECRET_KEY", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信secretKey", + Remark = "腾讯云短信secretKey", + Status = 0, + SysFlag = "Y", + Value = "你的secretkey" + }, + new + { + Id = "c928ca11-5137-4b71-bf1c-f3bc95bcd34d", + Code = "DILON_TENCENT_SMS_SDK_APP_ID", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信sdkAppId", + Remark = "腾讯云短信sdkAppId", + Status = 0, + SysFlag = "Y", + Value = "1400375123" + }, + new + { + Id = "16ce1b6e-c8ad-4299-9293-6caff0e5cb49", + Code = "DILON_TENCENT_SMS_SIGN", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信签名", + Remark = "腾讯云短信签名", + Status = 0, + SysFlag = "Y", + Value = "你的签名" + }, + new + { + Id = "66e63d64-b7eb-4e6a-b5b6-c87811c2e700", + Code = "DILON_EMAIL_HOST", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱host", + Remark = "邮箱host", + Status = 0, + SysFlag = "Y", + Value = "smtp.126.com" + }, + new + { + Id = "997a9bc6-22ed-4fe6-a20c-c3c2a0b682a0", + Code = "DILON_EMAIL_USERNAME", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱用户名", + Remark = "邮箱用户名", + Status = 0, + SysFlag = "Y", + Value = "test@126.com" + }, + new + { + Id = "633d1851-41d9-4ebd-b83b-3aa4501cd1a7", + Code = "DILON_EMAIL_PASSWORD", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱密码", + Remark = "邮箱密码", + Status = 0, + SysFlag = "Y", + Value = "你的邮箱密码" + }, + new + { + Id = "67e468f7-e791-4e91-a896-62e9f7411635", + Code = "DILON_EMAIL_PORT", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱端口", + Remark = "邮箱端口", + Status = 0, + SysFlag = "Y", + Value = "465" + }, + new + { + Id = "dc462c05-de23-4f90-bcdc-88de4abcdf22", + Code = "DILON_EMAIL_SSL", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱是否开启ssl", + Remark = "邮箱是否开启ssl", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "8beac2a0-4c67-4499-a7ce-27e989546ce9", + Code = "DILON_EMAIL_FROM", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱发件人", + Remark = "邮箱发件人", + Status = 0, + SysFlag = "Y", + Value = "test@126.com" + }, + new + { + Id = "55756524-ecb8-444e-9cdd-a0fc767c4b96", + Code = "DILON_FILE_UPLOAD_PATH_FOR_WINDOWS", + GroupCode = "FILE_PATH", + IsDeleted = 0ul, + Name = "Win本地上传文件路径", + Remark = "Win本地上传文件路径", + Status = 0, + SysFlag = "Y", + Value = "D:/tmp" + }, + new + { + Id = "d2db41ee-ce1f-46de-ac00-5860634afed9", + Code = "DILON_FILE_UPLOAD_PATH_FOR_LINUX", + GroupCode = "FILE_PATH", + IsDeleted = 0ul, + Name = "Linux/Mac本地上传文件路径", + Remark = "Linux/Mac本地上传文件路径", + Status = 0, + SysFlag = "Y", + Value = "/tmp" + }, + new + { + Id = "ff8debdd-eca0-4f91-8213-e2080f76b35d", + Code = "DILON_UN_XSS_FILTER_URL", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "放开XSS过滤的接口", + Remark = "多个url可以用英文逗号隔开", + Status = 0, + SysFlag = "Y", + Value = "/demo/xssfilter,/demo/unxss" + }, + new + { + Id = "5584fb84-f580-463f-b06d-bbb80a4dfb72", + Code = "DILON_ENABLE_SINGLE_LOGIN", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "单用户登陆的开关", + Remark = "true-打开,false-关闭,如果一个人登录两次,就会将上一次登陆挤下去", + Status = 0, + SysFlag = "Y", + Value = "false" + }, + new + { + Id = "53b0afb2-4917-4b85-bcca-fe7c7723ae22", + Code = "DILON_CAPTCHA_OPEN", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "登录验证码的开关", + Remark = "true-打开,false-关闭", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "974740d8-8647-4cf8-8102-542eea53e97f", + Code = "DILON_DRUID_USERNAME", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "Druid监控登录账号", + Remark = "Druid监控登录账号", + Status = 0, + SysFlag = "Y", + Value = "superAdmin" + }, + new + { + Id = "8cee44ea-ba4c-42db-a57d-69b8b5316ca5", + Code = "DILON_DRUID_PASSWORD", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "Druid监控界面登录密码", + Remark = "Druid监控界面登录密码", + Status = 0, + SysFlag = "Y", + Value = "123456" + }, + new + { + Id = "efc235ab-9b05-4820-afe4-32a1eb59e4de", + Code = "DILON_IP_GEO_API", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "阿里云定位api接口地址", + Remark = "阿里云定位api接口地址", + Status = 0, + SysFlag = "Y", + Value = "http://api01.aliyun.venuscn.com/ip?ip=%s" + }, + new + { + Id = "d3597d8a-562a-4b24-93c7-8655c5445d74", + Code = "DILON_IP_GEO_APP_CODE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "阿里云定位appCode", + Remark = "阿里云定位appCode", + Status = 0, + SysFlag = "Y", + Value = "461535aabeae4f34861884d392f5d452" + }, + new + { + Id = "59c8a6f2-9e3c-4e9e-b9cf-8ecad5f0cb45", + Code = "DILON_ENABLE_OAUTH_LOGIN", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth用户登录的开关", + Remark = "Oauth用户登录的开关", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "ff502ee7-8129-4828-8d16-fb04562ef52c", + Code = "DILON_OAUTH_GITEE_CLIENT_ID", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录ClientId", + Remark = "Oauth码云登录ClientId", + Status = 0, + SysFlag = "Y", + Value = "你的clientId" + }, + new + { + Id = "a1d957ef-2b70-456f-8eda-b70a4cf01535", + Code = "DILON_OAUTH_GITEE_CLIENT_SECRET", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录ClientSecret", + Remark = "Oauth码云登录ClientSecret", + Status = 0, + SysFlag = "Y", + Value = "你的clientSecret" + }, + new + { + Id = "b32ee22b-671d-40bf-8070-32e1054fef96", + Code = "DILON_OAUTH_GITEE_REDIRECT_URI", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录回调地址", + Remark = "Oauth码云登录回调地址", + Status = 0, + SysFlag = "Y", + Value = "http://127.0.0.1:5566/oauth/callback/gitee" + }, + new + { + Id = "38dda85c-2a98-4768-aebd-a60ab286052c", + Code = "DILON_DEMO_ENV_FLAG", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "演示环境", + Remark = "演示环境的开关,true-打开,false-关闭,如果演示环境开启,则只能读数据不能写数据", + Status = 0, + SysFlag = "Y", + Value = "false" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysDictData", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("ExtCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("扩展编码,以json形式存储"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("TypeId") + .HasColumnType("varchar(36)") + .HasColumnName("TypeId") + .HasComment("字典类型Id"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Value") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("值"); + + b.HasKey("Id"); + + b.HasIndex("TypeId"); + + b.ToTable("sys_dict_data"); + + b + .HasComment("字典值表"); + + b.HasData( + new + { + Id = "99b965d3-1f2b-4f5b-a62a-6763b8d64a64", + Code = "1", + IsDeleted = 0ul, + Remark = "通知", + Sort = 100, + Status = 0, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Value = "通知" + }, + new + { + Id = "2616e6c2-a504-4fc6-993e-72701b48e79a", + Code = "2", + IsDeleted = 0ul, + Remark = "公告", + Sort = 100, + Status = 0, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Value = "公告" + }, + new + { + Id = "40d336cd-918a-4e90-8836-cba7c1bf6cdf", + Code = "0", + IsDeleted = 0ul, + Remark = "草稿", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "草稿" + }, + new + { + Id = "f5b49fa9-31a1-44c2-9df0-b28bf5daeee0", + Code = "1", + IsDeleted = 0ul, + Remark = "发布", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "发布" + }, + new + { + Id = "d2f73bb4-05a1-4aa5-9273-e9f3c393996d", + Code = "2", + IsDeleted = 0ul, + Remark = "撤回", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "撤回" + }, + new + { + Id = "6385916f-6ead-470e-889b-cfb9d2da6256", + Code = "3", + IsDeleted = 0ul, + Remark = "删除", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "删除" + }, + new + { + Id = "1f432e9d-f031-4787-a527-f37bb20ebe3a", + Code = "true", + IsDeleted = 0ul, + Remark = "是", + Sort = 100, + Status = 0, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Value = "是" + }, + new + { + Id = "0724636d-e870-46c6-8e1e-67f1ea5f58e5", + Code = "false", + IsDeleted = 0ul, + Remark = "否", + Sort = 100, + Status = 0, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Value = "否" + }, + new + { + Id = "881ebcf2-94a6-4938-81a4-55b81736f3b3", + Code = "1", + IsDeleted = 0ul, + Remark = "下载压缩包", + Sort = 100, + Status = 0, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Value = "下载压缩包" + }, + new + { + Id = "5bc8662d-b795-48f1-a88e-2f4be5279d37", + Code = "2", + IsDeleted = 0ul, + Remark = "生成到本项目", + Sort = 100, + Status = 0, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Value = "生成到本项目" + }, + new + { + Id = "b2a00b40-23e1-40e1-8995-60ab420eafe1", + Code = "1", + IsDeleted = 0ul, + Remark = "GET", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "GET" + }, + new + { + Id = "10070836-0c89-4b89-96e3-c65c7e33a86c", + Code = "2", + IsDeleted = 0ul, + Remark = "POST", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "POST" + }, + new + { + Id = "69a34c0b-85ce-4e53-9ad4-a592057dddd4", + Code = "3", + IsDeleted = 0ul, + Remark = "PUT", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "PUT" + }, + new + { + Id = "0e4dc1f1-8654-401b-800a-22b31f62ced1", + Code = "4", + IsDeleted = 0ul, + Remark = "DELETE", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "DELETE" + }, + new + { + Id = "443f965e-96b4-4fd2-93e9-07fe00a47205", + Code = "input", + IsDeleted = 0ul, + Remark = "输入框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "输入框" + }, + new + { + Id = "bf7be9a2-53fb-4250-87fe-49d7f741d159", + Code = "datepicker", + IsDeleted = 0ul, + Remark = "时间选择", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "时间选择" + }, + new + { + Id = "cea10919-47e2-43ab-a19b-9d41fe648310", + Code = "select", + IsDeleted = 0ul, + Remark = "下拉框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "下拉框" + }, + new + { + Id = "7d534f44-cf66-472e-b0d3-20a4cc2ad432", + Code = "radio", + IsDeleted = 0ul, + Remark = "单选框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "单选框" + }, + new + { + Id = "d63b06d4-be11-4ab7-9905-87f6f2ca056f", + Code = "switch", + IsDeleted = 0ul, + Remark = "开关", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "开关" + }, + new + { + Id = "46967f62-bac9-47fd-9278-b29c047b0c38", + Code = "checkbox", + IsDeleted = 0ul, + Remark = "多选框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "多选框" + }, + new + { + Id = "a8ac5009-93d3-4405-a6b9-81ed3e2811f2", + Code = "inputnumber", + IsDeleted = 0ul, + Remark = "数字输入框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "数字输入框" + }, + new + { + Id = "d00b3efa-2f9d-464c-8134-aa7013ef52bb", + Code = "textarea", + IsDeleted = 0ul, + Remark = "文本域", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "文本域" + }, + new + { + Id = "ad759239-e34e-4fdf-a0d0-6b39eb41f880", + Code = "==", + IsDeleted = 0ul, + Remark = "等于", + Sort = 1, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "等于" + }, + new + { + Id = "2c8e1240-f3ef-4df1-bd68-3047109ad5b4", + Code = "like", + IsDeleted = 0ul, + Remark = "模糊", + Sort = 2, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "模糊" + }, + new + { + Id = "efc18513-c17b-4fc1-8e0e-2e79fb9b0107", + Code = ">", + IsDeleted = 0ul, + Remark = "大于", + Sort = 3, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "大于" + }, + new + { + Id = "a6812d98-7785-4db2-b2f8-d476a459c5ed", + Code = "<", + IsDeleted = 0ul, + Remark = "小于", + Sort = 4, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "小于" + }, + new + { + Id = "218b5bac-343e-4594-a9da-30e391c7735c", + Code = "!=", + IsDeleted = 0ul, + Remark = "不等于", + Sort = 5, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "不等于" + }, + new + { + Id = "4825f15d-077b-4c16-8ee7-0205d653e14d", + Code = ">=", + IsDeleted = 0ul, + Remark = "大于等于", + Sort = 6, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "大于等于" + }, + new + { + Id = "7c9e8270-db5a-45b7-acd7-f95c8ee31547", + Code = "<=", + IsDeleted = 0ul, + Remark = "小于等于", + Sort = 7, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "小于等于" + }, + new + { + Id = "759ea7de-a18f-4ed7-9032-bbd1a4dadc9e", + Code = "isNotNull", + IsDeleted = 0ul, + Remark = "不为空", + Sort = 8, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "不为空" + }, + new + { + Id = "a5cdf75e-6361-490d-a043-f5929ccf65a9", + Code = "int", + IsDeleted = 0ul, + Remark = "int", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "int" + }, + new + { + Id = "cffdd4b5-d4e0-4196-81b9-02045de8b189", + Code = "long", + IsDeleted = 0ul, + Remark = "long", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "long" + }, + new + { + Id = "25be90ea-b439-4e9d-993c-48a5ce3b9358", + Code = "string", + IsDeleted = 0ul, + Remark = "string", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "string" + }, + new + { + Id = "496eef62-3849-4263-b274-a3e6090942e3", + Code = "bool", + IsDeleted = 0ul, + Remark = "bool", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "bool" + }, + new + { + Id = "681c02ea-7570-4a97-85a7-957a77314df6", + Code = "double", + IsDeleted = 0ul, + Remark = "double", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "double" + }, + new + { + Id = "259698cf-b25d-427a-8d22-33b9c1899eea", + Code = "DateTime", + IsDeleted = 0ul, + Remark = "DateTime", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "DateTime" + }, + new + { + Id = "a30c682e-744a-468d-a74f-827928c96c01", + Code = "float", + IsDeleted = 0ul, + Remark = "float", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "float" + }, + new + { + Id = "4b68cb83-f173-4864-bd10-a7a7d5248102", + Code = "decimal", + IsDeleted = 0ul, + Remark = "decimal", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "decimal" + }, + new + { + Id = "134d4173-8d93-4c19-bf6b-a640d35da097", + Code = "Guid", + IsDeleted = 0ul, + Remark = "Guid", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "Guid" + }, + new + { + Id = "c597306f-5fd0-4f75-9a46-12de340cd199", + Code = "DateTimeOffset", + IsDeleted = 0ul, + Remark = "DateTimeOffset", + Sort = 100, + Status = 0, + 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("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("父Ids"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_dict_type"); + + b + .HasComment("字典类型表"); + + b.HasData( + new + { + Id = "b0cfa91c-1189-4f39-bc5a-f035885d0604", + Code = "common_status", + IsDeleted = 0ul, + Name = "通用状态", + Remark = "通用状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "301ed120-dfc5-4d7c-af59-b56a519581c9", + Code = "sex", + IsDeleted = 0ul, + Name = "性别", + Remark = "性别字典", + Sort = 100, + Status = 0 + }, + new + { + Id = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Code = "consts_type", + IsDeleted = 0ul, + Name = "常量的分类", + Remark = "常量的分类,用于区别一组配置", + Sort = 100, + Status = 0 + }, + new + { + Id = "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", + Code = "yes_or_no", + IsDeleted = 0ul, + Name = "是否", + Remark = "是否", + Sort = 100, + Status = 0 + }, + new + { + Id = "2cecf329-cf95-44eb-a8d7-3fb77b13e093", + Code = "vis_type", + IsDeleted = 0ul, + Name = "访问类型", + Remark = "访问类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "e973d383-c28e-42e0-9e23-5f2bd592fef5", + Code = "menu_type", + IsDeleted = 0ul, + Name = "菜单类型", + Remark = "菜单类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "058db370-3718-42c3-8ba7-095341b1fe13", + Code = "send_type", + IsDeleted = 0ul, + Name = "发送类型", + Remark = "发送类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Code = "open_type", + IsDeleted = 0ul, + Name = "打开方式", + Remark = "打开方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "b3235678-f7fe-442b-8fba-e792a89b78f2", + Code = "menu_weight", + IsDeleted = 0ul, + Name = "菜单权重", + Remark = "菜单权重", + Sort = 100, + Status = 0 + }, + new + { + Id = "a2068ed1-62a6-463c-b720-06111d994079", + Code = "data_scope_type", + IsDeleted = 0ul, + Name = "数据范围类型", + Remark = "数据范围类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", + Code = "sms_send_source", + IsDeleted = 0ul, + Name = "短信发送来源", + Remark = "短信发送来源", + Sort = 100, + Status = 0 + }, + new + { + Id = "8461bd1d-311b-487e-b579-d6049c6fb191", + Code = "op_type", + IsDeleted = 0ul, + Name = "操作类型", + Remark = "操作类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "b924e0c1-3f23-4e37-9f27-90e945381304", + Code = "file_storage_location", + IsDeleted = 0ul, + Name = "文件存储位置", + Remark = "文件存储位置", + Sort = 100, + Status = 0 + }, + new + { + Id = "0f1b8660-d932-4a53-a681-a38bebae91e0", + Code = "run_status", + IsDeleted = 0ul, + Name = "运行状态", + Remark = "定时任务运行状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Code = "notice_type", + IsDeleted = 0ul, + Name = "通知公告类型", + Remark = "通知公告类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Code = "notice_status", + IsDeleted = 0ul, + Name = "通知公告状态", + Remark = "通知公告状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Code = "yes_true_false", + IsDeleted = 0ul, + Name = "是否boolean", + Remark = "是否boolean", + Sort = 100, + Status = 0 + }, + new + { + Id = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Code = "code_gen_create_type", + IsDeleted = 0ul, + Name = "代码生成方式", + Remark = "代码生成方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Code = "request_type", + IsDeleted = 0ul, + Name = "请求方式", + Remark = "请求方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Code = "code_gen_effect_type", + IsDeleted = 0ul, + Name = "代码生成作用类型", + Remark = "代码生成作用类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Code = "code_gen_query_type", + IsDeleted = 0ul, + Name = "代码生成查询类型", + Remark = "代码生成查询类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "28f653d4-e573-4f54-8e5c-4e308780145a", + Code = "code_gen_net_type", + IsDeleted = 0ul, + Name = "代码生成.NET类型", + Remark = "代码生成.NET类型", + Sort = 100, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysEmp", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("用户Id"); + + b.Property("JobNum") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("工号"); + + b.Property("OrgId") + .HasColumnType("varchar(36)") + .HasColumnName("OrgId") + .HasComment("机构Id"); + + b.Property("OrgName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("机构名称"); + + b.HasKey("Id"); + + b.ToTable("sys_emp"); + + b + .HasComment("员工表"); + + b.HasData( + new + { + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + JobNum = "D1001", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }, + new + { + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + JobNum = "D1002", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }, + new + { + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", + JobNum = "D1003", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => + { + b.Property("SysEmpId") + .HasColumnType("varchar(36)") + .HasColumnName("SysEmpId") + .HasComment("员工Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") + .HasComment("职位Id"); + + b.HasKey("SysEmpId", "SysOrgId", "SysPosId"); + + b.HasIndex("SysOrgId"); + + b.HasIndex("SysPosId"); + + b.ToTable("sys_emp_ext_org_pos"); + + b + .HasComment("员工附属机构职位表"); + + b.HasData( + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "127c0a5d-43ac-4370-b313-082361885aca", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + SysPosId = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66" + }, + new + { + 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("varchar(36)") + .HasColumnName("SysEmpId") + .HasComment("员工Id"); + + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") + .HasComment("职位Id"); + + b.HasKey("SysEmpId", "SysPosId"); + + b.HasIndex("SysPosId"); + + b.ToTable("sys_emp_pos"); + + b + .HasComment("员工职位表"); + + b.HasData( + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" + }, + new + { + SysEmpId = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" + }, + new + { + SysEmpId = "16a74726-e156-499f-9942-0e0e24ad0c3f", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysFile", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("FileBucket") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件仓库"); + + b.Property("FileLocation") + .HasColumnType("int") + .HasComment("文件存储位置"); + + b.Property("FileObjectName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("存储到bucket的名称"); + + b.Property("FileOriginName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件名称"); + + b.Property("FilePath") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("存储路径"); + + b.Property("FileSizeInfo") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件大小信息"); + + b.Property("FileSizeKb") + .HasColumnType("bigint") + .HasComment("文件大小kb"); + + b.Property("FileSuffix") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件后缀"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_file"); + + b + .HasComment("文件信息表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogAudit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("ColumnName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("操作时间"); + + b.Property("NewValue") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("新值"); + + b.Property("OldValue") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("旧值"); + + b.Property("Operate") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作方式"); + + b.Property("TableName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("表名"); + + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") + .HasComment("操作人Id"); + + b.Property("UserName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作人名称"); + + b.HasKey("Id"); + + b.ToTable("sys_log_audit"); + + b + .HasComment("审计日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogOp", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Account") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作人"); + + b.Property("Browser") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("浏览器"); + + b.Property("ClassName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("类名称"); + + b.Property("ElapsedTime") + .HasColumnType("bigint") + .HasComment("耗时"); + + b.Property("Ip") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("IP"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("地址"); + + b.Property("Message") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("具体消息"); + + b.Property("MethodName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("方法名称"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("OpTime") + .HasColumnType("datetime") + .HasComment("操作时间"); + + b.Property("OpType") + .HasColumnType("int") + .HasComment("操作类型"); + + b.Property("Os") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作系统"); + + b.Property("Param") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求参数"); + + b.Property("ReqMethod") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求方式"); + + b.Property("Result") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("返回结果"); + + b.Property("Success") + .HasColumnType("tinyint(1)") + .HasComment("是否执行成功"); + + b.Property("Url") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求地址"); + + b.HasKey("Id"); + + b.ToTable("sys_log_op"); + + b + .HasComment("操作日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogVis", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Account") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("访问人"); + + b.Property("Browser") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("浏览器"); + + b.Property("Ip") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("IP"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("地址"); + + b.Property("Message") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("具体消息"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Os") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作系统"); + + b.Property("Success") + .HasColumnType("tinyint(1)") + .HasComment("是否执行成功"); + + b.Property("VisTime") + .HasColumnType("datetime") + .HasComment("访问时间"); + + b.Property("VisType") + .HasColumnType("int") + .HasComment("访问类型"); + + b.HasKey("Id"); + + b.ToTable("sys_log_vis"); + + b + .HasComment("访问日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysMenu", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Application") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("应用分类"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Component") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("组件地址"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Icon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Link") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("内链地址"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("OpenType") + .HasColumnType("int") + .HasComment("打开方式"); + + b.Property("Permission") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("权限标识"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("父Ids"); + + b.Property("Redirect") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("重定向地址"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Router") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("路由地址"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("菜单类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Visible") + .HasColumnType("bit") + .HasColumnName("Visible") + .HasComment("是否可见"); + + b.Property("VisibleParent") + .HasColumnType("bit") + .HasColumnName("VisibleParent") + .HasComment("关联菜单显示"); + + b.Property("Weight") + .HasColumnType("int") + .HasComment("权重"); + + b.HasKey("Id"); + + b.ToTable("sys_menu"); + + b + .HasComment("菜单表"); + + b.HasData( + new + { + Id = "83ce02c9-b37f-4885-96e3-9b34371edb2e", + Application = "system", + Code = "system_index", + Component = "RouteView", + Icon = "home", + IsDeleted = 0ul, + Name = "主控面板", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Redirect = "/analysis", + Router = "/", + Sort = 1, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "914a520d-9e4f-465b-ae05-7248b37d4be1", + Application = "system", + Code = "system_index_dashboard", + Component = "system/dashboard/Analysis", + IsDeleted = 0ul, + Name = "分析页", + OpenType = 0, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "72981ad9-9036-4aa7-b8f4-dc407eda50b4", + Application = "system", + Code = "system_index_workplace", + Component = "system/dashboard/Workplace", + IsDeleted = 0ul, + Name = "工作台", + OpenType = 0, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", + Application = "system", + Code = "sys_mgr", + Component = "PageView", + Icon = "team", + IsDeleted = 0ul, + Name = "组织架构", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/sys", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Application = "system", + Code = "sys_user_mgr", + Component = "system/user/index", + IsDeleted = 0ul, + Name = "用户管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bff7e542-6463-4f82-a03d-b1022e60d4b6", + Application = "system", + Code = "sys_user_mgr_page", + IsDeleted = 0ul, + Name = "用户查询", + OpenType = 0, + Permission = "sysUser:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "936440c7-93ef-4d2f-adff-6151f4317355", + Application = "system", + Code = "sys_user_mgr_edit", + IsDeleted = 0ul, + Name = "用户编辑", + OpenType = 0, + Permission = "sysUser:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "281888e3-d183-4711-ba27-298ef6e64659", + Application = "system", + Code = "sys_user_mgr_add", + IsDeleted = 0ul, + Name = "用户增加", + OpenType = 0, + Permission = "sysUser:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e4aff800-d34a-416b-bd6e-dcebaa1dd436", + Application = "system", + Code = "sys_user_mgr_delete", + IsDeleted = 0ul, + Name = "用户删除", + OpenType = 0, + Permission = "sysUser:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "7a266494-e17b-480d-8f50-cc234e6fe424", + Application = "system", + Code = "sys_user_mgr_detail", + IsDeleted = 0ul, + Name = "用户详情", + OpenType = 0, + Permission = "sysUser:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0d93f763-20d3-4c95-add3-3d94770b110e", + Application = "system", + Code = "sys_user_mgr_export", + IsDeleted = 0ul, + Name = "用户导出", + OpenType = 0, + Permission = "sysUser:export", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "17d047c3-6e95-4f7d-93db-97817d886fa2", + Application = "system", + Code = "sys_user_mgr_selector", + IsDeleted = 0ul, + Name = "用户选择器", + OpenType = 0, + Permission = "sysUser:selector", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5fc44256-2e56-4805-9382-b5504ca5b6cb", + Application = "system", + Code = "sys_user_mgr_grant_role", + IsDeleted = 0ul, + Name = "用户授权角色", + OpenType = 0, + Permission = "sysUser:grantRole", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ceff7899-6779-4708-b9ed-a2d5b488cff2", + Application = "system", + Code = "sys_user_mgr_own_role", + IsDeleted = 0ul, + Name = "用户拥有角色", + OpenType = 0, + Permission = "sysUser:ownRole", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "38ba9ccc-eb96-4a60-a5ab-f6ea013f8291", + Application = "system", + Code = "sys_user_mgr_grant_data", + IsDeleted = 0ul, + Name = "用户授权数据", + OpenType = 0, + Permission = "sysUser:grantData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf2f8faf-b280-456c-8865-64115e04019f", + Application = "system", + Code = "sys_user_mgr_own_data", + IsDeleted = 0ul, + Name = "用户拥有数据", + OpenType = 0, + Permission = "sysUser:ownData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "711563e5-fed6-44d6-bcf3-138c73cfbfca", + Application = "system", + Code = "sys_user_mgr_update_info", + IsDeleted = 0ul, + Name = "用户更新信息", + OpenType = 0, + Permission = "sysUser:updateInfo", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "306fe9bf-3132-4011-9f3f-1a2f4ead7734", + Application = "system", + Code = "sys_user_mgr_update_pwd", + IsDeleted = 0ul, + Name = "用户修改密码", + OpenType = 0, + Permission = "sysUser:updatePwd", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "791b0d88-7e25-490f-a94f-a2e32bb3b6e6", + Application = "system", + Code = "sys_user_mgr_change_status", + IsDeleted = 0ul, + Name = "用户修改状态", + OpenType = 0, + Permission = "sysUser:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9d681aac-528a-46b0-9718-ffc4abe9c29e", + Application = "system", + Code = "sys_user_mgr_update_avatar", + IsDeleted = 0ul, + Name = "用户修改头像", + OpenType = 0, + Permission = "sysUser:updateAvatar", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "471b5259-5f55-4643-841c-f07089cfafdf", + Application = "system", + Code = "sys_user_mgr_reset_pwd", + IsDeleted = 0ul, + Name = "用户重置密码", + OpenType = 0, + Permission = "sysUser:resetPwd", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "471d3098-90a4-47e1-bd07-5d3ed8d21fb0", + Application = "system", + Code = "sys_user_mgr_login", + IsDeleted = 0ul, + Name = "用户登录信息", + OpenType = 0, + Permission = "getLoginUser", + 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 = 0ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Application = "system", + Code = "sys_org_mgr", + Component = "system/org/index", + IsDeleted = 0ul, + Name = "机构管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "b7c34c9b-933e-4c48-b1d0-af15a1f7da1f", + Application = "system", + Code = "sys_org_mgr_page", + IsDeleted = 0ul, + Name = "机构查询", + OpenType = 0, + Permission = "sysOrg:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "917064b2-c715-4fa4-9b2d-20a11b784ed1", + Application = "system", + Code = "sys_org_mgr_list", + IsDeleted = 0ul, + Name = "机构列表", + OpenType = 0, + Permission = "sysOrg:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d7c18d60-f28f-4a57-90b3-26fc95249ae0", + Application = "system", + Code = "sys_org_mgr_add", + IsDeleted = 0ul, + Name = "机构增加", + OpenType = 0, + Permission = "sysOrg:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e65eb1e3-cc9e-4309-8c7a-9ac41765b239", + Application = "system", + Code = "sys_org_mgr_edit", + IsDeleted = 0ul, + Name = "机构编辑", + OpenType = 0, + Permission = "sysOrg:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c2450c4c-89c6-46e8-8f89-11331790cbe3", + Application = "system", + Code = "sys_org_mgr_delete", + IsDeleted = 0ul, + Name = "机构删除", + OpenType = 0, + Permission = "sysOrg:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "695a6018-82c3-466e-a2a1-dab16039bfdb", + Application = "system", + Code = "sys_org_mgr_detail", + IsDeleted = 0ul, + Name = "机构详情", + OpenType = 0, + Permission = "sysOrg:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2d153046-279b-43be-8f57-46875118fd2c", + Application = "system", + Code = "sys_org_mgr_tree", + IsDeleted = 0ul, + Name = "机构树", + OpenType = 0, + Permission = "sysOrg:tree", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Application = "system", + Code = "sys_pos_mgr", + Component = "system/pos/index", + IsDeleted = 0ul, + Name = "职位管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d2436601-bc48-4610-ba67-5b666f8ce33a", + Application = "system", + Code = "sys_pos_mgr_page", + IsDeleted = 0ul, + Name = "职位查询", + OpenType = 0, + Permission = "sysPos:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1305efaa-b81a-475f-9dde-8f6549ca7743", + Application = "system", + Code = "sys_pos_mgr_list", + IsDeleted = 0ul, + Name = "职位列表", + OpenType = 0, + Permission = "sysPos:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c227e732-f231-4488-89b0-d1c9dad78950", + Application = "system", + Code = "sys_pos_mgr_add", + IsDeleted = 0ul, + Name = "职位增加", + OpenType = 0, + Permission = "sysPos:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9dafbe04-83c9-482c-9c83-81f4da045da5", + Application = "system", + Code = "sys_pos_mgr_edit", + IsDeleted = 0ul, + Name = "职位编辑", + OpenType = 0, + Permission = "sysPos:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "031df05e-b7c6-4ecd-aff2-f189c994e86d", + Application = "system", + Code = "sys_pos_mgr_delete", + IsDeleted = 0ul, + Name = "职位删除", + OpenType = 0, + Permission = "sysPos:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fe5ee8a1-2145-43c6-bdeb-518f3a9c127d", + Application = "system", + Code = "sys_pos_mgr_detail", + IsDeleted = 0ul, + Name = "职位详情", + OpenType = 0, + Permission = "sysPos:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", + Application = "system", + Code = "auth_manager", + Component = "PageView", + Icon = "safety-certificate", + IsDeleted = 0ul, + Name = "权限管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/auth", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Application = "system", + Code = "sys_app_mgr", + Component = "system/app/index", + IsDeleted = 0ul, + Name = "应用管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "dbaa7a6d-234f-4cc9-977f-4544b8bb45b8", + Application = "system", + Code = "sys_app_mgr_page", + IsDeleted = 0ul, + Name = "应用查询", + OpenType = 0, + Permission = "sysApp:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ab7b2b41-b0bc-4b9c-9017-f5c6918e393e", + Application = "system", + Code = "sys_app_mgr_list", + IsDeleted = 0ul, + Name = "应用列表", + OpenType = 0, + Permission = "sysApp:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f4e1d63b-5d92-46eb-82aa-267335a5a3f3", + Application = "system", + Code = "sys_app_mgr_add", + IsDeleted = 0ul, + Name = "应用增加", + OpenType = 0, + Permission = "sysApp:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f33a3791-1c01-4d30-bcc3-d9fdf5246376", + Application = "system", + Code = "sys_app_mgr_edit", + IsDeleted = 0ul, + Name = "应用编辑", + OpenType = 0, + Permission = "sysApp:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e0a6cf90-0a8b-44e4-a32f-5f43ef996b82", + Application = "system", + Code = "sys_app_mgr_delete", + IsDeleted = 0ul, + Name = "应用删除", + OpenType = 0, + Permission = "sysApp:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a0abe974-5ae9-440b-9d16-2412eab52d70", + Application = "system", + Code = "sys_app_mgr_detail", + IsDeleted = 0ul, + Name = "应用详情", + OpenType = 0, + Permission = "sysApp:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f640e243-b439-4109-8aea-c66205ef6b12", + Application = "system", + Code = "sys_app_mgr_set_as_default", + IsDeleted = 0ul, + Name = "设为默认应用", + OpenType = 0, + Permission = "sysApp:setAsDefault", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Application = "system", + Code = "sys_menu_mgr", + Component = "system/menu/index", + IsDeleted = 0ul, + Name = "菜单管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e9982e73-1833-4674-9403-ee3dee2efdf7", + Application = "system", + Code = "sys_menu_mgr_list", + IsDeleted = 0ul, + Name = "菜单列表", + OpenType = 0, + Permission = "sysMenu:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "758e15e6-75a6-4b72-8f94-5da379e53354", + Application = "system", + Code = "sys_menu_mgr_add", + IsDeleted = 0ul, + Name = "菜单增加", + OpenType = 0, + Permission = "sysMenu:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "07139c19-6b39-49f5-9e22-c4dc7e9d947b", + Application = "system", + Code = "sys_menu_mgr_edit", + IsDeleted = 0ul, + Name = "菜单编辑", + OpenType = 0, + Permission = "sysMenu:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "857fb581-78ff-4884-a6fb-8dfb4951fef9", + Application = "system", + Code = "sys_menu_mgr_delete", + IsDeleted = 0ul, + Name = "菜单删除", + OpenType = 0, + Permission = "sysMenu:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cd43a8ee-9f98-4355-bf81-ba40f388b23f", + Application = "system", + Code = "sys_menu_mgr_detail", + IsDeleted = 0ul, + Name = "菜单详情", + OpenType = 0, + Permission = "sysMenu:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ec318997-596d-403a-91be-f303b234b02d", + Application = "system", + Code = "sys_menu_mgr_grant_tree", + IsDeleted = 0ul, + Name = "菜单授权树", + OpenType = 0, + Permission = "sysMenu:treeForGrant", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "3892ef5d-39b2-4a4d-8047-cb96542fb54f", + Application = "system", + Code = "sys_menu_mgr_tree", + IsDeleted = 0ul, + Name = "菜单树", + OpenType = 0, + Permission = "sysMenu:tree", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "00831a3b-d080-411f-afb9-9f415334b192", + Application = "system", + Code = "sys_menu_mgr_change", + IsDeleted = 0ul, + Name = "菜单切换", + OpenType = 0, + Permission = "sysMenu:change", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Application = "system", + Code = "sys_role_mgr", + Component = "system/role/index", + IsDeleted = 0ul, + Name = "角色管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4241f4a0-89ab-4a6a-80bb-2830f855d3be", + Application = "system", + Code = "sys_role_mgr_page", + IsDeleted = 0ul, + Name = "角色查询", + OpenType = 0, + Permission = "sysRole:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6a48beb1-c828-43d6-af3d-3e18ef163070", + Application = "system", + Code = "sys_role_mgr_add", + IsDeleted = 0ul, + Name = "角色增加", + OpenType = 0, + Permission = "sysRole:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1198a602-a23d-4a06-aa9a-76aaf5f065a7", + Application = "system", + Code = "sys_role_mgr_edit", + IsDeleted = 0ul, + Name = "角色编辑", + OpenType = 0, + Permission = "sysRole:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e7708eeb-2c87-4c3d-bc71-c395e5d708db", + Application = "system", + Code = "sys_role_mgr_delete", + IsDeleted = 0ul, + Name = "角色删除", + OpenType = 0, + Permission = "sysRole:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "63ab477f-88fb-4f4b-9dcd-0cb83ac767f6", + Application = "system", + Code = "sys_role_mgr_detail", + IsDeleted = 0ul, + Name = "角色详情", + OpenType = 0, + Permission = "sysRole:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2622348c-dd8f-4ade-a350-de0a8f01e1f6", + Application = "system", + Code = "sys_role_mgr_drop_down", + IsDeleted = 0ul, + Name = "角色下拉", + OpenType = 0, + Permission = "sysRole:dropDown", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "73d84863-b381-40be-84bc-ec8381fa6c0a", + Application = "system", + Code = "sys_role_mgr_grant_menu", + IsDeleted = 0ul, + Name = "角色授权菜单", + OpenType = 0, + Permission = "sysRole:grantMenu", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bbc5e792-3d72-4d0d-8ddb-25cf2c4e1374", + Application = "system", + Code = "sys_role_mgr_own_menu", + IsDeleted = 0ul, + Name = "角色拥有菜单", + OpenType = 0, + Permission = "sysRole:ownMenu", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "19234814-6007-484c-818c-88a664a2a339", + Application = "system", + Code = "sys_role_mgr_grant_data", + IsDeleted = 0ul, + Name = "角色授权数据", + OpenType = 0, + Permission = "sysRole:grantData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "19e5c5f6-b598-4c42-8eed-3d46fb11b465", + Application = "system", + Code = "sys_role_mgr_own_data", + IsDeleted = 0ul, + Name = "角色拥有数据", + OpenType = 0, + Permission = "sysRole:ownData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Application = "system", + Code = "system_tools", + Component = "PageView", + Icon = "euro", + IsDeleted = 0ul, + Name = "开发管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/tools", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Application = "system", + Code = "system_tools_config", + Component = "system/config/index", + IsDeleted = 0ul, + Name = "系统配置", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c14c82bd-632d-4cc9-9236-37aa64b15ecf", + Application = "system", + Code = "system_tools_config_page", + IsDeleted = 0ul, + Name = "配置查询", + OpenType = 0, + Permission = "sysConfig:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "78d31d68-9c9b-4e02-94c9-8a74eea4c1fb", + Application = "system", + Code = "system_tools_config_list", + IsDeleted = 0ul, + Name = "配置列表", + OpenType = 0, + Permission = "sysConfig:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fc91afb5-2b9e-428b-b5ff-b0ef35dd5336", + Application = "system", + Code = "system_tools_config_add", + IsDeleted = 0ul, + Name = "配置增加", + OpenType = 0, + Permission = "sysConfig:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1efb72e8-3449-490a-92e0-308b124c338f", + Application = "system", + Code = "system_tools_config_edit", + IsDeleted = 0ul, + Name = "配置编辑", + OpenType = 0, + Permission = "sysConfig:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5760230f-e6fc-4c3d-ba38-1c8a5a923eb3", + Application = "system", + Code = "system_tools_config_delete", + IsDeleted = 0ul, + Name = "配置删除", + OpenType = 0, + Permission = "sysConfig:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6bfc0c53-5d6c-437c-9757-bc79e664d0f5", + Application = "system", + Code = "system_tools_config_detail", + IsDeleted = 0ul, + Name = "配置详情", + OpenType = 0, + Permission = "sysConfig:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f7fe47a3-86b2-4660-9920-0c9836755666", + Application = "system", + Code = "sys_app_mgr_set_as_default", + IsDeleted = 0ul, + Name = "设为默认应用", + OpenType = 0, + Permission = "sysApp:setAsDefault", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", + Application = "system", + Code = "sys_email_mgr", + Component = "system/email/index", + IsDeleted = 0ul, + Name = "邮件发送", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4d4cf5b3-bd4c-4f17-9fb2-47b28b00681f", + Application = "system", + Code = "sys_email_mgr_send_email", + IsDeleted = 0ul, + Name = "发送文本邮件", + OpenType = 0, + Permission = "email:sendEmail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "51e45073-1461-4b3b-ae06-d0d3dcf222e0", + Application = "system", + Code = "sys_email_mgr_send_email_html", + IsDeleted = 0ul, + Name = "发送html邮件", + OpenType = 0, + Permission = "email:sendEmailHtml", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", + Application = "system", + Code = "sys_sms_mgr", + Component = "system/sms/index", + IsDeleted = 0ul, + Name = "短信管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2afa4925-b927-457e-88a1-d215b7d75fb6", + Application = "system", + Code = "sys_sms_mgr_page", + IsDeleted = 0ul, + Name = "短信发送查询", + OpenType = 0, + Permission = "sms:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "97c1b073-5e19-4542-89e2-d8da44d0f1df", + Application = "system", + Code = "sys_sms_mgr_send_login_message", + IsDeleted = 0ul, + Name = "发送验证码短信", + OpenType = 0, + Permission = "sms:sendLoginMessage", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d2454bd2-f300-4b28-95c0-12432c28cbdf", + Application = "system", + Code = "sys_sms_mgr_validate_message", + IsDeleted = 0ul, + Name = "验证短信验证码", + OpenType = 0, + Permission = "sms:validateMessage", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Application = "system", + Code = "sys_dict_mgr", + Component = "system/dict/index", + IsDeleted = 0ul, + Name = "字典管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "70c5e8c5-6104-4e53-99c0-4743e557456b", + Application = "system", + Code = "sys_dict_mgr_dict_type_page", + IsDeleted = 0ul, + Name = "字典类型查询", + OpenType = 0, + Permission = "sysDictType:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1bd1d982-e05a-4bdc-a4e0-752d94f3196c", + Application = "system", + Code = "sys_dict_mgr_dict_type_list", + IsDeleted = 0ul, + Name = "字典类型列表", + OpenType = 0, + Permission = "sysDictType:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bd09b023-0884-4f31-8cf7-f66f789fa3db", + Application = "system", + Code = "sys_dict_mgr_dict_type_add", + IsDeleted = 0ul, + Name = "字典类型增加", + OpenType = 0, + Permission = "sysDictType:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1f7a41ff-5a46-449c-81f3-1618dfdcb4cd", + Application = "system", + Code = "sys_dict_mgr_dict_type_delete", + IsDeleted = 0ul, + Name = "字典类型删除", + OpenType = 0, + Permission = "sysDictType:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2381cde4-2174-47e7-a1e5-e58da70e7a11", + Application = "system", + Code = "sys_dict_mgr_dict_type_edit", + IsDeleted = 0ul, + Name = "字典类型编辑", + OpenType = 0, + Permission = "sysDictType:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8f7d3c74-8800-4922-9662-ac6af378c882", + Application = "system", + Code = "sys_dict_mgr_dict_type_detail", + IsDeleted = 0ul, + Name = "字典类型详情", + OpenType = 0, + Permission = "sysDictType:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4f87b6de-be62-4398-b680-1f8611f2cd70", + Application = "system", + Code = "sys_dict_mgr_dict_type_drop_down", + IsDeleted = 0ul, + Name = "字典类型下拉", + OpenType = 0, + Permission = "sysDictType:dropDown", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "07c799b2-e8e9-4955-83da-97560f161d87", + Application = "system", + Code = "sys_dict_mgr_dict_type_change_status", + IsDeleted = 0ul, + Name = "字典类型修改状态", + OpenType = 0, + Permission = "sysDictType:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "29be8e3c-c2bb-4162-b282-fdf58c218b9d", + Application = "system", + Code = "sys_dict_mgr_dict_page", + IsDeleted = 0ul, + Name = "字典值查询", + OpenType = 0, + Permission = "sysDictData:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "b8cbc4e1-ac10-4cda-b1e4-f816a2632d02", + Application = "system", + Code = "sys_dict_mgr_dict_list", + IsDeleted = 0ul, + Name = "字典值列表", + OpenType = 0, + Permission = "sysDictData:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54e97bde-94d6-42df-89e3-4c3ace153b22", + Application = "system", + Code = "sys_dict_mgr_dict_add", + IsDeleted = 0ul, + Name = "字典值增加", + OpenType = 0, + Permission = "sysDictData:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "be98da08-a3b0-463c-8208-05d843620258", + Application = "system", + Code = "sys_dict_mgr_dict_delete", + IsDeleted = 0ul, + Name = "字典值删除", + OpenType = 0, + Permission = "sysDictData:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "38809fc3-163f-4fe9-a488-c9bb5bce752a", + Application = "system", + Code = "sys_dict_mgr_dict_edit", + IsDeleted = 0ul, + Name = "字典值编辑", + OpenType = 0, + Permission = "sysDictData:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fc511b42-f0a1-489b-8418-7ef94b0fb374", + Application = "system", + Code = "sys_role_mgr_grant_data", + IsDeleted = 0ul, + Name = "字典值详情", + OpenType = 0, + Permission = "sysDictData:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "200428b3-1605-4c70-b840-e691e302ae69", + Application = "system", + Code = "sys_dict_mgr_dict_change_status", + IsDeleted = 0ul, + Name = "字典值修改状态", + OpenType = 0, + Permission = "sysDictData:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d40f424d-d5fc-4b86-a2bd-3a5a76076bc1", + Application = "system", + Code = "sys_swagger_mgr", + Component = "Iframe", + IsDeleted = 0ul, + Link = "http://127.0.0.1:5566/", + Name = "接口文档", + OpenType = 2, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "eec4563e-9307-4ccd-ac3a-93598badb195", + Application = "system", + Code = "sys_log_mgr", + Component = "PageView", + Icon = "read", + IsDeleted = 0ul, + Name = "日志管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/log", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "322b2cb6-df29-483b-b011-54dce1532fae", + Application = "system", + Code = "sys_log_mgr_vis_log", + Component = "system/log/vislog/index", + IsDeleted = 0ul, + Name = "访问日志", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "122641c1-ab6d-4f91-9527-16fc8fea9708", + Application = "system", + Code = "sys_log_mgr_vis_log_page", + IsDeleted = 0ul, + Name = "访问日志查询", + OpenType = 0, + Permission = "sysVisLog:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f2367804-6382-4e72-8282-e4f6f988ecd1", + Application = "system", + Code = "sys_log_mgr_vis_log_delete", + IsDeleted = 0ul, + Name = "访问日志清空", + OpenType = 0, + Permission = "sysVisLog:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", + Application = "system", + Code = "sys_log_mgr_op_log", + Component = "system/log/oplog/index", + IsDeleted = 0ul, + Name = "操作日志", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "7f44f49e-6458-4149-bbcd-9a937f552cec", + Application = "system", + Code = "sys_log_mgr_op_log_page", + IsDeleted = 0ul, + Name = "操作日志查询", + OpenType = 0, + Permission = "sysOpLog:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "263e0c00-2796-411c-9f50-0aa361f7781c", + Application = "system", + Code = "sys_log_mgr_op_log_delete", + IsDeleted = 0ul, + Name = "操作日志清空", + OpenType = 0, + Permission = "sysOpLog:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", + Application = "system", + Code = "sys_monitor_mgr", + Component = "PageView", + Icon = "deployment-unit", + IsDeleted = 0ul, + Name = "系统监控", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/monitor", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c1e70042-fe3f-4efc-a6cc-86de8507f948", + Application = "system", + Code = "sys_monitor_mgr_machine_monitor", + Component = "system/machine/index", + IsDeleted = 0ul, + Name = "服务监控", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "444f3658-defe-47a7-880e-bf0af8b66591", + Application = "system", + Code = "sys_monitor_mgr_machine_monitor_query", + IsDeleted = 0ul, + Name = "服务监控查询", + OpenType = 0, + Permission = "sysMachine:query", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "49a8b476-327b-4f33-87b8-2d9bc50dc390", + Application = "system", + Code = "sys_monitor_mgr_online_user", + Component = "system/onlineUser/index", + IsDeleted = 0ul, + Name = "在线用户", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4785eb5a-678a-4f9c-b07c-3b92acdd6de0", + Application = "system", + Code = "sys_monitor_mgr_online_user_list", + IsDeleted = 0ul, + Name = "在线用户列表", + OpenType = 0, + Permission = "sysOnlineUser:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4dbf6765-ac79-4708-a9d5-16a4d4b09164", + Application = "system", + Code = "sys_monitor_mgr_online_user_force_exist", + IsDeleted = 0ul, + Name = "在线用户强退", + OpenType = 0, + Permission = "sysOnlineUser:forceExist", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "31c2af01-b856-4a1d-a131-cdf8e847b1a4", + Application = "system", + Code = "sys_monitor_mgr_druid", + Component = "Iframe", + IsDeleted = 0ul, + Link = "http://localhost:82/druid/login.html", + Name = "数据监控", + OpenType = 2, + 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 = 0ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d4cac841-99e5-4014-af17-2986c9340306", + Application = "system", + Code = "sys_notice", + Component = "PageView", + Icon = "sound", + IsDeleted = 0ul, + Name = "通知公告", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/notice", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Application = "system", + Code = "sys_notice_mgr", + Component = "system/notice/index", + IsDeleted = 0ul, + Name = "公告管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54584ab7-25d1-45b7-b3d4-76ba21511f97", + Application = "system", + Code = "sys_notice_mgr_page", + IsDeleted = 0ul, + Name = "公告查询", + OpenType = 0, + Permission = "sysNotice:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f27c8431-7da5-4ffe-a8f3-b511cf44c0c8", + Application = "system", + Code = "sys_notice_mgr_add", + IsDeleted = 0ul, + Name = "公告增加", + OpenType = 0, + Permission = "sysNotice:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f84c1f3a-3a51-4be2-97c9-7543b044e457", + Application = "system", + Code = "sys_notice_mgr_edit", + IsDeleted = 0ul, + Name = "公告编辑", + OpenType = 0, + Permission = "sysNotice:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a8abcb85-ad3b-47b9-8c9b-e7d1876b90cf", + Application = "system", + Code = "sys_notice_mgr_delete", + IsDeleted = 0ul, + Name = "公告删除", + OpenType = 0, + Permission = "sysNotice:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fe9cbb41-7b05-4f32-b960-87a1ef146166", + Application = "system", + Code = "sys_notice_mgr_detail", + IsDeleted = 0ul, + Name = "公告查看", + OpenType = 0, + Permission = "sysNotice:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "3e547bb0-4cf5-4cf0-8386-48d2f3c12dcb", + Application = "system", + Code = "sys_notice_mgr_changeStatus", + IsDeleted = 0ul, + Name = "公告修改状态", + OpenType = 0, + Permission = "sysNotice:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ac3065ff-d239-4e0e-86e5-d72cc658224c", + Application = "system", + Code = "sys_notice_mgr_received", + Component = "system/noticeReceived/index", + IsDeleted = 0ul, + Name = "已收公告", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e2d4b13b-eb3e-4ead-8fb8-4c61a3004726", + Application = "system", + Code = "sys_notice_mgr_received_page", + IsDeleted = 0ul, + Name = "已收公告查询", + OpenType = 0, + Permission = "sysNotice:received", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "05326e62-f496-4950-8a29-40e8a479424f", + Application = "system", + Code = "sys_file_mgr", + Component = "PageView", + Icon = "file", + IsDeleted = 0ul, + Name = "文件管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/file", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0af2a460-bbb0-472c-b027-8532970425df", + Application = "system", + Code = "sys_file_mgr_sys_file", + Component = "system/file/index", + IsDeleted = 0ul, + Name = "系统文件", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c7bac800-b922-4173-bd8d-9888b4eab1d4", + Application = "system", + Code = "sys_file_mgr_sys_file_page", + IsDeleted = 0ul, + Name = "文件查询", + OpenType = 0, + Permission = "sysFileInfo:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f47e1fa7-6329-4d67-8fe6-36ca06aad54b", + Application = "system", + Code = "sys_file_mgr_sys_file_list", + IsDeleted = 0ul, + Name = "文件列表", + OpenType = 0, + Permission = "sysFileInfo:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cca0a2ee-cfb9-4996-affb-dc8d8168ac10", + Application = "system", + Code = "sys_file_mgr_sys_file_delete", + IsDeleted = 0ul, + Name = "文件删除", + OpenType = 0, + Permission = "sysFileInfo:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "eb738eaa-5eed-466d-b422-4eb6f4662dd9", + Application = "system", + Code = "sys_file_mgr_sys_file_detail", + IsDeleted = 0ul, + Name = "文件详情", + OpenType = 0, + Permission = "sysFileInfo:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "69b97ace-d849-4e52-8fc2-9da7d93e325f", + Application = "system", + Code = "sys_file_mgr_sys_file_upload", + IsDeleted = 0ul, + Name = "文件上传", + OpenType = 0, + Permission = "sysFileInfo:upload", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e286d53d-bf3c-4711-b0a3-15cfad0a7521", + Application = "system", + Code = "sys_file_mgr_sys_file_download", + IsDeleted = 0ul, + Name = "文件下载", + OpenType = 0, + Permission = "sysFileInfo:download", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1975891b-7940-44a8-a513-9f2e8b05dda1", + Application = "system", + Code = "sys_file_mgr_sys_file_preview", + IsDeleted = 0ul, + Name = "图片预览", + OpenType = 0, + Permission = "sysFileInfo:preview", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ba03cfd5-5d72-465f-87b6-71134da68fab", + Application = "system", + Code = "sys_timers", + Component = "PageView", + Icon = "dashboard", + IsDeleted = 0ul, + Name = "定时任务", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/timers", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Application = "system", + Code = "sys_timers_mgr", + Component = "system/timers/index", + IsDeleted = 0ul, + Name = "任务管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "db62154a-470e-43c8-8959-a686b954fe7d", + Application = "system", + Code = "sys_timers_mgr_page", + IsDeleted = 0ul, + Name = "定时任务查询", + OpenType = 0, + Permission = "sysTimers:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "dc07cd9f-4a53-40d9-988e-70290a146eff", + Application = "system", + Code = "sys_timers_mgr_list", + IsDeleted = 0ul, + Name = "定时任务列表", + OpenType = 0, + Permission = "sysTimers:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1e562d31-c2f8-4af8-be4b-47e3b251d9a3", + Application = "system", + Code = "sys_timers_mgr_detail", + IsDeleted = 0ul, + Name = "定时任务详情", + OpenType = 0, + Permission = "sysTimers:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f27ba442-7d6f-499f-8053-a737adc3492a", + Application = "system", + Code = "sys_timers_mgr_add", + IsDeleted = 0ul, + Name = "定时任务增加", + OpenType = 0, + Permission = "sysTimers:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "99129601-0be5-43ee-842b-a428603f013b", + Application = "system", + Code = "sys_timers_mgr_delete", + IsDeleted = 0ul, + Name = "定时任务删除", + OpenType = 0, + Permission = "sysTimers:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5e118fc0-f580-4d06-a89d-f321a84e5654", + Application = "system", + Code = "sys_timers_mgr_edit", + IsDeleted = 0ul, + Name = "定时任务编辑", + OpenType = 0, + Permission = "sysTimers:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4272f2e4-4a8b-45bb-b688-2b9471c35e83", + Application = "system", + Code = "sys_timers_mgr_get_action_classes", + IsDeleted = 0ul, + Name = "定时任务可执行列表", + OpenType = 0, + Permission = "sysTimers:getActionClasses", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54094687-f661-4cba-bdfc-e76f22db8d76", + Application = "system", + Code = "sys_timers_mgr_start", + IsDeleted = 0ul, + Name = "定时任务启动", + OpenType = 0, + Permission = "sysTimers:start", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6b82d407-d1ea-440e-9245-128ad03dffc0", + Application = "system", + Code = "sys_timers_mgr_stop", + IsDeleted = 0ul, + Name = "定时任务关闭", + OpenType = 0, + Permission = "sysTimers:stop", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5172265d-eda3-4b8a-a542-d582467a51a1", + Application = "system_tool", + Code = "code_gen", + Component = "gen/codeGenerate/index", + Icon = "thunderbolt", + IsDeleted = 0ul, + Name = "代码生成", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/codeGenerate/index", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf51df0a-8e0b-4252-ba06-9646cad648d1", + Application = "system_tool", + Code = "form_design", + Component = "system/formDesign/index", + Icon = "robot", + IsDeleted = 0ul, + Name = "表单设计", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/formDesign/index", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f4cf2a3d-0714-4ca4-a691-0b363c172f82", + Application = "advanced", + Code = "sys_tenant", + Component = "PageView", + Icon = "switcher", + IsDeleted = 0ul, + Name = "SaaS租户", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/tenant", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Application = "advanced", + Code = "sys_tenant_mgr", + Component = "system/tenant/index", + IsDeleted = 0ul, + Name = "租户管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8985ec0a-5060-4812-bf47-4f3102948066", + Application = "advanced", + Code = "sys_tenant_mgr_page", + IsDeleted = 0ul, + Name = "租户查询", + OpenType = 0, + Permission = "sysTenant:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d9584afb-18de-4f7e-b992-c21ad77b1aae", + Application = "advanced", + Code = "sys_tenant_mgr_detail", + IsDeleted = 0ul, + Name = "租户详情", + OpenType = 0, + Permission = "sysTenant:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "01ae6b95-9c1e-4882-a9ac-ebb9f1868c54", + Application = "advanced", + Code = "sys_tenant_mgr_add", + IsDeleted = 0ul, + Name = "租户增加", + OpenType = 0, + Permission = "sysTenant:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "59e9f6da-151a-4201-bea1-00ef06fe5842", + Application = "advanced", + Code = "sys_tenant_mgr_delete", + IsDeleted = 0ul, + Name = "租户删除", + OpenType = 0, + Permission = "sysTenant:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "220b6a86-e65d-469b-8aa0-46c4f5e77ab8", + Application = "advanced", + Code = "sys_tenant_mgr_edit", + IsDeleted = 0ul, + Name = "租户编辑", + OpenType = 0, + Permission = "sysTenant:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysNotice", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Attachments") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("上传文件id集合"); + + b.Property("CancelTime") + .HasColumnType("datetime") + .HasComment("撤回时间"); + + b.Property("Content") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("内容"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("PublicOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicOrgId") + .HasComment("发布机构Id"); + + b.Property("PublicOrgName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("发布机构名称"); + + b.Property("PublicTime") + .HasColumnType("datetime") + .HasComment("发布时间"); + + b.Property("PublicUserId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicUserId") + .HasComment("发布人Id"); + + b.Property("PublicUserName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("发布人姓名"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("Title") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("标题"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_notice"); + + b + .HasComment("通知公告表"); + }); + + modelBuilder.Entity("Ewide.Core.SysNoticeUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NoticeId") + .HasColumnType("varchar(36)") + .HasColumnName("NoticeId") + .HasComment("通知公告Id"); + + b.Property("ReadStatus") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("ReadTime") + .HasColumnType("datetime") + .HasComment("阅读时间"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") + .HasComment("用户Id"); + + b.HasKey("Id"); + + b.ToTable("sys_notice_user"); + + b + .HasComment("通知公告用户表"); + }); + + modelBuilder.Entity("Ewide.Core.SysOauthUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AccessToken") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Token"); + + b.Property("Avatar") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("头像"); + + b.Property("Blog") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("用户网址"); + + b.Property("Company") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("所在公司"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("邮箱"); + + b.Property("Gender") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("性别"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("位置"); + + b.Property("NickName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("昵称"); + + b.Property("Phone") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Source") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("用户来源"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Uuid") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("UUID"); + + b.HasKey("Id"); + + b.ToTable("sys_oauth_user"); + + b + .HasComment("Oauth登录用户表"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AreaCode") + .HasColumnType("varchar(50) CHARACTER SET utf8mb4"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Contacts") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("联系人"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Pids"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("Tel") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("机构类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_org"); + + b + .HasComment("组织机构表"); + + b.HasData( + new + { + Id = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Code = "hxjt", + IsDeleted = 0ul, + Name = "华夏集团", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Remark = "华夏集团", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + Code = "hxjt_bj", + IsDeleted = 0ul, + Name = "华夏集团北京分公司", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", + Remark = "华夏集团北京分公司", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "127c0a5d-43ac-4370-b313-082361885aca", + Code = "hxjt_cd", + IsDeleted = 0ul, + Name = "华夏集团成都分公司", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", + Remark = "华夏集团成都分公司", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + Code = "hxjt_bj_yfb", + IsDeleted = 0ul, + Name = "研发部", + 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, + Type = 0 + }, + new + { + Id = "07322be0-2015-41f2-859e-132b5e142fca", + Code = "hxjt_bj_qhb", + IsDeleted = 0ul, + Name = "企划部", + 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, + Type = 0 + }, + new + { + Id = "49dc3f25-873d-4998-9767-46978d79d8e6", + Code = "hxjt_cd_scb", + IsDeleted = 0ul, + Name = "市场部", + 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, + Type = 0 + }, + new + { + Id = "56b7a823-cc62-492b-a91b-0b053ef2683b", + Code = "hxjt_cd_cwb", + IsDeleted = 0ul, + Name = "财务部", + 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, + Type = 0 + }, + new + { + Id = "e9f97d63-a585-40ff-bf0c-7406e785f660", + Code = "hxjt_cd_scb_2b", + IsDeleted = 0ul, + Name = "市场部二部", + 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, + Type = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysPos", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_pos"); + + b + .HasComment("职位表"); + + b.HasData( + new + { + Id = "269236c4-d74e-4e54-9d50-f6f61580a197", + Code = "zjl", + IsDeleted = 0ul, + Name = "总经理", + Remark = "总经理", + Sort = 100, + Status = 0 + }, + new + { + Id = "46c68a62-f119-4ff7-b621-0bbd77504538", + Code = "fzjl", + IsDeleted = 0ul, + Name = "副总经理", + Remark = "副总经理", + Sort = 101, + Status = 0 + }, + new + { + Id = "5bd8c466-2bca-4386-a551-daac78e3cee8", + Code = "bmjl", + IsDeleted = 0ul, + Name = "部门经理", + Remark = "部门经理", + Sort = 102, + Status = 0 + }, + new + { + Id = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66", + Code = "gzry", + IsDeleted = 0ul, + Name = "工作人员", + Remark = "工作人员", + Sort = 103, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysRole", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("DataScopeType") + .HasColumnType("int") + .HasComment("数据范围类型"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_role"); + + b + .HasComment("角色表"); + + b.HasData( + new + { + Id = "6dfe9189-ce10-434e-a7a7-5cdc46e85047", + Code = "sys_manager_role", + DataScopeType = 1, + IsDeleted = 0ul, + Name = "系统管理员", + Remark = "系统管理员", + Sort = 100, + Status = 0 + }, + new + { + Id = "cd187ebd-ab3d-4768-9669-85e2219c2910", + Code = "common_role", + DataScopeType = 5, + IsDeleted = 0ul, + Name = "普通用户", + Remark = "普通用户", + Sort = 101, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleArea", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasComment("角色Id"); + + b.Property("AreaCode") + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域代码"); + + b.HasKey("SysRoleId", "AreaCode"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_role_area"); + + b + .HasComment("角色区域自定义数据"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.HasKey("SysRoleId", "SysOrgId"); + + b.HasIndex("SysOrgId"); + + b.ToTable("sys_role_data_scope"); + + b + .HasComment("角色数据范围表"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.Property("SysMenuId") + .HasColumnType("varchar(36)") + .HasColumnName("SysMenuId") + .HasComment("菜单Id"); + + b.HasKey("SysRoleId", "SysMenuId"); + + b.HasIndex("SysMenuId"); + + b.ToTable("sys_role_menu"); + + b + .HasComment("角色菜单表"); + }); + + modelBuilder.Entity("Ewide.Core.SysTenant", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Connection") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库连接"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电子邮箱"); + + b.Property("Host") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("主机"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Phone") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Schema") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("架构"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_tenant"); + + b + .HasComment("租户表"); + + b.HasData( + new + { + Id = "506a14b7-882d-4548-96fa-a55dbe79bfa1", + Connection = "Data Source=./Ewide.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Email = "zuohuaijun@163.com", + Host = "localhost:5566", + IsDeleted = 0ul, + Name = "默认租户", + Phone = "18020030720" + }, + new + { + Id = "eed8c4a6-70d8-49fd-9566-21a6966bb702", + Connection = "Data Source=./Dilon_1.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Host = "localhost:5588", + IsDeleted = 0ul, + Name = "其他租户" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysTimer", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("BeginTime") + .HasColumnType("datetime") + .HasComment("开始时间"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Cron") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Cron表达式"); + + b.Property("DoOnce") + .HasColumnType("tinyint(1)") + .HasComment("只执行一次"); + + b.Property("EndTime") + .HasColumnType("datetime") + .HasComment("结束时间"); + + b.Property("ExecuteType") + .HasColumnType("int") + .HasComment("执行类型"); + + b.Property("Headers") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Headers"); + + b.Property("Interval") + .HasColumnType("int") + .HasComment("执行间隔时间"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("JobName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("任务名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("RequestParameters") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求参数"); + + b.Property("RequestType") + .HasColumnType("int") + .HasComment("请求类型"); + + b.Property("RequestUrl") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求url"); + + b.Property("RunNumber") + .HasColumnType("int") + .HasComment("执行次数"); + + b.Property("StartNow") + .HasColumnType("tinyint(1)") + .HasComment("立即执行"); + + b.Property("TimerType") + .HasColumnType("int") + .HasComment("定时器类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_timer"); + + b + .HasComment("定时任务表"); + + b.HasData( + new + { + Id = "971bc338-0c03-46d4-8113-c7738d54ea18", + BeginTime = new DateTime(2021, 3, 21, 0, 0, 0, 0, DateTimeKind.Local), + DoOnce = false, + ExecuteType = 0, + Interval = 30, + IsDeleted = 0ul, + JobName = "百度api", + RequestType = 2, + RequestUrl = "https://www.baidu.com", + StartNow = false, + TimerType = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Account") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("账号"); + + b.Property("AdminType") + .HasColumnType("int") + .HasComment("管理员类型-超级管理员_1、非管理员_2"); + + b.Property("Avatar") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("头像"); + + b.Property("Birthday") + .HasColumnType("datetime") + .HasComment("生日"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("邮箱"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("LastLoginIp") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("最后登录IP"); + + b.Property("LastLoginTime") + .HasColumnType("datetime") + .HasComment("最后登录时间"); + + b.Property("Name") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("姓名"); + + b.Property("NickName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("昵称"); + + b.Property("Password") + .IsRequired() + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("密码"); + + b.Property("Phone") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("手机"); + + b.Property("SecurityLevel") + .HasColumnType("int") + .HasComment("密码安全级别"); + + b.Property("Sex") + .HasColumnType("int") + .HasComment("性别-男_1、女_2"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态-正常_0、停用_1、删除_2"); + + b.Property("Tel") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_user"); + + b + .HasComment("用户表"); + + b.HasData( + new + { + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + Account = "superAdmin", + AdminType = 1, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "superAdmin", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 1, + Status = 0 + }, + new + { + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + Account = "admin", + AdminType = 1, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "admin", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 2, + Status = 0 + }, + new + { + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", + Account = "zuohuaijun", + AdminType = 2, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "zuohuaijun", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 1, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysUserArea", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("AreaCode") + .HasMaxLength(10) + .HasColumnType("varchar(10) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域代码"); + + b.HasKey("SysUserId", "AreaCode"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_user_area"); + + b + .HasComment("用户授权区域信息"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.HasKey("SysUserId", "SysOrgId"); + + b.HasIndex("SysOrgId"); + + b.ToTable("sys_user_data_scope"); + + b + .HasComment("用户数据范围表"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserRole", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.HasKey("SysUserId", "SysRoleId"); + + b.HasIndex("SysRoleId"); + + b.ToTable("sys_user_role"); + + b + .HasComment("用户角色表"); + }); + + modelBuilder.Entity("Vote.Services.Entities.Experts", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("login_code") + .HasMaxLength(36) + .HasColumnType("varchar(36) CHARACTER SET utf8mb4") + .HasComment("登录码"); + + b.HasKey("Id"); + + b.ToTable("Experts"); + + b.HasData( + new + { + Id = "08c8ad90-b44f-4270-890c-8447f086d579", + IsDeleted = 0ul, + login_code = "8YCDD9" + }, + new + { + Id = "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0", + IsDeleted = 0ul, + login_code = "SMBG3Q" + }, + new + { + Id = "0eae9b66-e00d-42cf-b41f-d6b7ebdff800", + IsDeleted = 0ul, + login_code = "XV8U1U" + }, + new + { + Id = "1b4f9504-f486-4f8f-9588-24357b9ad0e0", + IsDeleted = 0ul, + login_code = "C6FSMT" + }, + new + { + Id = "355563e6-615d-443a-bec6-d6247f4dbaf7", + IsDeleted = 0ul, + login_code = "K8H9PW" + }, + new + { + Id = "36a50b18-b513-4f89-9dab-a0a10031ec48", + IsDeleted = 0ul, + login_code = "JL022B" + }, + new + { + Id = "3d135a79-97bf-4f10-bba5-7bed90e911a3", + IsDeleted = 0ul, + login_code = "5MJQY7" + }, + new + { + Id = "439260c8-54de-48c3-977d-fe2c11ae7fe6", + IsDeleted = 0ul, + login_code = "ZFD5VL" + }, + new + { + Id = "510e42da-856e-4d93-a099-d7e998dfbd7a", + IsDeleted = 0ul, + login_code = "3GZDEW" + }, + new + { + Id = "63e8a280-90c4-4c9b-9572-74f9d4278cd4", + IsDeleted = 0ul, + login_code = "WHM9CF" + }, + new + { + Id = "86c1a965-3229-46d6-a034-de4a06655d55", + IsDeleted = 0ul, + login_code = "CWYB3P" + }, + new + { + Id = "8db1378a-2deb-4d13-b49f-9490dd1ffd1d", + IsDeleted = 0ul, + login_code = "2154MF" + }, + new + { + Id = "90234cce-2f80-40cd-922e-d9d5ccd4a3c2", + IsDeleted = 0ul, + login_code = "A4P3RZ" + }, + new + { + Id = "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d", + IsDeleted = 0ul, + login_code = "FNNUA9" + }, + new + { + Id = "9a21e83c-06ae-44bc-9b9b-cecd92a0d606", + IsDeleted = 0ul, + login_code = "97GFZQ" + }, + new + { + Id = "c5401037-33b6-433f-9dd2-054dfb93a09e", + IsDeleted = 0ul, + login_code = "TYVWMZ" + }, + new + { + Id = "d3674cdd-142f-4549-9766-4d2d3991cd76", + IsDeleted = 0ul, + login_code = "DH1HCC" + }, + new + { + Id = "e7f6f049-6bff-4479-b7fb-845c4db9bd01", + IsDeleted = 0ul, + login_code = "HCY26V" + }, + new + { + Id = "eb83bc26-e942-4b98-8adc-02688bf1a32d", + IsDeleted = 0ul, + login_code = "KZS4WS" + }, + new + { + Id = "f6afc724-1b88-4a70-8714-d047c20928a4", + IsDeleted = 0ul, + login_code = "XQLGQ8" + }); + }); + + modelBuilder.Entity("Vote.Services.Entities.Projects", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("工程名称"); + + b.Property("serial_number") + .HasColumnType("int") + .HasComment("项目序号"); + + b.Property("type") + .HasColumnType("int") + .HasComment("项目类型"); + + b.HasKey("Id"); + + b.ToTable("Projects"); + + b.HasData( + new + { + Id = "5921ad9e-7027-446d-aae3-899ad388404b", + IsDeleted = 0ul, + name = "浙江纺织服装职业技术学院中英时尚设计学院综合楼项目", + serial_number = 1, + type = 0 + }, + new + { + Id = "3e458131-6318-4e27-935e-2e4a85c877b1", + IsDeleted = 0ul, + name = "宁波诺丁汉大学图书馆及学习中心项目", + serial_number = 2, + type = 0 + }, + new + { + Id = "03d59313-3e30-4345-920e-e21455c11228", + IsDeleted = 0ul, + name = "高新区滨江绿带整治工程五期(翔海路—大东江)I标段", + serial_number = 3, + type = 0 + }, + new + { + Id = "94e3b06e-2fa6-4830-8432-383305b237b8", + IsDeleted = 0ul, + name = "太平鸟高新区男装办公楼项目", + serial_number = 4, + type = 0 + }, + new + { + Id = "26f148e5-a44e-47d5-90aa-49136b1efb6d", + IsDeleted = 0ul, + name = "慈城新城高中项目", + serial_number = 5, + type = 0 + }, + new + { + Id = "686d2b36-30a8-47c4-9050-db601d8dcb8c", + IsDeleted = 0ul, + name = "宁海县妇幼保健院保健大楼工程", + serial_number = 6, + type = 0 + }, + new + { + Id = "8118f5fd-8082-4186-a5b4-32490cbadb19", + IsDeleted = 0ul, + name = "宁波市职业技术教育中心学校(荷池校区) 改扩建项目", + serial_number = 7, + type = 0 + }, + new + { + Id = "ecaf4b26-b27e-4eed-bbf2-0deaf52495fa", + IsDeleted = 0ul, + name = "大庆北路地段配套学校(二期)", + serial_number = 8, + type = 0 + }, + new + { + Id = "bb3eee7a-4846-4177-b377-fd2804d4db72", + IsDeleted = 0ul, + name = "鄞州区钟公庙第二初级中学工程", + serial_number = 9, + type = 0 + }, + new + { + Id = "21a336c4-f730-4244-ae5a-66d4e0f8f356", + IsDeleted = 0ul, + name = "北京航空航天大学宁波创新研究院(研究生院和国际交流中心)一期(实验用房)", + serial_number = 10, + type = 0 + }, + new + { + Id = "5c504c5d-9d69-4cf8-a483-c8699f0b517e", + IsDeleted = 0ul, + name = "余姚市人民医院肿瘤治疗中心项目", + serial_number = 11, + type = 0 + }, + new + { + Id = "2b257857-4905-4176-bebe-bc8b99eef73b", + IsDeleted = 0ul, + name = "庄市中心学校迁建工程", + serial_number = 12, + type = 0 + }, + new + { + Id = "9c16ca23-f3d8-44c9-92d7-d08d6b64e4f9", + IsDeleted = 0ul, + name = "镇海区中心学校新城校区项目", + serial_number = 13, + type = 0 + }, + new + { + Id = "62696ca2-719e-41df-8bad-e182efe84963", + IsDeleted = 0ul, + name = "宁波市海曙区段塘学校扩建工程", + serial_number = 14, + type = 0 + }, + new + { + Id = "ef61f197-b194-4190-ab74-f5f78c160bd3", + IsDeleted = 0ul, + name = "慈溪市明月湖幼儿园", + serial_number = 15, + type = 0 + }, + new + { + Id = "056e05e3-2ae5-4db5-b976-f4a1809a4d1a", + IsDeleted = 0ul, + name = "北仑外国语学校工程", + serial_number = 16, + type = 0 + }, + new + { + Id = "4c9d4677-539c-45c8-8885-45f9d2c1c15e", + IsDeleted = 0ul, + name = "宁波市残疾人康复中心(宁波市康复医院)扩建工程", + serial_number = 17, + type = 0 + }, + new + { + Id = "f640a90e-71c1-4142-afb4-b9d68f9ac08f", + IsDeleted = 0ul, + name = "宁波海关宁海办事处检测报关代理服务中心项目", + serial_number = 18, + type = 0 + }, + new + { + Id = "62eb67a1-2584-4b9e-b663-9c6c1b700d42", + IsDeleted = 0ul, + name = "新能源技术与材料综合研发平台- 核用碳化硅纤维及复合材料研发及应用平台项目", + serial_number = 19, + type = 0 + }, + new + { + Id = "23a38e3e-a77c-463c-902e-02088707d1ca", + IsDeleted = 0ul, + name = "东部新城核心区以东片区C1-6#地块邱隘镇九年一贯制学校工程", + serial_number = 20, + type = 0 + }, + new + { + Id = "1e9371d1-8b01-4c55-9431-000a3fffc0b4", + IsDeleted = 0ul, + name = "宁波大红鹰学院象山影视学院工程(二期)", + serial_number = 21, + type = 0 + }, + new + { + Id = "1f9ae2cf-c7c2-4a57-b678-b0fca4bf4959", + IsDeleted = 0ul, + name = "中国·浙江海洋运动中心(亚帆中心)工程", + serial_number = 22, + type = 0 + }, + new + { + Id = "c0e62c16-bf78-4d82-8dc6-442c1f0c0adc", + IsDeleted = 0ul, + name = "宁波市黄湖监狱迁建项目I标段、Ⅱ标段、Ⅲ标段、装修工程", + serial_number = 23, + type = 0 + }, + new + { + Id = "8be3e94f-0b17-4c97-9b9d-021b922fc6a2", + IsDeleted = 0ul, + name = "新潮塘区块九年一贯制学校新建工程", + serial_number = 24, + type = 0 + }, + new + { + Id = "fad24cde-bd7c-40cf-a7e2-ce46e396f489", + IsDeleted = 0ul, + name = "顾国和中学(爱国中学)工程(门卫、教学楼A-C、教学楼D、综合楼、食堂)", + serial_number = 25, + type = 0 + }, + new + { + Id = "6e52bfbf-4095-4189-b2f7-37eb1ced0ec9", + IsDeleted = 0ul, + name = "庄市街道同心湖幼儿园(暂名)工程", + serial_number = 26, + type = 0 + }, + new + { + Id = "dc22af65-c261-4245-b319-8908fc2e77f6", + IsDeleted = 0ul, + name = "中科院上海药物所宁波临床前研究中心", + serial_number = 27, + type = 0 + }, + new + { + Id = "09955588-0f17-479b-ba4b-c1f90ca58a85", + IsDeleted = 0ul, + name = "宁波科学中学新建项目", + serial_number = 28, + type = 0 + }, + new + { + Id = "39d80b14-8735-4710-bacb-432fd12dc309", + IsDeleted = 0ul, + name = "白沙路街道后油车股份经济合作社综合服务楼", + serial_number = 29, + type = 0 + }, + new + { + Id = "aa0e4017-2304-431a-b5ed-b725a77cb810", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅴ标段", + serial_number = 30, + type = 1 + }, + new + { + Id = "0c3672ab-23f4-4a8d-9de3-97fe401f3aee", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅵ标段", + serial_number = 31, + type = 1 + }, + new + { + Id = "e7ccba65-414f-4501-af69-4d6722e21d86", + IsDeleted = 0ul, + name = "三官堂大桥及接线(江南路至中官西路)工程(主桥)", + serial_number = 32, + type = 1 + }, + new + { + Id = "68f25778-4b2f-4a91-a2dc-640a0622f389", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅳ标段", + serial_number = 33, + type = 1 + }, + new + { + Id = "03265409-52b0-43dc-85b5-0698a0367211", + IsDeleted = 0ul, + name = "杭甬复线威海互通连接线一期工程(施工)Ⅲ标段", + serial_number = 34, + type = 1 + }, + new + { + Id = "c12f36c4-6887-4beb-8b90-1c5b68006af1", + IsDeleted = 0ul, + name = "甬江北岸大庆北路(湖东路-怡西街)道路工程I标段", + serial_number = 35, + type = 1 + }, + new + { + Id = "1d6aafe6-457e-4143-82fe-b1334bdabc45", + IsDeleted = 0ul, + name = "机场快速路南延(鄞州大道-绕城高速)工程施工Ⅰ标段", + serial_number = 36, + type = 1 + }, + new + { + Id = "54e26c4e-ffc4-4493-bb4c-3f3f66f46019", + IsDeleted = 0ul, + name = "永泰公园", + serial_number = 37, + type = 1 + }, + new + { + Id = "2bc85650-b86d-44de-a152-970928376305", + IsDeleted = 0ul, + name = "三官堂大桥及接线(江南路至中官西路)工程I标", + serial_number = 38, + type = 1 + }, + new + { + Id = "5a5dffca-ad94-476a-a25d-b68df2fd4908", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅷ标段", + serial_number = 39, + type = 1 + }, + new + { + Id = "c970ff56-ff36-4c64-a8a4-832c92e2f4bf", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅶ标段", + serial_number = 40, + type = 1 + }, + new + { + Id = "9742d735-e769-4355-8b26-5067a35b75bf", + IsDeleted = 0ul, + name = "西二环北延工程(明州路-中横线)", + serial_number = 41, + type = 1 + }, + new + { + Id = "35870caf-f7f5-4302-95d9-fb0c05462c40", + IsDeleted = 0ul, + name = "鄞奉路(新典路-三孔碶桥)道路工程", + serial_number = 42, + type = 1 + }, + new + { + Id = "b9690320-4839-40bb-8703-3b2724ce0578", + IsDeleted = 0ul, + name = "会展路(盛梅路-沙洲路)及南侧河道绿地工程", + serial_number = 43, + type = 1 + }, + new + { + Id = "7e1989e6-bf05-4fbc-b397-dc74069d301d", + IsDeleted = 0ul, + name = "宁波杭州湾新区南部新城海泉湾规划三路市政工程", + serial_number = 44, + type = 1 + }, + new + { + Id = "016e39e3-6fb9-4d8f-a5f8-2478b4e389e1", + IsDeleted = 0ul, + name = "杭州湾新区滨海新城启动区银滩路等六条路市政工程", + serial_number = 45, + type = 1 + }, + new + { + Id = "b38cedeb-f524-44ef-be8f-6cd1f7c54b59", + IsDeleted = 0ul, + name = "杭甬复线威海互通连接线一期工程(施工)Ⅰ标段", + serial_number = 46, + type = 1 + }, + new + { + Id = "8a5fc13a-d5aa-44b2-99dd-c2834ac00520", + IsDeleted = 0ul, + name = "杭甬复线威海互通连接线一期工程(施工)Ⅱ标段", + serial_number = 47, + type = 1 + }, + new + { + Id = "49dd82e4-b9b9-4d26-ae87-9f9092f367d1", + IsDeleted = 0ul, + name = "慈溪市北部污水处理厂提标改造工程", + serial_number = 48, + type = 1 + }, + new + { + Id = "a4d7196d-b9f3-439f-8258-4da4c04b177a", + IsDeleted = 0ul, + name = "通途路(世纪大道~东外环)综合管廊工程施工Ⅱ标段", + serial_number = 49, + type = 1 + }, + new + { + Id = "7f046001-a58d-400e-b97d-d4b55f79b6eb", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅲ标段", + serial_number = 50, + type = 1 + }, + new + { + Id = "bddeb30e-59bb-462b-bb69-5fe557b20614", + IsDeleted = 0ul, + name = "梅山保税港区港湾路(二期)工程", + serial_number = 51, + type = 1 + }, + new + { + Id = "cb5725b1-06cd-42da-abc4-c4412cecb627", + IsDeleted = 0ul, + name = "三官堂大桥及接线(江南路至中官西路)工程接线部分II标段", + serial_number = 52, + type = 1 + }, + new + { + Id = "19a78c25-d576-4fa0-872e-ae431a27f1fe", + IsDeleted = 0ul, + name = "霞浦污水泵站污水压力管工程", + serial_number = 53, + type = 1 + }, + new + { + Id = "92d860ce-94f5-4468-976d-6f4bc6d3a005", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅱ标段", + serial_number = 54, + type = 1 + }, + new + { + Id = "320907e0-5092-467c-ad38-9883af7e7694", + IsDeleted = 0ul, + name = "新长邱线拓宽改造工程(施工)2标段", + serial_number = 55, + type = 1 + }, + new + { + Id = "9f9d3b0f-0a9d-48cf-98a3-9ec2d805e8a9", + IsDeleted = 0ul, + name = "姚江东路(环城北路-机场路)工程I标段", + serial_number = 56, + type = 1 + }, + new + { + Id = "74c4cf12-880d-49f1-bd53-047bd7f858ac", + IsDeleted = 0ul, + name = "铁路平改立新大路(329国道 -金牌公路)工程", + serial_number = 57, + type = 1 + }, + new + { + Id = "37a5cc48-fe51-4493-b5bd-2dd0b42088b3", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅸ标段", + serial_number = 58, + type = 1 + }, + new + { + Id = "9ef49c31-8224-4c03-91e8-821d7b36b377", + IsDeleted = 0ul, + name = "姚江南岸滨江休闲带(机场路-青林渡路)工程", + serial_number = 59, + type = 1 + }, + new + { + Id = "8424686e-6e8a-49ca-b1db-8635ebda2157", + IsDeleted = 0ul, + name = "宁波北仑柴桥净化水厂EPC总承包项目", + serial_number = 60, + type = 1 + }, + new + { + Id = "44eebc4d-b467-477b-8c01-65931593722a", + IsDeleted = 0ul, + name = "沿山干河、陈渡界北三河周边剩余地块绿带工程", + serial_number = 61, + type = 1 + }, + new + { + Id = "5c4796db-5b4a-4259-b8b1-d89846d984ee", + IsDeleted = 0ul, + name = "铸锋路(康庄北路-通园路)拓宽改建工程Ⅱ标段", + serial_number = 62, + type = 1 + }, + new + { + Id = "a4054e2d-7f81-411e-8673-7b05938654f7", + IsDeleted = 0ul, + name = "柴桥临港产业园横二路(纬中路-环区路)工程", + serial_number = 63, + type = 1 + }, + new + { + Id = "85f873b8-ae62-4e5a-bab8-92332304368a", + IsDeleted = 0ul, + name = "机场快速路南延工程(绕城高速至岳林东路南)施工Ⅰ标段", + serial_number = 64, + type = 1 + }, + new + { + Id = "5e0e10fa-a4cc-4a7f-b5a5-9b0ca0e0a9af", + IsDeleted = 0ul, + name = "宁波杭州湾新区南部新城海泉湾博华路市政工程项目/宁波杭州湾新区南部新城海泉湾规划二路市政工程项目", + serial_number = 65, + type = 1 + }, + new + { + Id = "562be9ce-e9fd-4d81-b8a2-636fbc25d9c1", + IsDeleted = 0ul, + name = "宁波杭州湾新区海川大道(七塘公路—滨海一路)市政工程标段Ⅰ", + serial_number = 66, + type = 1 + }, + new + { + Id = "d52f2db9-07a5-4b77-add5-65c3b0a021e1", + IsDeleted = 0ul, + name = "梅景路改造(冬青路-渡驾桥江)工程", + serial_number = 67, + type = 1 + }, + new + { + Id = "a9be40e3-99b3-4d94-aaaa-92711f853075", + IsDeleted = 0ul, + name = "云飞路三期(康庄南路-长岛花园东侧路)工 程", + serial_number = 68, + type = 1 + }, + new + { + Id = "9b654b10-36d8-4530-8390-1406dc38bd84", + IsDeleted = 0ul, + name = "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)一标段", + serial_number = 69, + type = 1 + }, + new + { + Id = "594b2558-3c4d-4af5-a79e-17c74886b0b9", + IsDeleted = 0ul, + name = "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)二标段", + serial_number = 70, + type = 1 + }, + new + { + Id = "a3667aa7-9403-4cc6-a85e-42b96815ac32", + IsDeleted = 0ul, + name = "灵岩山路东延及沿山河南路延伸段工程一期", + serial_number = 71, + type = 1 + }, + new + { + Id = "6e8d85df-e9ed-4386-9b15-7c19eaccb199", + IsDeleted = 0ul, + name = "慈溪高新区基础设施建设四期", + serial_number = 72, + type = 1 + }, + new + { + Id = "996d15ac-467d-4ff8-8935-76517cc84fb7", + IsDeleted = 0ul, + name = "慈溪滨海经济开发区龙山滨海新城蓬苑路(横五路-横四路)工程", + serial_number = 73, + type = 1 + }, + new + { + Id = "91fd6b72-a524-480d-aadf-6e3bae73fbcb", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4001标段(翠柏里站)施工", + serial_number = 74, + type = 2 + }, + new + { + Id = "051a42c4-d157-47db-9887-12d5ea917922", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4011标段施工", + serial_number = 75, + type = 2 + }, + new + { + Id = "a25b1db3-23a2-4ea5-b10c-f020325c292f", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程供电系统安装施工Ⅱ标段", + serial_number = 76, + type = 2 + }, + new + { + Id = "5a9e2016-1c56-4435-8aed-4221bff231da", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第一批)TJ4015标段施工", + serial_number = 77, + type = 2 + }, + new + { + Id = "9c670713-7d5f-4372-ab7c-246e8e6dd3cf", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4013标段施工", + serial_number = 78, + type = 2 + }, + new + { + Id = "e4f7391b-a0a4-48d0-a803-4be81e52bbb9", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程JDSG4006标段车站机电安装施工", + serial_number = 79, + type = 2 + }, + new + { + Id = "d7c8a941-e37a-4889-b862-2b4c2fb8a992", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第四批)TJ4008标段施工", + serial_number = 80, + type = 2 + }, + new + { + Id = "1ed52273-3c72-4f79-919c-0c4020e4cdf3", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第四批)TJ4017标段施工", + serial_number = 81, + type = 2 + }, + new + { + Id = "aa28f286-cc5d-4051-978d-43ef4014cf5e", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4016标", + serial_number = 82, + type = 2 + }, + new + { + Id = "a3f6eea4-0349-4ddd-bfa7-33c0427bc90a", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程地下段轨道工程施工Ⅱ标段", + serial_number = 83, + type = 2 + }, + new + { + Id = "c04fa383-a9b0-47e4-a91c-9f1b657ac55b", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第二批)TJ4004标段施工", + serial_number = 84, + type = 2 + }, + new + { + Id = "40b27864-99c0-4d04-889c-5f9ff17cf726", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4018标", + serial_number = 85, + type = 2 + }, + new + { + Id = "b05f4d26-1b04-4a23-a295-8848ce4aa73e", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4012标段施工", + serial_number = 86, + type = 2 + }, + new + { + Id = "424b6a6a-8e16-4e5e-936b-25a73a3c244b", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第五批)TJ4007标段施工", + serial_number = 87, + type = 2 + }, + new + { + Id = "1a317eb0-a5fd-420a-b273-ca9d6a006921", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程地下段轨道工程施工I标段", + serial_number = 88, + type = 2 + }, + new + { + Id = "8fce8773-1eb4-4031-b9bd-60ce0fab8c18", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程JDSG4004标段车站机电安装施工", + serial_number = 89, + type = 2 + }, + new + { + Id = "d25f90c3-8125-4821-86cf-fbd3b879dd4b", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第四批)TJ4003标段施工", + serial_number = 90, + type = 2 + }, + new + { + Id = "25d0bc9e-30db-4768-9996-624312a0450c", + IsDeleted = 0ul, + name = "协丰220千伏变电站工程", + serial_number = 91, + type = 3 + }, + new + { + Id = "1d3333dd-ed50-4dcc-b210-2d44190febde", + IsDeleted = 0ul, + name = "新乐220千伏变电站整体改造工程", + serial_number = 92, + type = 3 + }, + new + { + Id = "b23702d5-9c73-4c79-aa63-fe2245f4d65d", + IsDeleted = 0ul, + name = "38省道宁海桥头胡至深甽段改建工程", + serial_number = 93, + type = 4 + }, + new + { + Id = "88909223-8273-4b3d-9b56-ba32e038ed35", + IsDeleted = 0ul, + name = "71省道盛宁线东陈至茅洋段改建工程", + serial_number = 94, + type = 4 + }, + new + { + Id = "f3ed2aeb-ac40-4580-bb37-008bea343731", + IsDeleted = 0ul, + name = "明州大道(洞桥至云龙段)工程第IV-2合同段", + serial_number = 95, + type = 4 + }, + new + { + Id = "4743c1eb-7135-4ea9-81f8-cf6d825e0ad5", + IsDeleted = 0ul, + name = "沿海中线北仑郭巨段(郭巨互通-北堤互通)拓宽工程", + serial_number = 96, + type = 4 + }, + new + { + Id = "4dcf10bd-93e6-43aa-8e18-9410392a8701", + IsDeleted = 0ul, + name = "梅山磨头碶移位及配套河道工程", + serial_number = 97, + type = 5 + }, + new + { + Id = "88b56348-6d04-45b4-8dc5-ba4c3b5303a7", + IsDeleted = 0ul, + name = "余姚市海塘除险治江围涂四期工程--临海北顺堤堤顶道路、堤岸防护及河道配套工程", + serial_number = 98, + type = 5 + }, + new + { + Id = "f2dc17f8-7bd1-4f6e-b16a-674e1ec34ed0", + IsDeleted = 0ul, + name = "庄桥机场周边区域水环境治理工程(江北大河整治工程二期庄桥段)", + serial_number = 99, + type = 5 + }, + new + { + Id = "64d400e2-0247-4c74-a02e-f32753292095", + IsDeleted = 0ul, + name = "掌起镇任佳溪村防洪分流(小流域治理)工程", + serial_number = 100, + type = 5 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysDictData", b => + { + b.HasOne("Ewide.Core.SysDictType", "SysDictType") + .WithMany("SysDictDatas") + .HasForeignKey("TypeId"); + + b.Navigation("SysDictType"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => + { + b.HasOne("Ewide.Core.SysEmp", "SysEmp") + .WithMany() + .HasForeignKey("SysEmpId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany() + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysPos", "SysPos") + .WithMany() + .HasForeignKey("SysPosId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysEmp"); + + b.Navigation("SysOrg"); + + b.Navigation("SysPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpPos", b => + { + b.HasOne("Ewide.Core.SysEmp", "SysEmp") + .WithMany("SysEmpPos") + .HasForeignKey("SysEmpId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysPos", "SysPos") + .WithMany("SysEmpPos") + .HasForeignKey("SysPosId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysEmp"); + + b.Navigation("SysPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysOrgs") + .HasForeignKey("AreaCode"); + + b.Navigation("Area"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleArea", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysRoleAreas") + .HasForeignKey("AreaCode") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleAreas") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Area"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => + { + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany("SysRoleDataScopes") + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleDataScopes") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysOrg"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => + { + b.HasOne("Ewide.Core.SysMenu", "SysMenu") + .WithMany("SysRoleMenus") + .HasForeignKey("SysMenuId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleMenus") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysMenu"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserArea", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysUserAreas") + .HasForeignKey("AreaCode") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserAreas") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Area"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => + { + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany("SysUserDataScopes") + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserDataScopes") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysOrg"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserRole", b => + { + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysUserRoles") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserRoles") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysRole"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysAreaCode", b => + { + b.Navigation("SysOrgs"); + + b.Navigation("SysRoleAreas"); + + b.Navigation("SysUserAreas"); + }); + + modelBuilder.Entity("Ewide.Core.SysDictType", b => + { + b.Navigation("SysDictDatas"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmp", b => + { + b.Navigation("SysEmpPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysMenu", b => + { + b.Navigation("SysRoleMenus"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.Navigation("SysRoleDataScopes"); + + b.Navigation("SysUserDataScopes"); + }); + + modelBuilder.Entity("Ewide.Core.SysPos", b => + { + b.Navigation("SysEmpPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysRole", b => + { + b.Navigation("SysRoleAreas"); + + b.Navigation("SysRoleDataScopes"); + + b.Navigation("SysRoleMenus"); + + b.Navigation("SysUserRoles"); + }); + + modelBuilder.Entity("Ewide.Core.SysUser", b => + { + b.Navigation("SysUserAreas"); + + b.Navigation("SysUserDataScopes"); + + b.Navigation("SysUserRoles"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330110215_v1.0.3.cs b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330110215_v1.0.3.cs new file mode 100644 index 0000000..1194065 --- /dev/null +++ b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330110215_v1.0.3.cs @@ -0,0 +1,267 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Ewide.Database.Migrations.Migrations +{ + public partial class v103 : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "2155e5a0-d6e9-4273-81d1-750d41bb1684"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "21fe40e4-9cb1-4993-910b-2b3c7c4d6d68"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "2a08cae0-ddff-42e0-9435-75651f7ff2d4"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "2c657c98-a68e-42d6-ac51-f73b283cf913"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "439ced63-e210-4171-b24a-47876a7921f7"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "43cd3a6d-ddf1-4745-b140-e88ce8c744b6"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "45048c78-3ec8-49d1-bfb4-e1225d491562"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "5337276d-438e-42d5-b9d1-d849709da702"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "717be2ce-0732-4e71-b6c2-6b156ea99f89"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "754d5f4b-8cef-4745-8e1c-9cec9cc41853"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "7706b8b3-191f-41f4-a2e1-a201f6c690c3"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "83f93ea6-bd79-4b6d-858d-156936fd7607"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "90f1c279-d95c-4bf3-85d2-c2d0d67959a2"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "9e97207c-eaed-4033-921b-c272d3cb38cc"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "a7f19131-4208-449b-9557-2ef5a580ac02"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "c041100b-7aee-4823-b2bb-cd802fdd60a2"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "c6ef020b-1073-4250-b862-7190e560eb45"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "cae38479-e03f-4d18-aee0-ef78cd654ba6"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "d11d2ec7-3760-4b7d-bc8b-e0d3696f52d4"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "fdf47078-a1ec-4582-95e4-f9ab4f1f1c91"); + + migrationBuilder.InsertData( + table: "Experts", + columns: new[] { "Id", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "login_code" }, + values: new object[,] + { + { "08c8ad90-b44f-4270-890c-8447f086d579", null, null, null, 0ul, null, null, null, "8YCDD9" }, + { "e7f6f049-6bff-4479-b7fb-845c4db9bd01", null, null, null, 0ul, null, null, null, "HCY26V" }, + { "d3674cdd-142f-4549-9766-4d2d3991cd76", null, null, null, 0ul, null, null, null, "DH1HCC" }, + { "c5401037-33b6-433f-9dd2-054dfb93a09e", null, null, null, 0ul, null, null, null, "TYVWMZ" }, + { "9a21e83c-06ae-44bc-9b9b-cecd92a0d606", null, null, null, 0ul, null, null, null, "97GFZQ" }, + { "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d", null, null, null, 0ul, null, null, null, "FNNUA9" }, + { "90234cce-2f80-40cd-922e-d9d5ccd4a3c2", null, null, null, 0ul, null, null, null, "A4P3RZ" }, + { "8db1378a-2deb-4d13-b49f-9490dd1ffd1d", null, null, null, 0ul, null, null, null, "2154MF" }, + { "86c1a965-3229-46d6-a034-de4a06655d55", null, null, null, 0ul, null, null, null, "CWYB3P" }, + { "63e8a280-90c4-4c9b-9572-74f9d4278cd4", null, null, null, 0ul, null, null, null, "WHM9CF" }, + { "510e42da-856e-4d93-a099-d7e998dfbd7a", null, null, null, 0ul, null, null, null, "3GZDEW" }, + { "439260c8-54de-48c3-977d-fe2c11ae7fe6", null, null, null, 0ul, null, null, null, "ZFD5VL" }, + { "3d135a79-97bf-4f10-bba5-7bed90e911a3", null, null, null, 0ul, null, null, null, "5MJQY7" }, + { "36a50b18-b513-4f89-9dab-a0a10031ec48", null, null, null, 0ul, null, null, null, "JL022B" }, + { "355563e6-615d-443a-bec6-d6247f4dbaf7", null, null, null, 0ul, null, null, null, "K8H9PW" }, + { "1b4f9504-f486-4f8f-9588-24357b9ad0e0", null, null, null, 0ul, null, null, null, "C6FSMT" }, + { "0eae9b66-e00d-42cf-b41f-d6b7ebdff800", null, null, null, 0ul, null, null, null, "XV8U1U" }, + { "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0", null, null, null, 0ul, null, null, null, "SMBG3Q" }, + { "eb83bc26-e942-4b98-8adc-02688bf1a32d", null, null, null, 0ul, null, null, null, "KZS4WS" }, + { "f6afc724-1b88-4a70-8714-d047c20928a4", null, null, null, 0ul, null, null, null, "XQLGQ8" } + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "08c8ad90-b44f-4270-890c-8447f086d579"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "0eae9b66-e00d-42cf-b41f-d6b7ebdff800"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "1b4f9504-f486-4f8f-9588-24357b9ad0e0"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "355563e6-615d-443a-bec6-d6247f4dbaf7"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "36a50b18-b513-4f89-9dab-a0a10031ec48"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "3d135a79-97bf-4f10-bba5-7bed90e911a3"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "439260c8-54de-48c3-977d-fe2c11ae7fe6"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "510e42da-856e-4d93-a099-d7e998dfbd7a"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "63e8a280-90c4-4c9b-9572-74f9d4278cd4"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "86c1a965-3229-46d6-a034-de4a06655d55"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "8db1378a-2deb-4d13-b49f-9490dd1ffd1d"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "90234cce-2f80-40cd-922e-d9d5ccd4a3c2"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "9a21e83c-06ae-44bc-9b9b-cecd92a0d606"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "c5401037-33b6-433f-9dd2-054dfb93a09e"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "d3674cdd-142f-4549-9766-4d2d3991cd76"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "e7f6f049-6bff-4479-b7fb-845c4db9bd01"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "eb83bc26-e942-4b98-8adc-02688bf1a32d"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "f6afc724-1b88-4a70-8714-d047c20928a4"); + + migrationBuilder.InsertData( + table: "Experts", + columns: new[] { "Id", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "login_code" }, + values: new object[,] + { + { "c6ef020b-1073-4250-b862-7190e560eb45", null, null, null, 0ul, null, null, null, "0WDP23" }, + { "c041100b-7aee-4823-b2bb-cd802fdd60a2", null, null, null, 0ul, null, null, null, "DVLXMV" }, + { "5337276d-438e-42d5-b9d1-d849709da702", null, null, null, 0ul, null, null, null, "XFMKHX" }, + { "83f93ea6-bd79-4b6d-858d-156936fd7607", null, null, null, 0ul, null, null, null, "TL5FKN" }, + { "2c657c98-a68e-42d6-ac51-f73b283cf913", null, null, null, 0ul, null, null, null, "FRCYF7" }, + { "754d5f4b-8cef-4745-8e1c-9cec9cc41853", null, null, null, 0ul, null, null, null, "G9QFPQ" }, + { "45048c78-3ec8-49d1-bfb4-e1225d491562", null, null, null, 0ul, null, null, null, "Y0QT57" }, + { "d11d2ec7-3760-4b7d-bc8b-e0d3696f52d4", null, null, null, 0ul, null, null, null, "FQA43L" }, + { "a7f19131-4208-449b-9557-2ef5a580ac02", null, null, null, 0ul, null, null, null, "GT9NFN" }, + { "90f1c279-d95c-4bf3-85d2-c2d0d67959a2", null, null, null, 0ul, null, null, null, "YSPXPG" }, + { "439ced63-e210-4171-b24a-47876a7921f7", null, null, null, 0ul, null, null, null, "X6HDHP" }, + { "cae38479-e03f-4d18-aee0-ef78cd654ba6", null, null, null, 0ul, null, null, null, "9Q5SJ3" }, + { "7706b8b3-191f-41f4-a2e1-a201f6c690c3", null, null, null, 0ul, null, null, null, "GQKLL2" }, + { "2a08cae0-ddff-42e0-9435-75651f7ff2d4", null, null, null, 0ul, null, null, null, "PRU0AP" }, + { "9e97207c-eaed-4033-921b-c272d3cb38cc", null, null, null, 0ul, null, null, null, "EGS0XD" }, + { "717be2ce-0732-4e71-b6c2-6b156ea99f89", null, null, null, 0ul, null, null, null, "XY1ZW3" }, + { "2155e5a0-d6e9-4273-81d1-750d41bb1684", null, null, null, 0ul, null, null, null, "HG1M4D" }, + { "fdf47078-a1ec-4582-95e4-f9ab4f1f1c91", null, null, null, 0ul, null, null, null, "NAK68F" }, + { "21fe40e4-9cb1-4993-910b-2b3c7c4d6d68", null, null, null, 0ul, null, null, null, "CBKQC1" }, + { "43cd3a6d-ddf1-4745-b140-e88ce8c744b6", null, null, null, 0ul, null, null, null, "QKKQJ3" } + }); + } + } +} diff --git a/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330111523_v1.0.4.Designer.cs b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330111523_v1.0.4.Designer.cs new file mode 100644 index 0000000..5e3fe2c --- /dev/null +++ b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330111523_v1.0.4.Designer.cs @@ -0,0 +1,7229 @@ +// +using System; +using Ewide.EntityFramework.Core; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +namespace Ewide.Database.Migrations.Migrations +{ + [DbContext(typeof(DefaultDbContext))] + [Migration("20220330111523_v1.0.4")] + partial class v104 + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("Relational:MaxIdentifierLength", 64) + .HasAnnotation("ProductVersion", "5.0.15"); + + modelBuilder.Entity("Ewide.Core.SysApp", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Active") + .HasColumnType("bit") + .HasColumnName("Active") + .HasComment("是否默认激活"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Color") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标颜色"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Icon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_app"); + + b + .HasComment("系统应用表"); + + b.HasData( + new + { + Id = "8b2aeb5e-09a6-4afd-bcae-8ee8e5a1e6ec", + Active = 0ul, + Code = "busapp", + IsDeleted = 0ul, + Name = "业务应用", + Sort = 100, + Status = 0 + }, + new + { + Id = "d781b8f1-0d08-48c8-b7a5-ed75ddfa676c", + Active = 1ul, + Code = "system", + IsDeleted = 0ul, + Name = "系统管理", + Sort = 100, + Status = 0 + }, + new + { + Id = "850ab86f-cd6a-4d49-b920-77dfa5d78813", + Active = 0ul, + Code = "system_tool", + IsDeleted = 0ul, + Name = "系统工具", + Sort = 100, + Status = 0 + }, + new + { + Id = "05a32be5-82e8-423f-affa-e17232a63ee1", + Active = 0ul, + Code = "advanced", + IsDeleted = 0ul, + Name = "高级功能", + Sort = 100, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysAreaCode", b => + { + b.Property("Code") + .HasMaxLength(50) + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域编码"); + + b.Property("AdCode") + .HasMaxLength(50) + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("区域的行政编码"); + + b.Property("LevelType") + .HasColumnType("int") + .HasComment("类别"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("varchar(100) CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Note") + .HasMaxLength(1000) + .HasColumnType("varchar(1000) CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.HasKey("Code"); + + b.ToTable("sys_area_code"); + + b + .HasComment("区域表"); + + b.HasData( + new + { + Code = "3302", + AdCode = "3302", + LevelType = 1, + Name = "XX市", + Note = "XX市", + Sort = 0 + }, + new + { + Code = "330266", + AdCode = "330266", + LevelType = 2, + Name = "测试区", + Note = "测试区", + Sort = 100 + }, + new + { + Code = "330266001", + AdCode = "330266001", + LevelType = 3, + Name = "测试街道", + Note = "测试街道", + Sort = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysCodeGen", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AuthorName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("作者姓名"); + + b.Property("BusName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("业务名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("GenerateType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("生成方式"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NameSpace") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("命名空间"); + + b.Property("TableName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库表名"); + + b.Property("TablePrefix") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否移除表前缀"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_code_gen"); + + b + .HasComment("代码生成表"); + }); + + modelBuilder.Entity("Ewide.Core.SysCodeGenConfig", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CodeGenId") + .HasColumnType("varchar(36)") + .HasColumnName("CodeGenId") + .HasComment("代码生成主表ID"); + + b.Property("ColumnComment") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("字段描述"); + + b.Property("ColumnKey") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("主外键"); + + b.Property("ColumnName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库字段名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("DataType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库中类型"); + + b.Property("DictTypeCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("字典Code"); + + b.Property("EffectType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("作用类型"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NetType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment(".NET数据类型"); + + b.Property("QueryType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("查询方式"); + + b.Property("QueryWhether") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否是查询条件"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("WhetherAddUpdate") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("增改"); + + b.Property("WhetherCommon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否通用字段"); + + b.Property("WhetherRequired") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否必填"); + + b.Property("WhetherRetract") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列表是否缩进"); + + b.Property("WhetherTable") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列表显示"); + + b.HasKey("Id"); + + b.ToTable("sys_code_gen_config"); + + b + .HasComment("代码生成字段配置表"); + }); + + modelBuilder.Entity("Ewide.Core.SysConfig", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("GroupCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("常量所属分类的编码"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("SysFlag") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否是系统参数"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Value") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("属性值"); + + b.HasKey("Id"); + + b.ToTable("sys_config"); + + b + .HasComment("参数配置表"); + + b.HasData( + new + { + Id = "7c2765cd-d39b-4772-8d6c-0dbcdcfa1ff8", + Code = "DILON_JWT_SECRET", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "jwt密钥", + Remark = "(重要)jwt密钥,默认为空,自行设置", + Status = 0, + SysFlag = "Y", + Value = "xiaonuo" + }, + new + { + Id = "e3553657-14cf-4c26-ba7b-dbb4bfd4bc55", + Code = "DILON_DEFAULT_PASSWORD", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "默认密码", + Remark = "默认密码", + Status = 0, + SysFlag = "Y", + Value = "123456" + }, + new + { + Id = "2c677cd2-2a54-46c6-971d-f9fe20f101f3", + Code = "DILON_TOKEN_EXPIRE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "token过期时间", + Remark = "token过期时间(单位:秒)", + Status = 0, + SysFlag = "Y", + Value = "86400" + }, + new + { + Id = "8938506d-2e00-44e0-8592-48453d43f9f5", + Code = "DILON_SESSION_EXPIRE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "session会话过期时间", + Remark = "session会话过期时间(单位:秒)", + Status = 0, + SysFlag = "Y", + Value = "7200" + }, + new + { + Id = "beb2e9e7-f4d9-43b1-bfab-3557ea232f8d", + Code = "DILON_ALIYUN_SMS_ACCESSKEY_ID", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信keyId", + Remark = "阿里云短信keyId", + Status = 0, + SysFlag = "Y", + Value = "你的keyId" + }, + new + { + Id = "ead14cd0-9fd4-4fd6-b75c-239d8b2ebed8", + Code = "DILON_ALIYUN_SMS_ACCESSKEY_SECRET", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信secret", + Remark = "阿里云短信secret", + Status = 0, + SysFlag = "Y", + Value = "你的secret" + }, + new + { + Id = "beaaafc2-3fdf-42af-9b06-ead3a6dd6306", + Code = "DILON_ALIYUN_SMS_SIGN_NAME", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信签名", + Remark = "阿里云短信签名", + Status = 0, + SysFlag = "Y", + Value = "你的签名" + }, + new + { + Id = "e26a10cf-911a-4fe0-a113-76965be749a0", + Code = "DILON_ALIYUN_SMS_LOGIN_TEMPLATE_CODE", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信-登录模板号", + Remark = "阿里云短信-登录模板号", + Status = 0, + SysFlag = "Y", + Value = "SMS_1877123456" + }, + new + { + Id = "24d3f286-efca-49af-91b4-e3ce42cce36e", + Code = "DILON_ALIYUN_SMS_INVALIDATE_MINUTES", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信默认失效时间", + Remark = "阿里云短信默认失效时间(单位:分钟)", + Status = 0, + SysFlag = "Y", + Value = "5" + }, + new + { + Id = "c6540a07-ce32-47b4-ab83-b647bdb14491", + Code = "DILON_TENCENT_SMS_SECRET_ID", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信secretId", + Remark = "腾讯云短信secretId", + Status = 0, + SysFlag = "Y", + Value = "你的secretId" + }, + new + { + Id = "a0412212-d50b-42aa-9484-3cef8fe3cc59", + Code = "DILON_TENCENT_SMS_SECRET_KEY", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信secretKey", + Remark = "腾讯云短信secretKey", + Status = 0, + SysFlag = "Y", + Value = "你的secretkey" + }, + new + { + Id = "c928ca11-5137-4b71-bf1c-f3bc95bcd34d", + Code = "DILON_TENCENT_SMS_SDK_APP_ID", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信sdkAppId", + Remark = "腾讯云短信sdkAppId", + Status = 0, + SysFlag = "Y", + Value = "1400375123" + }, + new + { + Id = "16ce1b6e-c8ad-4299-9293-6caff0e5cb49", + Code = "DILON_TENCENT_SMS_SIGN", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信签名", + Remark = "腾讯云短信签名", + Status = 0, + SysFlag = "Y", + Value = "你的签名" + }, + new + { + Id = "66e63d64-b7eb-4e6a-b5b6-c87811c2e700", + Code = "DILON_EMAIL_HOST", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱host", + Remark = "邮箱host", + Status = 0, + SysFlag = "Y", + Value = "smtp.126.com" + }, + new + { + Id = "997a9bc6-22ed-4fe6-a20c-c3c2a0b682a0", + Code = "DILON_EMAIL_USERNAME", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱用户名", + Remark = "邮箱用户名", + Status = 0, + SysFlag = "Y", + Value = "test@126.com" + }, + new + { + Id = "633d1851-41d9-4ebd-b83b-3aa4501cd1a7", + Code = "DILON_EMAIL_PASSWORD", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱密码", + Remark = "邮箱密码", + Status = 0, + SysFlag = "Y", + Value = "你的邮箱密码" + }, + new + { + Id = "67e468f7-e791-4e91-a896-62e9f7411635", + Code = "DILON_EMAIL_PORT", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱端口", + Remark = "邮箱端口", + Status = 0, + SysFlag = "Y", + Value = "465" + }, + new + { + Id = "dc462c05-de23-4f90-bcdc-88de4abcdf22", + Code = "DILON_EMAIL_SSL", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱是否开启ssl", + Remark = "邮箱是否开启ssl", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "8beac2a0-4c67-4499-a7ce-27e989546ce9", + Code = "DILON_EMAIL_FROM", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱发件人", + Remark = "邮箱发件人", + Status = 0, + SysFlag = "Y", + Value = "test@126.com" + }, + new + { + Id = "55756524-ecb8-444e-9cdd-a0fc767c4b96", + Code = "DILON_FILE_UPLOAD_PATH_FOR_WINDOWS", + GroupCode = "FILE_PATH", + IsDeleted = 0ul, + Name = "Win本地上传文件路径", + Remark = "Win本地上传文件路径", + Status = 0, + SysFlag = "Y", + Value = "D:/tmp" + }, + new + { + Id = "d2db41ee-ce1f-46de-ac00-5860634afed9", + Code = "DILON_FILE_UPLOAD_PATH_FOR_LINUX", + GroupCode = "FILE_PATH", + IsDeleted = 0ul, + Name = "Linux/Mac本地上传文件路径", + Remark = "Linux/Mac本地上传文件路径", + Status = 0, + SysFlag = "Y", + Value = "/tmp" + }, + new + { + Id = "ff8debdd-eca0-4f91-8213-e2080f76b35d", + Code = "DILON_UN_XSS_FILTER_URL", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "放开XSS过滤的接口", + Remark = "多个url可以用英文逗号隔开", + Status = 0, + SysFlag = "Y", + Value = "/demo/xssfilter,/demo/unxss" + }, + new + { + Id = "5584fb84-f580-463f-b06d-bbb80a4dfb72", + Code = "DILON_ENABLE_SINGLE_LOGIN", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "单用户登陆的开关", + Remark = "true-打开,false-关闭,如果一个人登录两次,就会将上一次登陆挤下去", + Status = 0, + SysFlag = "Y", + Value = "false" + }, + new + { + Id = "53b0afb2-4917-4b85-bcca-fe7c7723ae22", + Code = "DILON_CAPTCHA_OPEN", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "登录验证码的开关", + Remark = "true-打开,false-关闭", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "974740d8-8647-4cf8-8102-542eea53e97f", + Code = "DILON_DRUID_USERNAME", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "Druid监控登录账号", + Remark = "Druid监控登录账号", + Status = 0, + SysFlag = "Y", + Value = "superAdmin" + }, + new + { + Id = "8cee44ea-ba4c-42db-a57d-69b8b5316ca5", + Code = "DILON_DRUID_PASSWORD", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "Druid监控界面登录密码", + Remark = "Druid监控界面登录密码", + Status = 0, + SysFlag = "Y", + Value = "123456" + }, + new + { + Id = "efc235ab-9b05-4820-afe4-32a1eb59e4de", + Code = "DILON_IP_GEO_API", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "阿里云定位api接口地址", + Remark = "阿里云定位api接口地址", + Status = 0, + SysFlag = "Y", + Value = "http://api01.aliyun.venuscn.com/ip?ip=%s" + }, + new + { + Id = "d3597d8a-562a-4b24-93c7-8655c5445d74", + Code = "DILON_IP_GEO_APP_CODE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "阿里云定位appCode", + Remark = "阿里云定位appCode", + Status = 0, + SysFlag = "Y", + Value = "461535aabeae4f34861884d392f5d452" + }, + new + { + Id = "59c8a6f2-9e3c-4e9e-b9cf-8ecad5f0cb45", + Code = "DILON_ENABLE_OAUTH_LOGIN", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth用户登录的开关", + Remark = "Oauth用户登录的开关", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "ff502ee7-8129-4828-8d16-fb04562ef52c", + Code = "DILON_OAUTH_GITEE_CLIENT_ID", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录ClientId", + Remark = "Oauth码云登录ClientId", + Status = 0, + SysFlag = "Y", + Value = "你的clientId" + }, + new + { + Id = "a1d957ef-2b70-456f-8eda-b70a4cf01535", + Code = "DILON_OAUTH_GITEE_CLIENT_SECRET", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录ClientSecret", + Remark = "Oauth码云登录ClientSecret", + Status = 0, + SysFlag = "Y", + Value = "你的clientSecret" + }, + new + { + Id = "b32ee22b-671d-40bf-8070-32e1054fef96", + Code = "DILON_OAUTH_GITEE_REDIRECT_URI", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录回调地址", + Remark = "Oauth码云登录回调地址", + Status = 0, + SysFlag = "Y", + Value = "http://127.0.0.1:5566/oauth/callback/gitee" + }, + new + { + Id = "38dda85c-2a98-4768-aebd-a60ab286052c", + Code = "DILON_DEMO_ENV_FLAG", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "演示环境", + Remark = "演示环境的开关,true-打开,false-关闭,如果演示环境开启,则只能读数据不能写数据", + Status = 0, + SysFlag = "Y", + Value = "false" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysDictData", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("ExtCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("扩展编码,以json形式存储"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("TypeId") + .HasColumnType("varchar(36)") + .HasColumnName("TypeId") + .HasComment("字典类型Id"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Value") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("值"); + + b.HasKey("Id"); + + b.HasIndex("TypeId"); + + b.ToTable("sys_dict_data"); + + b + .HasComment("字典值表"); + + b.HasData( + new + { + Id = "99b965d3-1f2b-4f5b-a62a-6763b8d64a64", + Code = "1", + IsDeleted = 0ul, + Remark = "通知", + Sort = 100, + Status = 0, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Value = "通知" + }, + new + { + Id = "2616e6c2-a504-4fc6-993e-72701b48e79a", + Code = "2", + IsDeleted = 0ul, + Remark = "公告", + Sort = 100, + Status = 0, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Value = "公告" + }, + new + { + Id = "40d336cd-918a-4e90-8836-cba7c1bf6cdf", + Code = "0", + IsDeleted = 0ul, + Remark = "草稿", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "草稿" + }, + new + { + Id = "f5b49fa9-31a1-44c2-9df0-b28bf5daeee0", + Code = "1", + IsDeleted = 0ul, + Remark = "发布", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "发布" + }, + new + { + Id = "d2f73bb4-05a1-4aa5-9273-e9f3c393996d", + Code = "2", + IsDeleted = 0ul, + Remark = "撤回", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "撤回" + }, + new + { + Id = "6385916f-6ead-470e-889b-cfb9d2da6256", + Code = "3", + IsDeleted = 0ul, + Remark = "删除", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "删除" + }, + new + { + Id = "1f432e9d-f031-4787-a527-f37bb20ebe3a", + Code = "true", + IsDeleted = 0ul, + Remark = "是", + Sort = 100, + Status = 0, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Value = "是" + }, + new + { + Id = "0724636d-e870-46c6-8e1e-67f1ea5f58e5", + Code = "false", + IsDeleted = 0ul, + Remark = "否", + Sort = 100, + Status = 0, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Value = "否" + }, + new + { + Id = "881ebcf2-94a6-4938-81a4-55b81736f3b3", + Code = "1", + IsDeleted = 0ul, + Remark = "下载压缩包", + Sort = 100, + Status = 0, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Value = "下载压缩包" + }, + new + { + Id = "5bc8662d-b795-48f1-a88e-2f4be5279d37", + Code = "2", + IsDeleted = 0ul, + Remark = "生成到本项目", + Sort = 100, + Status = 0, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Value = "生成到本项目" + }, + new + { + Id = "b2a00b40-23e1-40e1-8995-60ab420eafe1", + Code = "1", + IsDeleted = 0ul, + Remark = "GET", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "GET" + }, + new + { + Id = "10070836-0c89-4b89-96e3-c65c7e33a86c", + Code = "2", + IsDeleted = 0ul, + Remark = "POST", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "POST" + }, + new + { + Id = "69a34c0b-85ce-4e53-9ad4-a592057dddd4", + Code = "3", + IsDeleted = 0ul, + Remark = "PUT", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "PUT" + }, + new + { + Id = "0e4dc1f1-8654-401b-800a-22b31f62ced1", + Code = "4", + IsDeleted = 0ul, + Remark = "DELETE", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "DELETE" + }, + new + { + Id = "443f965e-96b4-4fd2-93e9-07fe00a47205", + Code = "input", + IsDeleted = 0ul, + Remark = "输入框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "输入框" + }, + new + { + Id = "bf7be9a2-53fb-4250-87fe-49d7f741d159", + Code = "datepicker", + IsDeleted = 0ul, + Remark = "时间选择", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "时间选择" + }, + new + { + Id = "cea10919-47e2-43ab-a19b-9d41fe648310", + Code = "select", + IsDeleted = 0ul, + Remark = "下拉框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "下拉框" + }, + new + { + Id = "7d534f44-cf66-472e-b0d3-20a4cc2ad432", + Code = "radio", + IsDeleted = 0ul, + Remark = "单选框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "单选框" + }, + new + { + Id = "d63b06d4-be11-4ab7-9905-87f6f2ca056f", + Code = "switch", + IsDeleted = 0ul, + Remark = "开关", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "开关" + }, + new + { + Id = "46967f62-bac9-47fd-9278-b29c047b0c38", + Code = "checkbox", + IsDeleted = 0ul, + Remark = "多选框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "多选框" + }, + new + { + Id = "a8ac5009-93d3-4405-a6b9-81ed3e2811f2", + Code = "inputnumber", + IsDeleted = 0ul, + Remark = "数字输入框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "数字输入框" + }, + new + { + Id = "d00b3efa-2f9d-464c-8134-aa7013ef52bb", + Code = "textarea", + IsDeleted = 0ul, + Remark = "文本域", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "文本域" + }, + new + { + Id = "ad759239-e34e-4fdf-a0d0-6b39eb41f880", + Code = "==", + IsDeleted = 0ul, + Remark = "等于", + Sort = 1, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "等于" + }, + new + { + Id = "2c8e1240-f3ef-4df1-bd68-3047109ad5b4", + Code = "like", + IsDeleted = 0ul, + Remark = "模糊", + Sort = 2, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "模糊" + }, + new + { + Id = "efc18513-c17b-4fc1-8e0e-2e79fb9b0107", + Code = ">", + IsDeleted = 0ul, + Remark = "大于", + Sort = 3, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "大于" + }, + new + { + Id = "a6812d98-7785-4db2-b2f8-d476a459c5ed", + Code = "<", + IsDeleted = 0ul, + Remark = "小于", + Sort = 4, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "小于" + }, + new + { + Id = "218b5bac-343e-4594-a9da-30e391c7735c", + Code = "!=", + IsDeleted = 0ul, + Remark = "不等于", + Sort = 5, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "不等于" + }, + new + { + Id = "4825f15d-077b-4c16-8ee7-0205d653e14d", + Code = ">=", + IsDeleted = 0ul, + Remark = "大于等于", + Sort = 6, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "大于等于" + }, + new + { + Id = "7c9e8270-db5a-45b7-acd7-f95c8ee31547", + Code = "<=", + IsDeleted = 0ul, + Remark = "小于等于", + Sort = 7, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "小于等于" + }, + new + { + Id = "759ea7de-a18f-4ed7-9032-bbd1a4dadc9e", + Code = "isNotNull", + IsDeleted = 0ul, + Remark = "不为空", + Sort = 8, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "不为空" + }, + new + { + Id = "a5cdf75e-6361-490d-a043-f5929ccf65a9", + Code = "int", + IsDeleted = 0ul, + Remark = "int", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "int" + }, + new + { + Id = "cffdd4b5-d4e0-4196-81b9-02045de8b189", + Code = "long", + IsDeleted = 0ul, + Remark = "long", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "long" + }, + new + { + Id = "25be90ea-b439-4e9d-993c-48a5ce3b9358", + Code = "string", + IsDeleted = 0ul, + Remark = "string", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "string" + }, + new + { + Id = "496eef62-3849-4263-b274-a3e6090942e3", + Code = "bool", + IsDeleted = 0ul, + Remark = "bool", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "bool" + }, + new + { + Id = "681c02ea-7570-4a97-85a7-957a77314df6", + Code = "double", + IsDeleted = 0ul, + Remark = "double", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "double" + }, + new + { + Id = "259698cf-b25d-427a-8d22-33b9c1899eea", + Code = "DateTime", + IsDeleted = 0ul, + Remark = "DateTime", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "DateTime" + }, + new + { + Id = "a30c682e-744a-468d-a74f-827928c96c01", + Code = "float", + IsDeleted = 0ul, + Remark = "float", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "float" + }, + new + { + Id = "4b68cb83-f173-4864-bd10-a7a7d5248102", + Code = "decimal", + IsDeleted = 0ul, + Remark = "decimal", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "decimal" + }, + new + { + Id = "134d4173-8d93-4c19-bf6b-a640d35da097", + Code = "Guid", + IsDeleted = 0ul, + Remark = "Guid", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "Guid" + }, + new + { + Id = "c597306f-5fd0-4f75-9a46-12de340cd199", + Code = "DateTimeOffset", + IsDeleted = 0ul, + Remark = "DateTimeOffset", + Sort = 100, + Status = 0, + 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("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("父Ids"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_dict_type"); + + b + .HasComment("字典类型表"); + + b.HasData( + new + { + Id = "b0cfa91c-1189-4f39-bc5a-f035885d0604", + Code = "common_status", + IsDeleted = 0ul, + Name = "通用状态", + Remark = "通用状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "301ed120-dfc5-4d7c-af59-b56a519581c9", + Code = "sex", + IsDeleted = 0ul, + Name = "性别", + Remark = "性别字典", + Sort = 100, + Status = 0 + }, + new + { + Id = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Code = "consts_type", + IsDeleted = 0ul, + Name = "常量的分类", + Remark = "常量的分类,用于区别一组配置", + Sort = 100, + Status = 0 + }, + new + { + Id = "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", + Code = "yes_or_no", + IsDeleted = 0ul, + Name = "是否", + Remark = "是否", + Sort = 100, + Status = 0 + }, + new + { + Id = "2cecf329-cf95-44eb-a8d7-3fb77b13e093", + Code = "vis_type", + IsDeleted = 0ul, + Name = "访问类型", + Remark = "访问类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "e973d383-c28e-42e0-9e23-5f2bd592fef5", + Code = "menu_type", + IsDeleted = 0ul, + Name = "菜单类型", + Remark = "菜单类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "058db370-3718-42c3-8ba7-095341b1fe13", + Code = "send_type", + IsDeleted = 0ul, + Name = "发送类型", + Remark = "发送类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Code = "open_type", + IsDeleted = 0ul, + Name = "打开方式", + Remark = "打开方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "b3235678-f7fe-442b-8fba-e792a89b78f2", + Code = "menu_weight", + IsDeleted = 0ul, + Name = "菜单权重", + Remark = "菜单权重", + Sort = 100, + Status = 0 + }, + new + { + Id = "a2068ed1-62a6-463c-b720-06111d994079", + Code = "data_scope_type", + IsDeleted = 0ul, + Name = "数据范围类型", + Remark = "数据范围类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", + Code = "sms_send_source", + IsDeleted = 0ul, + Name = "短信发送来源", + Remark = "短信发送来源", + Sort = 100, + Status = 0 + }, + new + { + Id = "8461bd1d-311b-487e-b579-d6049c6fb191", + Code = "op_type", + IsDeleted = 0ul, + Name = "操作类型", + Remark = "操作类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "b924e0c1-3f23-4e37-9f27-90e945381304", + Code = "file_storage_location", + IsDeleted = 0ul, + Name = "文件存储位置", + Remark = "文件存储位置", + Sort = 100, + Status = 0 + }, + new + { + Id = "0f1b8660-d932-4a53-a681-a38bebae91e0", + Code = "run_status", + IsDeleted = 0ul, + Name = "运行状态", + Remark = "定时任务运行状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Code = "notice_type", + IsDeleted = 0ul, + Name = "通知公告类型", + Remark = "通知公告类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Code = "notice_status", + IsDeleted = 0ul, + Name = "通知公告状态", + Remark = "通知公告状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Code = "yes_true_false", + IsDeleted = 0ul, + Name = "是否boolean", + Remark = "是否boolean", + Sort = 100, + Status = 0 + }, + new + { + Id = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Code = "code_gen_create_type", + IsDeleted = 0ul, + Name = "代码生成方式", + Remark = "代码生成方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Code = "request_type", + IsDeleted = 0ul, + Name = "请求方式", + Remark = "请求方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Code = "code_gen_effect_type", + IsDeleted = 0ul, + Name = "代码生成作用类型", + Remark = "代码生成作用类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Code = "code_gen_query_type", + IsDeleted = 0ul, + Name = "代码生成查询类型", + Remark = "代码生成查询类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "28f653d4-e573-4f54-8e5c-4e308780145a", + Code = "code_gen_net_type", + IsDeleted = 0ul, + Name = "代码生成.NET类型", + Remark = "代码生成.NET类型", + Sort = 100, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysEmp", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("用户Id"); + + b.Property("JobNum") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("工号"); + + b.Property("OrgId") + .HasColumnType("varchar(36)") + .HasColumnName("OrgId") + .HasComment("机构Id"); + + b.Property("OrgName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("机构名称"); + + b.HasKey("Id"); + + b.ToTable("sys_emp"); + + b + .HasComment("员工表"); + + b.HasData( + new + { + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + JobNum = "D1001", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }, + new + { + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + JobNum = "D1002", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }, + new + { + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", + JobNum = "D1003", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => + { + b.Property("SysEmpId") + .HasColumnType("varchar(36)") + .HasColumnName("SysEmpId") + .HasComment("员工Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") + .HasComment("职位Id"); + + b.HasKey("SysEmpId", "SysOrgId", "SysPosId"); + + b.HasIndex("SysOrgId"); + + b.HasIndex("SysPosId"); + + b.ToTable("sys_emp_ext_org_pos"); + + b + .HasComment("员工附属机构职位表"); + + b.HasData( + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "127c0a5d-43ac-4370-b313-082361885aca", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + SysPosId = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66" + }, + new + { + 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("varchar(36)") + .HasColumnName("SysEmpId") + .HasComment("员工Id"); + + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") + .HasComment("职位Id"); + + b.HasKey("SysEmpId", "SysPosId"); + + b.HasIndex("SysPosId"); + + b.ToTable("sys_emp_pos"); + + b + .HasComment("员工职位表"); + + b.HasData( + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" + }, + new + { + SysEmpId = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" + }, + new + { + SysEmpId = "16a74726-e156-499f-9942-0e0e24ad0c3f", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysFile", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("FileBucket") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件仓库"); + + b.Property("FileLocation") + .HasColumnType("int") + .HasComment("文件存储位置"); + + b.Property("FileObjectName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("存储到bucket的名称"); + + b.Property("FileOriginName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件名称"); + + b.Property("FilePath") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("存储路径"); + + b.Property("FileSizeInfo") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件大小信息"); + + b.Property("FileSizeKb") + .HasColumnType("bigint") + .HasComment("文件大小kb"); + + b.Property("FileSuffix") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件后缀"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_file"); + + b + .HasComment("文件信息表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogAudit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("ColumnName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("操作时间"); + + b.Property("NewValue") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("新值"); + + b.Property("OldValue") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("旧值"); + + b.Property("Operate") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作方式"); + + b.Property("TableName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("表名"); + + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") + .HasComment("操作人Id"); + + b.Property("UserName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作人名称"); + + b.HasKey("Id"); + + b.ToTable("sys_log_audit"); + + b + .HasComment("审计日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogOp", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Account") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作人"); + + b.Property("Browser") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("浏览器"); + + b.Property("ClassName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("类名称"); + + b.Property("ElapsedTime") + .HasColumnType("bigint") + .HasComment("耗时"); + + b.Property("Ip") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("IP"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("地址"); + + b.Property("Message") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("具体消息"); + + b.Property("MethodName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("方法名称"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("OpTime") + .HasColumnType("datetime") + .HasComment("操作时间"); + + b.Property("OpType") + .HasColumnType("int") + .HasComment("操作类型"); + + b.Property("Os") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作系统"); + + b.Property("Param") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求参数"); + + b.Property("ReqMethod") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求方式"); + + b.Property("Result") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("返回结果"); + + b.Property("Success") + .HasColumnType("tinyint(1)") + .HasComment("是否执行成功"); + + b.Property("Url") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求地址"); + + b.HasKey("Id"); + + b.ToTable("sys_log_op"); + + b + .HasComment("操作日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogVis", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Account") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("访问人"); + + b.Property("Browser") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("浏览器"); + + b.Property("Ip") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("IP"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("地址"); + + b.Property("Message") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("具体消息"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Os") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作系统"); + + b.Property("Success") + .HasColumnType("tinyint(1)") + .HasComment("是否执行成功"); + + b.Property("VisTime") + .HasColumnType("datetime") + .HasComment("访问时间"); + + b.Property("VisType") + .HasColumnType("int") + .HasComment("访问类型"); + + b.HasKey("Id"); + + b.ToTable("sys_log_vis"); + + b + .HasComment("访问日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysMenu", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Application") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("应用分类"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Component") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("组件地址"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Icon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Link") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("内链地址"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("OpenType") + .HasColumnType("int") + .HasComment("打开方式"); + + b.Property("Permission") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("权限标识"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("父Ids"); + + b.Property("Redirect") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("重定向地址"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Router") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("路由地址"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("菜单类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Visible") + .HasColumnType("bit") + .HasColumnName("Visible") + .HasComment("是否可见"); + + b.Property("VisibleParent") + .HasColumnType("bit") + .HasColumnName("VisibleParent") + .HasComment("关联菜单显示"); + + b.Property("Weight") + .HasColumnType("int") + .HasComment("权重"); + + b.HasKey("Id"); + + b.ToTable("sys_menu"); + + b + .HasComment("菜单表"); + + b.HasData( + new + { + Id = "83ce02c9-b37f-4885-96e3-9b34371edb2e", + Application = "system", + Code = "system_index", + Component = "RouteView", + Icon = "home", + IsDeleted = 0ul, + Name = "主控面板", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Redirect = "/analysis", + Router = "/", + Sort = 1, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "914a520d-9e4f-465b-ae05-7248b37d4be1", + Application = "system", + Code = "system_index_dashboard", + Component = "system/dashboard/Analysis", + IsDeleted = 0ul, + Name = "分析页", + OpenType = 0, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "72981ad9-9036-4aa7-b8f4-dc407eda50b4", + Application = "system", + Code = "system_index_workplace", + Component = "system/dashboard/Workplace", + IsDeleted = 0ul, + Name = "工作台", + OpenType = 0, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", + Application = "system", + Code = "sys_mgr", + Component = "PageView", + Icon = "team", + IsDeleted = 0ul, + Name = "组织架构", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/sys", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Application = "system", + Code = "sys_user_mgr", + Component = "system/user/index", + IsDeleted = 0ul, + Name = "用户管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bff7e542-6463-4f82-a03d-b1022e60d4b6", + Application = "system", + Code = "sys_user_mgr_page", + IsDeleted = 0ul, + Name = "用户查询", + OpenType = 0, + Permission = "sysUser:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "936440c7-93ef-4d2f-adff-6151f4317355", + Application = "system", + Code = "sys_user_mgr_edit", + IsDeleted = 0ul, + Name = "用户编辑", + OpenType = 0, + Permission = "sysUser:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "281888e3-d183-4711-ba27-298ef6e64659", + Application = "system", + Code = "sys_user_mgr_add", + IsDeleted = 0ul, + Name = "用户增加", + OpenType = 0, + Permission = "sysUser:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e4aff800-d34a-416b-bd6e-dcebaa1dd436", + Application = "system", + Code = "sys_user_mgr_delete", + IsDeleted = 0ul, + Name = "用户删除", + OpenType = 0, + Permission = "sysUser:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "7a266494-e17b-480d-8f50-cc234e6fe424", + Application = "system", + Code = "sys_user_mgr_detail", + IsDeleted = 0ul, + Name = "用户详情", + OpenType = 0, + Permission = "sysUser:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0d93f763-20d3-4c95-add3-3d94770b110e", + Application = "system", + Code = "sys_user_mgr_export", + IsDeleted = 0ul, + Name = "用户导出", + OpenType = 0, + Permission = "sysUser:export", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "17d047c3-6e95-4f7d-93db-97817d886fa2", + Application = "system", + Code = "sys_user_mgr_selector", + IsDeleted = 0ul, + Name = "用户选择器", + OpenType = 0, + Permission = "sysUser:selector", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5fc44256-2e56-4805-9382-b5504ca5b6cb", + Application = "system", + Code = "sys_user_mgr_grant_role", + IsDeleted = 0ul, + Name = "用户授权角色", + OpenType = 0, + Permission = "sysUser:grantRole", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ceff7899-6779-4708-b9ed-a2d5b488cff2", + Application = "system", + Code = "sys_user_mgr_own_role", + IsDeleted = 0ul, + Name = "用户拥有角色", + OpenType = 0, + Permission = "sysUser:ownRole", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "38ba9ccc-eb96-4a60-a5ab-f6ea013f8291", + Application = "system", + Code = "sys_user_mgr_grant_data", + IsDeleted = 0ul, + Name = "用户授权数据", + OpenType = 0, + Permission = "sysUser:grantData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf2f8faf-b280-456c-8865-64115e04019f", + Application = "system", + Code = "sys_user_mgr_own_data", + IsDeleted = 0ul, + Name = "用户拥有数据", + OpenType = 0, + Permission = "sysUser:ownData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "711563e5-fed6-44d6-bcf3-138c73cfbfca", + Application = "system", + Code = "sys_user_mgr_update_info", + IsDeleted = 0ul, + Name = "用户更新信息", + OpenType = 0, + Permission = "sysUser:updateInfo", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "306fe9bf-3132-4011-9f3f-1a2f4ead7734", + Application = "system", + Code = "sys_user_mgr_update_pwd", + IsDeleted = 0ul, + Name = "用户修改密码", + OpenType = 0, + Permission = "sysUser:updatePwd", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "791b0d88-7e25-490f-a94f-a2e32bb3b6e6", + Application = "system", + Code = "sys_user_mgr_change_status", + IsDeleted = 0ul, + Name = "用户修改状态", + OpenType = 0, + Permission = "sysUser:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9d681aac-528a-46b0-9718-ffc4abe9c29e", + Application = "system", + Code = "sys_user_mgr_update_avatar", + IsDeleted = 0ul, + Name = "用户修改头像", + OpenType = 0, + Permission = "sysUser:updateAvatar", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "471b5259-5f55-4643-841c-f07089cfafdf", + Application = "system", + Code = "sys_user_mgr_reset_pwd", + IsDeleted = 0ul, + Name = "用户重置密码", + OpenType = 0, + Permission = "sysUser:resetPwd", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "471d3098-90a4-47e1-bd07-5d3ed8d21fb0", + Application = "system", + Code = "sys_user_mgr_login", + IsDeleted = 0ul, + Name = "用户登录信息", + OpenType = 0, + Permission = "getLoginUser", + 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 = 0ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Application = "system", + Code = "sys_org_mgr", + Component = "system/org/index", + IsDeleted = 0ul, + Name = "机构管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "b7c34c9b-933e-4c48-b1d0-af15a1f7da1f", + Application = "system", + Code = "sys_org_mgr_page", + IsDeleted = 0ul, + Name = "机构查询", + OpenType = 0, + Permission = "sysOrg:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "917064b2-c715-4fa4-9b2d-20a11b784ed1", + Application = "system", + Code = "sys_org_mgr_list", + IsDeleted = 0ul, + Name = "机构列表", + OpenType = 0, + Permission = "sysOrg:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d7c18d60-f28f-4a57-90b3-26fc95249ae0", + Application = "system", + Code = "sys_org_mgr_add", + IsDeleted = 0ul, + Name = "机构增加", + OpenType = 0, + Permission = "sysOrg:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e65eb1e3-cc9e-4309-8c7a-9ac41765b239", + Application = "system", + Code = "sys_org_mgr_edit", + IsDeleted = 0ul, + Name = "机构编辑", + OpenType = 0, + Permission = "sysOrg:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c2450c4c-89c6-46e8-8f89-11331790cbe3", + Application = "system", + Code = "sys_org_mgr_delete", + IsDeleted = 0ul, + Name = "机构删除", + OpenType = 0, + Permission = "sysOrg:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "695a6018-82c3-466e-a2a1-dab16039bfdb", + Application = "system", + Code = "sys_org_mgr_detail", + IsDeleted = 0ul, + Name = "机构详情", + OpenType = 0, + Permission = "sysOrg:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2d153046-279b-43be-8f57-46875118fd2c", + Application = "system", + Code = "sys_org_mgr_tree", + IsDeleted = 0ul, + Name = "机构树", + OpenType = 0, + Permission = "sysOrg:tree", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Application = "system", + Code = "sys_pos_mgr", + Component = "system/pos/index", + IsDeleted = 0ul, + Name = "职位管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d2436601-bc48-4610-ba67-5b666f8ce33a", + Application = "system", + Code = "sys_pos_mgr_page", + IsDeleted = 0ul, + Name = "职位查询", + OpenType = 0, + Permission = "sysPos:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1305efaa-b81a-475f-9dde-8f6549ca7743", + Application = "system", + Code = "sys_pos_mgr_list", + IsDeleted = 0ul, + Name = "职位列表", + OpenType = 0, + Permission = "sysPos:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c227e732-f231-4488-89b0-d1c9dad78950", + Application = "system", + Code = "sys_pos_mgr_add", + IsDeleted = 0ul, + Name = "职位增加", + OpenType = 0, + Permission = "sysPos:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9dafbe04-83c9-482c-9c83-81f4da045da5", + Application = "system", + Code = "sys_pos_mgr_edit", + IsDeleted = 0ul, + Name = "职位编辑", + OpenType = 0, + Permission = "sysPos:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "031df05e-b7c6-4ecd-aff2-f189c994e86d", + Application = "system", + Code = "sys_pos_mgr_delete", + IsDeleted = 0ul, + Name = "职位删除", + OpenType = 0, + Permission = "sysPos:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fe5ee8a1-2145-43c6-bdeb-518f3a9c127d", + Application = "system", + Code = "sys_pos_mgr_detail", + IsDeleted = 0ul, + Name = "职位详情", + OpenType = 0, + Permission = "sysPos:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", + Application = "system", + Code = "auth_manager", + Component = "PageView", + Icon = "safety-certificate", + IsDeleted = 0ul, + Name = "权限管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/auth", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Application = "system", + Code = "sys_app_mgr", + Component = "system/app/index", + IsDeleted = 0ul, + Name = "应用管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "dbaa7a6d-234f-4cc9-977f-4544b8bb45b8", + Application = "system", + Code = "sys_app_mgr_page", + IsDeleted = 0ul, + Name = "应用查询", + OpenType = 0, + Permission = "sysApp:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ab7b2b41-b0bc-4b9c-9017-f5c6918e393e", + Application = "system", + Code = "sys_app_mgr_list", + IsDeleted = 0ul, + Name = "应用列表", + OpenType = 0, + Permission = "sysApp:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f4e1d63b-5d92-46eb-82aa-267335a5a3f3", + Application = "system", + Code = "sys_app_mgr_add", + IsDeleted = 0ul, + Name = "应用增加", + OpenType = 0, + Permission = "sysApp:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f33a3791-1c01-4d30-bcc3-d9fdf5246376", + Application = "system", + Code = "sys_app_mgr_edit", + IsDeleted = 0ul, + Name = "应用编辑", + OpenType = 0, + Permission = "sysApp:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e0a6cf90-0a8b-44e4-a32f-5f43ef996b82", + Application = "system", + Code = "sys_app_mgr_delete", + IsDeleted = 0ul, + Name = "应用删除", + OpenType = 0, + Permission = "sysApp:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a0abe974-5ae9-440b-9d16-2412eab52d70", + Application = "system", + Code = "sys_app_mgr_detail", + IsDeleted = 0ul, + Name = "应用详情", + OpenType = 0, + Permission = "sysApp:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f640e243-b439-4109-8aea-c66205ef6b12", + Application = "system", + Code = "sys_app_mgr_set_as_default", + IsDeleted = 0ul, + Name = "设为默认应用", + OpenType = 0, + Permission = "sysApp:setAsDefault", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Application = "system", + Code = "sys_menu_mgr", + Component = "system/menu/index", + IsDeleted = 0ul, + Name = "菜单管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e9982e73-1833-4674-9403-ee3dee2efdf7", + Application = "system", + Code = "sys_menu_mgr_list", + IsDeleted = 0ul, + Name = "菜单列表", + OpenType = 0, + Permission = "sysMenu:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "758e15e6-75a6-4b72-8f94-5da379e53354", + Application = "system", + Code = "sys_menu_mgr_add", + IsDeleted = 0ul, + Name = "菜单增加", + OpenType = 0, + Permission = "sysMenu:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "07139c19-6b39-49f5-9e22-c4dc7e9d947b", + Application = "system", + Code = "sys_menu_mgr_edit", + IsDeleted = 0ul, + Name = "菜单编辑", + OpenType = 0, + Permission = "sysMenu:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "857fb581-78ff-4884-a6fb-8dfb4951fef9", + Application = "system", + Code = "sys_menu_mgr_delete", + IsDeleted = 0ul, + Name = "菜单删除", + OpenType = 0, + Permission = "sysMenu:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cd43a8ee-9f98-4355-bf81-ba40f388b23f", + Application = "system", + Code = "sys_menu_mgr_detail", + IsDeleted = 0ul, + Name = "菜单详情", + OpenType = 0, + Permission = "sysMenu:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ec318997-596d-403a-91be-f303b234b02d", + Application = "system", + Code = "sys_menu_mgr_grant_tree", + IsDeleted = 0ul, + Name = "菜单授权树", + OpenType = 0, + Permission = "sysMenu:treeForGrant", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "3892ef5d-39b2-4a4d-8047-cb96542fb54f", + Application = "system", + Code = "sys_menu_mgr_tree", + IsDeleted = 0ul, + Name = "菜单树", + OpenType = 0, + Permission = "sysMenu:tree", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "00831a3b-d080-411f-afb9-9f415334b192", + Application = "system", + Code = "sys_menu_mgr_change", + IsDeleted = 0ul, + Name = "菜单切换", + OpenType = 0, + Permission = "sysMenu:change", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Application = "system", + Code = "sys_role_mgr", + Component = "system/role/index", + IsDeleted = 0ul, + Name = "角色管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4241f4a0-89ab-4a6a-80bb-2830f855d3be", + Application = "system", + Code = "sys_role_mgr_page", + IsDeleted = 0ul, + Name = "角色查询", + OpenType = 0, + Permission = "sysRole:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6a48beb1-c828-43d6-af3d-3e18ef163070", + Application = "system", + Code = "sys_role_mgr_add", + IsDeleted = 0ul, + Name = "角色增加", + OpenType = 0, + Permission = "sysRole:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1198a602-a23d-4a06-aa9a-76aaf5f065a7", + Application = "system", + Code = "sys_role_mgr_edit", + IsDeleted = 0ul, + Name = "角色编辑", + OpenType = 0, + Permission = "sysRole:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e7708eeb-2c87-4c3d-bc71-c395e5d708db", + Application = "system", + Code = "sys_role_mgr_delete", + IsDeleted = 0ul, + Name = "角色删除", + OpenType = 0, + Permission = "sysRole:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "63ab477f-88fb-4f4b-9dcd-0cb83ac767f6", + Application = "system", + Code = "sys_role_mgr_detail", + IsDeleted = 0ul, + Name = "角色详情", + OpenType = 0, + Permission = "sysRole:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2622348c-dd8f-4ade-a350-de0a8f01e1f6", + Application = "system", + Code = "sys_role_mgr_drop_down", + IsDeleted = 0ul, + Name = "角色下拉", + OpenType = 0, + Permission = "sysRole:dropDown", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "73d84863-b381-40be-84bc-ec8381fa6c0a", + Application = "system", + Code = "sys_role_mgr_grant_menu", + IsDeleted = 0ul, + Name = "角色授权菜单", + OpenType = 0, + Permission = "sysRole:grantMenu", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bbc5e792-3d72-4d0d-8ddb-25cf2c4e1374", + Application = "system", + Code = "sys_role_mgr_own_menu", + IsDeleted = 0ul, + Name = "角色拥有菜单", + OpenType = 0, + Permission = "sysRole:ownMenu", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "19234814-6007-484c-818c-88a664a2a339", + Application = "system", + Code = "sys_role_mgr_grant_data", + IsDeleted = 0ul, + Name = "角色授权数据", + OpenType = 0, + Permission = "sysRole:grantData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "19e5c5f6-b598-4c42-8eed-3d46fb11b465", + Application = "system", + Code = "sys_role_mgr_own_data", + IsDeleted = 0ul, + Name = "角色拥有数据", + OpenType = 0, + Permission = "sysRole:ownData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Application = "system", + Code = "system_tools", + Component = "PageView", + Icon = "euro", + IsDeleted = 0ul, + Name = "开发管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/tools", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Application = "system", + Code = "system_tools_config", + Component = "system/config/index", + IsDeleted = 0ul, + Name = "系统配置", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c14c82bd-632d-4cc9-9236-37aa64b15ecf", + Application = "system", + Code = "system_tools_config_page", + IsDeleted = 0ul, + Name = "配置查询", + OpenType = 0, + Permission = "sysConfig:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "78d31d68-9c9b-4e02-94c9-8a74eea4c1fb", + Application = "system", + Code = "system_tools_config_list", + IsDeleted = 0ul, + Name = "配置列表", + OpenType = 0, + Permission = "sysConfig:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fc91afb5-2b9e-428b-b5ff-b0ef35dd5336", + Application = "system", + Code = "system_tools_config_add", + IsDeleted = 0ul, + Name = "配置增加", + OpenType = 0, + Permission = "sysConfig:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1efb72e8-3449-490a-92e0-308b124c338f", + Application = "system", + Code = "system_tools_config_edit", + IsDeleted = 0ul, + Name = "配置编辑", + OpenType = 0, + Permission = "sysConfig:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5760230f-e6fc-4c3d-ba38-1c8a5a923eb3", + Application = "system", + Code = "system_tools_config_delete", + IsDeleted = 0ul, + Name = "配置删除", + OpenType = 0, + Permission = "sysConfig:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6bfc0c53-5d6c-437c-9757-bc79e664d0f5", + Application = "system", + Code = "system_tools_config_detail", + IsDeleted = 0ul, + Name = "配置详情", + OpenType = 0, + Permission = "sysConfig:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f7fe47a3-86b2-4660-9920-0c9836755666", + Application = "system", + Code = "sys_app_mgr_set_as_default", + IsDeleted = 0ul, + Name = "设为默认应用", + OpenType = 0, + Permission = "sysApp:setAsDefault", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", + Application = "system", + Code = "sys_email_mgr", + Component = "system/email/index", + IsDeleted = 0ul, + Name = "邮件发送", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4d4cf5b3-bd4c-4f17-9fb2-47b28b00681f", + Application = "system", + Code = "sys_email_mgr_send_email", + IsDeleted = 0ul, + Name = "发送文本邮件", + OpenType = 0, + Permission = "email:sendEmail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "51e45073-1461-4b3b-ae06-d0d3dcf222e0", + Application = "system", + Code = "sys_email_mgr_send_email_html", + IsDeleted = 0ul, + Name = "发送html邮件", + OpenType = 0, + Permission = "email:sendEmailHtml", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", + Application = "system", + Code = "sys_sms_mgr", + Component = "system/sms/index", + IsDeleted = 0ul, + Name = "短信管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2afa4925-b927-457e-88a1-d215b7d75fb6", + Application = "system", + Code = "sys_sms_mgr_page", + IsDeleted = 0ul, + Name = "短信发送查询", + OpenType = 0, + Permission = "sms:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "97c1b073-5e19-4542-89e2-d8da44d0f1df", + Application = "system", + Code = "sys_sms_mgr_send_login_message", + IsDeleted = 0ul, + Name = "发送验证码短信", + OpenType = 0, + Permission = "sms:sendLoginMessage", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d2454bd2-f300-4b28-95c0-12432c28cbdf", + Application = "system", + Code = "sys_sms_mgr_validate_message", + IsDeleted = 0ul, + Name = "验证短信验证码", + OpenType = 0, + Permission = "sms:validateMessage", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Application = "system", + Code = "sys_dict_mgr", + Component = "system/dict/index", + IsDeleted = 0ul, + Name = "字典管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "70c5e8c5-6104-4e53-99c0-4743e557456b", + Application = "system", + Code = "sys_dict_mgr_dict_type_page", + IsDeleted = 0ul, + Name = "字典类型查询", + OpenType = 0, + Permission = "sysDictType:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1bd1d982-e05a-4bdc-a4e0-752d94f3196c", + Application = "system", + Code = "sys_dict_mgr_dict_type_list", + IsDeleted = 0ul, + Name = "字典类型列表", + OpenType = 0, + Permission = "sysDictType:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bd09b023-0884-4f31-8cf7-f66f789fa3db", + Application = "system", + Code = "sys_dict_mgr_dict_type_add", + IsDeleted = 0ul, + Name = "字典类型增加", + OpenType = 0, + Permission = "sysDictType:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1f7a41ff-5a46-449c-81f3-1618dfdcb4cd", + Application = "system", + Code = "sys_dict_mgr_dict_type_delete", + IsDeleted = 0ul, + Name = "字典类型删除", + OpenType = 0, + Permission = "sysDictType:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2381cde4-2174-47e7-a1e5-e58da70e7a11", + Application = "system", + Code = "sys_dict_mgr_dict_type_edit", + IsDeleted = 0ul, + Name = "字典类型编辑", + OpenType = 0, + Permission = "sysDictType:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8f7d3c74-8800-4922-9662-ac6af378c882", + Application = "system", + Code = "sys_dict_mgr_dict_type_detail", + IsDeleted = 0ul, + Name = "字典类型详情", + OpenType = 0, + Permission = "sysDictType:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4f87b6de-be62-4398-b680-1f8611f2cd70", + Application = "system", + Code = "sys_dict_mgr_dict_type_drop_down", + IsDeleted = 0ul, + Name = "字典类型下拉", + OpenType = 0, + Permission = "sysDictType:dropDown", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "07c799b2-e8e9-4955-83da-97560f161d87", + Application = "system", + Code = "sys_dict_mgr_dict_type_change_status", + IsDeleted = 0ul, + Name = "字典类型修改状态", + OpenType = 0, + Permission = "sysDictType:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "29be8e3c-c2bb-4162-b282-fdf58c218b9d", + Application = "system", + Code = "sys_dict_mgr_dict_page", + IsDeleted = 0ul, + Name = "字典值查询", + OpenType = 0, + Permission = "sysDictData:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "b8cbc4e1-ac10-4cda-b1e4-f816a2632d02", + Application = "system", + Code = "sys_dict_mgr_dict_list", + IsDeleted = 0ul, + Name = "字典值列表", + OpenType = 0, + Permission = "sysDictData:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54e97bde-94d6-42df-89e3-4c3ace153b22", + Application = "system", + Code = "sys_dict_mgr_dict_add", + IsDeleted = 0ul, + Name = "字典值增加", + OpenType = 0, + Permission = "sysDictData:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "be98da08-a3b0-463c-8208-05d843620258", + Application = "system", + Code = "sys_dict_mgr_dict_delete", + IsDeleted = 0ul, + Name = "字典值删除", + OpenType = 0, + Permission = "sysDictData:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "38809fc3-163f-4fe9-a488-c9bb5bce752a", + Application = "system", + Code = "sys_dict_mgr_dict_edit", + IsDeleted = 0ul, + Name = "字典值编辑", + OpenType = 0, + Permission = "sysDictData:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fc511b42-f0a1-489b-8418-7ef94b0fb374", + Application = "system", + Code = "sys_role_mgr_grant_data", + IsDeleted = 0ul, + Name = "字典值详情", + OpenType = 0, + Permission = "sysDictData:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "200428b3-1605-4c70-b840-e691e302ae69", + Application = "system", + Code = "sys_dict_mgr_dict_change_status", + IsDeleted = 0ul, + Name = "字典值修改状态", + OpenType = 0, + Permission = "sysDictData:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d40f424d-d5fc-4b86-a2bd-3a5a76076bc1", + Application = "system", + Code = "sys_swagger_mgr", + Component = "Iframe", + IsDeleted = 0ul, + Link = "http://127.0.0.1:5566/", + Name = "接口文档", + OpenType = 2, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "eec4563e-9307-4ccd-ac3a-93598badb195", + Application = "system", + Code = "sys_log_mgr", + Component = "PageView", + Icon = "read", + IsDeleted = 0ul, + Name = "日志管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/log", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "322b2cb6-df29-483b-b011-54dce1532fae", + Application = "system", + Code = "sys_log_mgr_vis_log", + Component = "system/log/vislog/index", + IsDeleted = 0ul, + Name = "访问日志", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "122641c1-ab6d-4f91-9527-16fc8fea9708", + Application = "system", + Code = "sys_log_mgr_vis_log_page", + IsDeleted = 0ul, + Name = "访问日志查询", + OpenType = 0, + Permission = "sysVisLog:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f2367804-6382-4e72-8282-e4f6f988ecd1", + Application = "system", + Code = "sys_log_mgr_vis_log_delete", + IsDeleted = 0ul, + Name = "访问日志清空", + OpenType = 0, + Permission = "sysVisLog:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", + Application = "system", + Code = "sys_log_mgr_op_log", + Component = "system/log/oplog/index", + IsDeleted = 0ul, + Name = "操作日志", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "7f44f49e-6458-4149-bbcd-9a937f552cec", + Application = "system", + Code = "sys_log_mgr_op_log_page", + IsDeleted = 0ul, + Name = "操作日志查询", + OpenType = 0, + Permission = "sysOpLog:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "263e0c00-2796-411c-9f50-0aa361f7781c", + Application = "system", + Code = "sys_log_mgr_op_log_delete", + IsDeleted = 0ul, + Name = "操作日志清空", + OpenType = 0, + Permission = "sysOpLog:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", + Application = "system", + Code = "sys_monitor_mgr", + Component = "PageView", + Icon = "deployment-unit", + IsDeleted = 0ul, + Name = "系统监控", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/monitor", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c1e70042-fe3f-4efc-a6cc-86de8507f948", + Application = "system", + Code = "sys_monitor_mgr_machine_monitor", + Component = "system/machine/index", + IsDeleted = 0ul, + Name = "服务监控", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "444f3658-defe-47a7-880e-bf0af8b66591", + Application = "system", + Code = "sys_monitor_mgr_machine_monitor_query", + IsDeleted = 0ul, + Name = "服务监控查询", + OpenType = 0, + Permission = "sysMachine:query", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "49a8b476-327b-4f33-87b8-2d9bc50dc390", + Application = "system", + Code = "sys_monitor_mgr_online_user", + Component = "system/onlineUser/index", + IsDeleted = 0ul, + Name = "在线用户", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4785eb5a-678a-4f9c-b07c-3b92acdd6de0", + Application = "system", + Code = "sys_monitor_mgr_online_user_list", + IsDeleted = 0ul, + Name = "在线用户列表", + OpenType = 0, + Permission = "sysOnlineUser:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4dbf6765-ac79-4708-a9d5-16a4d4b09164", + Application = "system", + Code = "sys_monitor_mgr_online_user_force_exist", + IsDeleted = 0ul, + Name = "在线用户强退", + OpenType = 0, + Permission = "sysOnlineUser:forceExist", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "31c2af01-b856-4a1d-a131-cdf8e847b1a4", + Application = "system", + Code = "sys_monitor_mgr_druid", + Component = "Iframe", + IsDeleted = 0ul, + Link = "http://localhost:82/druid/login.html", + Name = "数据监控", + OpenType = 2, + 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 = 0ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d4cac841-99e5-4014-af17-2986c9340306", + Application = "system", + Code = "sys_notice", + Component = "PageView", + Icon = "sound", + IsDeleted = 0ul, + Name = "通知公告", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/notice", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Application = "system", + Code = "sys_notice_mgr", + Component = "system/notice/index", + IsDeleted = 0ul, + Name = "公告管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54584ab7-25d1-45b7-b3d4-76ba21511f97", + Application = "system", + Code = "sys_notice_mgr_page", + IsDeleted = 0ul, + Name = "公告查询", + OpenType = 0, + Permission = "sysNotice:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f27c8431-7da5-4ffe-a8f3-b511cf44c0c8", + Application = "system", + Code = "sys_notice_mgr_add", + IsDeleted = 0ul, + Name = "公告增加", + OpenType = 0, + Permission = "sysNotice:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f84c1f3a-3a51-4be2-97c9-7543b044e457", + Application = "system", + Code = "sys_notice_mgr_edit", + IsDeleted = 0ul, + Name = "公告编辑", + OpenType = 0, + Permission = "sysNotice:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a8abcb85-ad3b-47b9-8c9b-e7d1876b90cf", + Application = "system", + Code = "sys_notice_mgr_delete", + IsDeleted = 0ul, + Name = "公告删除", + OpenType = 0, + Permission = "sysNotice:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fe9cbb41-7b05-4f32-b960-87a1ef146166", + Application = "system", + Code = "sys_notice_mgr_detail", + IsDeleted = 0ul, + Name = "公告查看", + OpenType = 0, + Permission = "sysNotice:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "3e547bb0-4cf5-4cf0-8386-48d2f3c12dcb", + Application = "system", + Code = "sys_notice_mgr_changeStatus", + IsDeleted = 0ul, + Name = "公告修改状态", + OpenType = 0, + Permission = "sysNotice:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ac3065ff-d239-4e0e-86e5-d72cc658224c", + Application = "system", + Code = "sys_notice_mgr_received", + Component = "system/noticeReceived/index", + IsDeleted = 0ul, + Name = "已收公告", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e2d4b13b-eb3e-4ead-8fb8-4c61a3004726", + Application = "system", + Code = "sys_notice_mgr_received_page", + IsDeleted = 0ul, + Name = "已收公告查询", + OpenType = 0, + Permission = "sysNotice:received", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "05326e62-f496-4950-8a29-40e8a479424f", + Application = "system", + Code = "sys_file_mgr", + Component = "PageView", + Icon = "file", + IsDeleted = 0ul, + Name = "文件管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/file", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0af2a460-bbb0-472c-b027-8532970425df", + Application = "system", + Code = "sys_file_mgr_sys_file", + Component = "system/file/index", + IsDeleted = 0ul, + Name = "系统文件", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c7bac800-b922-4173-bd8d-9888b4eab1d4", + Application = "system", + Code = "sys_file_mgr_sys_file_page", + IsDeleted = 0ul, + Name = "文件查询", + OpenType = 0, + Permission = "sysFileInfo:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f47e1fa7-6329-4d67-8fe6-36ca06aad54b", + Application = "system", + Code = "sys_file_mgr_sys_file_list", + IsDeleted = 0ul, + Name = "文件列表", + OpenType = 0, + Permission = "sysFileInfo:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cca0a2ee-cfb9-4996-affb-dc8d8168ac10", + Application = "system", + Code = "sys_file_mgr_sys_file_delete", + IsDeleted = 0ul, + Name = "文件删除", + OpenType = 0, + Permission = "sysFileInfo:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "eb738eaa-5eed-466d-b422-4eb6f4662dd9", + Application = "system", + Code = "sys_file_mgr_sys_file_detail", + IsDeleted = 0ul, + Name = "文件详情", + OpenType = 0, + Permission = "sysFileInfo:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "69b97ace-d849-4e52-8fc2-9da7d93e325f", + Application = "system", + Code = "sys_file_mgr_sys_file_upload", + IsDeleted = 0ul, + Name = "文件上传", + OpenType = 0, + Permission = "sysFileInfo:upload", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e286d53d-bf3c-4711-b0a3-15cfad0a7521", + Application = "system", + Code = "sys_file_mgr_sys_file_download", + IsDeleted = 0ul, + Name = "文件下载", + OpenType = 0, + Permission = "sysFileInfo:download", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1975891b-7940-44a8-a513-9f2e8b05dda1", + Application = "system", + Code = "sys_file_mgr_sys_file_preview", + IsDeleted = 0ul, + Name = "图片预览", + OpenType = 0, + Permission = "sysFileInfo:preview", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ba03cfd5-5d72-465f-87b6-71134da68fab", + Application = "system", + Code = "sys_timers", + Component = "PageView", + Icon = "dashboard", + IsDeleted = 0ul, + Name = "定时任务", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/timers", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Application = "system", + Code = "sys_timers_mgr", + Component = "system/timers/index", + IsDeleted = 0ul, + Name = "任务管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "db62154a-470e-43c8-8959-a686b954fe7d", + Application = "system", + Code = "sys_timers_mgr_page", + IsDeleted = 0ul, + Name = "定时任务查询", + OpenType = 0, + Permission = "sysTimers:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "dc07cd9f-4a53-40d9-988e-70290a146eff", + Application = "system", + Code = "sys_timers_mgr_list", + IsDeleted = 0ul, + Name = "定时任务列表", + OpenType = 0, + Permission = "sysTimers:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1e562d31-c2f8-4af8-be4b-47e3b251d9a3", + Application = "system", + Code = "sys_timers_mgr_detail", + IsDeleted = 0ul, + Name = "定时任务详情", + OpenType = 0, + Permission = "sysTimers:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f27ba442-7d6f-499f-8053-a737adc3492a", + Application = "system", + Code = "sys_timers_mgr_add", + IsDeleted = 0ul, + Name = "定时任务增加", + OpenType = 0, + Permission = "sysTimers:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "99129601-0be5-43ee-842b-a428603f013b", + Application = "system", + Code = "sys_timers_mgr_delete", + IsDeleted = 0ul, + Name = "定时任务删除", + OpenType = 0, + Permission = "sysTimers:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5e118fc0-f580-4d06-a89d-f321a84e5654", + Application = "system", + Code = "sys_timers_mgr_edit", + IsDeleted = 0ul, + Name = "定时任务编辑", + OpenType = 0, + Permission = "sysTimers:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4272f2e4-4a8b-45bb-b688-2b9471c35e83", + Application = "system", + Code = "sys_timers_mgr_get_action_classes", + IsDeleted = 0ul, + Name = "定时任务可执行列表", + OpenType = 0, + Permission = "sysTimers:getActionClasses", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54094687-f661-4cba-bdfc-e76f22db8d76", + Application = "system", + Code = "sys_timers_mgr_start", + IsDeleted = 0ul, + Name = "定时任务启动", + OpenType = 0, + Permission = "sysTimers:start", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6b82d407-d1ea-440e-9245-128ad03dffc0", + Application = "system", + Code = "sys_timers_mgr_stop", + IsDeleted = 0ul, + Name = "定时任务关闭", + OpenType = 0, + Permission = "sysTimers:stop", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5172265d-eda3-4b8a-a542-d582467a51a1", + Application = "system_tool", + Code = "code_gen", + Component = "gen/codeGenerate/index", + Icon = "thunderbolt", + IsDeleted = 0ul, + Name = "代码生成", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/codeGenerate/index", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf51df0a-8e0b-4252-ba06-9646cad648d1", + Application = "system_tool", + Code = "form_design", + Component = "system/formDesign/index", + Icon = "robot", + IsDeleted = 0ul, + Name = "表单设计", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/formDesign/index", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f4cf2a3d-0714-4ca4-a691-0b363c172f82", + Application = "advanced", + Code = "sys_tenant", + Component = "PageView", + Icon = "switcher", + IsDeleted = 0ul, + Name = "SaaS租户", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/tenant", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Application = "advanced", + Code = "sys_tenant_mgr", + Component = "system/tenant/index", + IsDeleted = 0ul, + Name = "租户管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8985ec0a-5060-4812-bf47-4f3102948066", + Application = "advanced", + Code = "sys_tenant_mgr_page", + IsDeleted = 0ul, + Name = "租户查询", + OpenType = 0, + Permission = "sysTenant:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d9584afb-18de-4f7e-b992-c21ad77b1aae", + Application = "advanced", + Code = "sys_tenant_mgr_detail", + IsDeleted = 0ul, + Name = "租户详情", + OpenType = 0, + Permission = "sysTenant:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "01ae6b95-9c1e-4882-a9ac-ebb9f1868c54", + Application = "advanced", + Code = "sys_tenant_mgr_add", + IsDeleted = 0ul, + Name = "租户增加", + OpenType = 0, + Permission = "sysTenant:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "59e9f6da-151a-4201-bea1-00ef06fe5842", + Application = "advanced", + Code = "sys_tenant_mgr_delete", + IsDeleted = 0ul, + Name = "租户删除", + OpenType = 0, + Permission = "sysTenant:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "220b6a86-e65d-469b-8aa0-46c4f5e77ab8", + Application = "advanced", + Code = "sys_tenant_mgr_edit", + IsDeleted = 0ul, + Name = "租户编辑", + OpenType = 0, + Permission = "sysTenant:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysNotice", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Attachments") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("上传文件id集合"); + + b.Property("CancelTime") + .HasColumnType("datetime") + .HasComment("撤回时间"); + + b.Property("Content") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("内容"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("PublicOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicOrgId") + .HasComment("发布机构Id"); + + b.Property("PublicOrgName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("发布机构名称"); + + b.Property("PublicTime") + .HasColumnType("datetime") + .HasComment("发布时间"); + + b.Property("PublicUserId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicUserId") + .HasComment("发布人Id"); + + b.Property("PublicUserName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("发布人姓名"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("Title") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("标题"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_notice"); + + b + .HasComment("通知公告表"); + }); + + modelBuilder.Entity("Ewide.Core.SysNoticeUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NoticeId") + .HasColumnType("varchar(36)") + .HasColumnName("NoticeId") + .HasComment("通知公告Id"); + + b.Property("ReadStatus") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("ReadTime") + .HasColumnType("datetime") + .HasComment("阅读时间"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") + .HasComment("用户Id"); + + b.HasKey("Id"); + + b.ToTable("sys_notice_user"); + + b + .HasComment("通知公告用户表"); + }); + + modelBuilder.Entity("Ewide.Core.SysOauthUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AccessToken") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Token"); + + b.Property("Avatar") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("头像"); + + b.Property("Blog") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("用户网址"); + + b.Property("Company") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("所在公司"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("邮箱"); + + b.Property("Gender") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("性别"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("位置"); + + b.Property("NickName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("昵称"); + + b.Property("Phone") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Source") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("用户来源"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Uuid") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("UUID"); + + b.HasKey("Id"); + + b.ToTable("sys_oauth_user"); + + b + .HasComment("Oauth登录用户表"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AreaCode") + .HasColumnType("varchar(50) CHARACTER SET utf8mb4"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Contacts") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("联系人"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Pids"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("Tel") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("机构类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_org"); + + b + .HasComment("组织机构表"); + + b.HasData( + new + { + Id = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Code = "hxjt", + IsDeleted = 0ul, + Name = "华夏集团", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Remark = "华夏集团", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + Code = "hxjt_bj", + IsDeleted = 0ul, + Name = "华夏集团北京分公司", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", + Remark = "华夏集团北京分公司", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "127c0a5d-43ac-4370-b313-082361885aca", + Code = "hxjt_cd", + IsDeleted = 0ul, + Name = "华夏集团成都分公司", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", + Remark = "华夏集团成都分公司", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + Code = "hxjt_bj_yfb", + IsDeleted = 0ul, + Name = "研发部", + 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, + Type = 0 + }, + new + { + Id = "07322be0-2015-41f2-859e-132b5e142fca", + Code = "hxjt_bj_qhb", + IsDeleted = 0ul, + Name = "企划部", + 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, + Type = 0 + }, + new + { + Id = "49dc3f25-873d-4998-9767-46978d79d8e6", + Code = "hxjt_cd_scb", + IsDeleted = 0ul, + Name = "市场部", + 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, + Type = 0 + }, + new + { + Id = "56b7a823-cc62-492b-a91b-0b053ef2683b", + Code = "hxjt_cd_cwb", + IsDeleted = 0ul, + Name = "财务部", + 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, + Type = 0 + }, + new + { + Id = "e9f97d63-a585-40ff-bf0c-7406e785f660", + Code = "hxjt_cd_scb_2b", + IsDeleted = 0ul, + Name = "市场部二部", + 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, + Type = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysPos", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_pos"); + + b + .HasComment("职位表"); + + b.HasData( + new + { + Id = "269236c4-d74e-4e54-9d50-f6f61580a197", + Code = "zjl", + IsDeleted = 0ul, + Name = "总经理", + Remark = "总经理", + Sort = 100, + Status = 0 + }, + new + { + Id = "46c68a62-f119-4ff7-b621-0bbd77504538", + Code = "fzjl", + IsDeleted = 0ul, + Name = "副总经理", + Remark = "副总经理", + Sort = 101, + Status = 0 + }, + new + { + Id = "5bd8c466-2bca-4386-a551-daac78e3cee8", + Code = "bmjl", + IsDeleted = 0ul, + Name = "部门经理", + Remark = "部门经理", + Sort = 102, + Status = 0 + }, + new + { + Id = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66", + Code = "gzry", + IsDeleted = 0ul, + Name = "工作人员", + Remark = "工作人员", + Sort = 103, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysRole", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("DataScopeType") + .HasColumnType("int") + .HasComment("数据范围类型"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_role"); + + b + .HasComment("角色表"); + + b.HasData( + new + { + Id = "6dfe9189-ce10-434e-a7a7-5cdc46e85047", + Code = "sys_manager_role", + DataScopeType = 1, + IsDeleted = 0ul, + Name = "系统管理员", + Remark = "系统管理员", + Sort = 100, + Status = 0 + }, + new + { + Id = "cd187ebd-ab3d-4768-9669-85e2219c2910", + Code = "common_role", + DataScopeType = 5, + IsDeleted = 0ul, + Name = "普通用户", + Remark = "普通用户", + Sort = 101, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleArea", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasComment("角色Id"); + + b.Property("AreaCode") + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域代码"); + + b.HasKey("SysRoleId", "AreaCode"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_role_area"); + + b + .HasComment("角色区域自定义数据"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.HasKey("SysRoleId", "SysOrgId"); + + b.HasIndex("SysOrgId"); + + b.ToTable("sys_role_data_scope"); + + b + .HasComment("角色数据范围表"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.Property("SysMenuId") + .HasColumnType("varchar(36)") + .HasColumnName("SysMenuId") + .HasComment("菜单Id"); + + b.HasKey("SysRoleId", "SysMenuId"); + + b.HasIndex("SysMenuId"); + + b.ToTable("sys_role_menu"); + + b + .HasComment("角色菜单表"); + }); + + modelBuilder.Entity("Ewide.Core.SysTenant", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Connection") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库连接"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电子邮箱"); + + b.Property("Host") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("主机"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Phone") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Schema") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("架构"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_tenant"); + + b + .HasComment("租户表"); + + b.HasData( + new + { + Id = "506a14b7-882d-4548-96fa-a55dbe79bfa1", + Connection = "Data Source=./Ewide.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Email = "zuohuaijun@163.com", + Host = "localhost:5566", + IsDeleted = 0ul, + Name = "默认租户", + Phone = "18020030720" + }, + new + { + Id = "eed8c4a6-70d8-49fd-9566-21a6966bb702", + Connection = "Data Source=./Dilon_1.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Host = "localhost:5588", + IsDeleted = 0ul, + Name = "其他租户" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysTimer", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("BeginTime") + .HasColumnType("datetime") + .HasComment("开始时间"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Cron") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Cron表达式"); + + b.Property("DoOnce") + .HasColumnType("tinyint(1)") + .HasComment("只执行一次"); + + b.Property("EndTime") + .HasColumnType("datetime") + .HasComment("结束时间"); + + b.Property("ExecuteType") + .HasColumnType("int") + .HasComment("执行类型"); + + b.Property("Headers") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Headers"); + + b.Property("Interval") + .HasColumnType("int") + .HasComment("执行间隔时间"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("JobName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("任务名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("RequestParameters") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求参数"); + + b.Property("RequestType") + .HasColumnType("int") + .HasComment("请求类型"); + + b.Property("RequestUrl") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求url"); + + b.Property("RunNumber") + .HasColumnType("int") + .HasComment("执行次数"); + + b.Property("StartNow") + .HasColumnType("tinyint(1)") + .HasComment("立即执行"); + + b.Property("TimerType") + .HasColumnType("int") + .HasComment("定时器类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_timer"); + + b + .HasComment("定时任务表"); + + b.HasData( + new + { + Id = "971bc338-0c03-46d4-8113-c7738d54ea18", + BeginTime = new DateTime(2021, 3, 21, 0, 0, 0, 0, DateTimeKind.Local), + DoOnce = false, + ExecuteType = 0, + Interval = 30, + IsDeleted = 0ul, + JobName = "百度api", + RequestType = 2, + RequestUrl = "https://www.baidu.com", + StartNow = false, + TimerType = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Account") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("账号"); + + b.Property("AdminType") + .HasColumnType("int") + .HasComment("管理员类型-超级管理员_1、非管理员_2"); + + b.Property("Avatar") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("头像"); + + b.Property("Birthday") + .HasColumnType("datetime") + .HasComment("生日"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("邮箱"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("LastLoginIp") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("最后登录IP"); + + b.Property("LastLoginTime") + .HasColumnType("datetime") + .HasComment("最后登录时间"); + + b.Property("Name") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("姓名"); + + b.Property("NickName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("昵称"); + + b.Property("Password") + .IsRequired() + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("密码"); + + b.Property("Phone") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("手机"); + + b.Property("SecurityLevel") + .HasColumnType("int") + .HasComment("密码安全级别"); + + b.Property("Sex") + .HasColumnType("int") + .HasComment("性别-男_1、女_2"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态-正常_0、停用_1、删除_2"); + + b.Property("Tel") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_user"); + + b + .HasComment("用户表"); + + b.HasData( + new + { + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + Account = "superAdmin", + AdminType = 1, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "superAdmin", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 1, + Status = 0 + }, + new + { + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + Account = "admin", + AdminType = 1, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "admin", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 2, + Status = 0 + }, + new + { + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", + Account = "zuohuaijun", + AdminType = 2, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "zuohuaijun", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 1, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysUserArea", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("AreaCode") + .HasMaxLength(10) + .HasColumnType("varchar(10) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域代码"); + + b.HasKey("SysUserId", "AreaCode"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_user_area"); + + b + .HasComment("用户授权区域信息"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.HasKey("SysUserId", "SysOrgId"); + + b.HasIndex("SysOrgId"); + + b.ToTable("sys_user_data_scope"); + + b + .HasComment("用户数据范围表"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserRole", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.HasKey("SysUserId", "SysRoleId"); + + b.HasIndex("SysRoleId"); + + b.ToTable("sys_user_role"); + + b + .HasComment("用户角色表"); + }); + + modelBuilder.Entity("Vote.Services.Entities.Experts", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("login_code") + .HasMaxLength(36) + .HasColumnType("varchar(36) CHARACTER SET utf8mb4") + .HasComment("登录码"); + + b.HasKey("Id"); + + b.ToTable("Experts"); + }); + + modelBuilder.Entity("Vote.Services.Entities.Projects", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("工程名称"); + + b.Property("serial_number") + .HasColumnType("int") + .HasComment("项目序号"); + + b.Property("type") + .HasColumnType("int") + .HasComment("项目类型"); + + b.HasKey("Id"); + + b.ToTable("Projects"); + }); + + modelBuilder.Entity("Vote.Services.Entities.VoteRecords", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("expert_login_code") + .HasMaxLength(36) + .HasColumnType("varchar(36) CHARACTER SET utf8mb4") + .HasComment("专家"); + + b.Property("is_agree") + .HasColumnType("tinyint(1)") + .HasComment("是否同意"); + + b.Property("project_id") + .HasMaxLength(36) + .HasColumnType("varchar(36) CHARACTER SET utf8mb4") + .HasComment("项目Id"); + + b.Property("vote_time") + .HasColumnType("datetime") + .HasComment("投票时间"); + + b.HasKey("Id"); + + b.ToTable("VoteRecords"); + }); + + modelBuilder.Entity("Ewide.Core.SysDictData", b => + { + b.HasOne("Ewide.Core.SysDictType", "SysDictType") + .WithMany("SysDictDatas") + .HasForeignKey("TypeId"); + + b.Navigation("SysDictType"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => + { + b.HasOne("Ewide.Core.SysEmp", "SysEmp") + .WithMany() + .HasForeignKey("SysEmpId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany() + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysPos", "SysPos") + .WithMany() + .HasForeignKey("SysPosId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysEmp"); + + b.Navigation("SysOrg"); + + b.Navigation("SysPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpPos", b => + { + b.HasOne("Ewide.Core.SysEmp", "SysEmp") + .WithMany("SysEmpPos") + .HasForeignKey("SysEmpId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysPos", "SysPos") + .WithMany("SysEmpPos") + .HasForeignKey("SysPosId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysEmp"); + + b.Navigation("SysPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysOrgs") + .HasForeignKey("AreaCode"); + + b.Navigation("Area"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleArea", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysRoleAreas") + .HasForeignKey("AreaCode") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleAreas") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Area"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => + { + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany("SysRoleDataScopes") + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleDataScopes") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysOrg"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => + { + b.HasOne("Ewide.Core.SysMenu", "SysMenu") + .WithMany("SysRoleMenus") + .HasForeignKey("SysMenuId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleMenus") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysMenu"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserArea", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysUserAreas") + .HasForeignKey("AreaCode") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserAreas") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Area"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => + { + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany("SysUserDataScopes") + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserDataScopes") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysOrg"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserRole", b => + { + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysUserRoles") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserRoles") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysRole"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysAreaCode", b => + { + b.Navigation("SysOrgs"); + + b.Navigation("SysRoleAreas"); + + b.Navigation("SysUserAreas"); + }); + + modelBuilder.Entity("Ewide.Core.SysDictType", b => + { + b.Navigation("SysDictDatas"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmp", b => + { + b.Navigation("SysEmpPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysMenu", b => + { + b.Navigation("SysRoleMenus"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.Navigation("SysRoleDataScopes"); + + b.Navigation("SysUserDataScopes"); + }); + + modelBuilder.Entity("Ewide.Core.SysPos", b => + { + b.Navigation("SysEmpPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysRole", b => + { + b.Navigation("SysRoleAreas"); + + b.Navigation("SysRoleDataScopes"); + + b.Navigation("SysRoleMenus"); + + b.Navigation("SysUserRoles"); + }); + + modelBuilder.Entity("Ewide.Core.SysUser", b => + { + b.Navigation("SysUserAreas"); + + b.Navigation("SysUserDataScopes"); + + b.Navigation("SysUserRoles"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330111523_v1.0.4.cs b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330111523_v1.0.4.cs new file mode 100644 index 0000000..aac4bff --- /dev/null +++ b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330111523_v1.0.4.cs @@ -0,0 +1,773 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Ewide.Database.Migrations.Migrations +{ + public partial class v104 : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "08c8ad90-b44f-4270-890c-8447f086d579"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "0eae9b66-e00d-42cf-b41f-d6b7ebdff800"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "1b4f9504-f486-4f8f-9588-24357b9ad0e0"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "355563e6-615d-443a-bec6-d6247f4dbaf7"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "36a50b18-b513-4f89-9dab-a0a10031ec48"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "3d135a79-97bf-4f10-bba5-7bed90e911a3"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "439260c8-54de-48c3-977d-fe2c11ae7fe6"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "510e42da-856e-4d93-a099-d7e998dfbd7a"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "63e8a280-90c4-4c9b-9572-74f9d4278cd4"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "86c1a965-3229-46d6-a034-de4a06655d55"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "8db1378a-2deb-4d13-b49f-9490dd1ffd1d"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "90234cce-2f80-40cd-922e-d9d5ccd4a3c2"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "9a21e83c-06ae-44bc-9b9b-cecd92a0d606"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "c5401037-33b6-433f-9dd2-054dfb93a09e"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "d3674cdd-142f-4549-9766-4d2d3991cd76"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "e7f6f049-6bff-4479-b7fb-845c4db9bd01"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "eb83bc26-e942-4b98-8adc-02688bf1a32d"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "f6afc724-1b88-4a70-8714-d047c20928a4"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "016e39e3-6fb9-4d8f-a5f8-2478b4e389e1"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "03265409-52b0-43dc-85b5-0698a0367211"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "03d59313-3e30-4345-920e-e21455c11228"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "051a42c4-d157-47db-9887-12d5ea917922"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "056e05e3-2ae5-4db5-b976-f4a1809a4d1a"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "09955588-0f17-479b-ba4b-c1f90ca58a85"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "0c3672ab-23f4-4a8d-9de3-97fe401f3aee"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "19a78c25-d576-4fa0-872e-ae431a27f1fe"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "1a317eb0-a5fd-420a-b273-ca9d6a006921"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "1d3333dd-ed50-4dcc-b210-2d44190febde"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "1d6aafe6-457e-4143-82fe-b1334bdabc45"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "1e9371d1-8b01-4c55-9431-000a3fffc0b4"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "1ed52273-3c72-4f79-919c-0c4020e4cdf3"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "1f9ae2cf-c7c2-4a57-b678-b0fca4bf4959"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "21a336c4-f730-4244-ae5a-66d4e0f8f356"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "23a38e3e-a77c-463c-902e-02088707d1ca"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "25d0bc9e-30db-4768-9996-624312a0450c"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "26f148e5-a44e-47d5-90aa-49136b1efb6d"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "2b257857-4905-4176-bebe-bc8b99eef73b"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "2bc85650-b86d-44de-a152-970928376305"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "320907e0-5092-467c-ad38-9883af7e7694"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "35870caf-f7f5-4302-95d9-fb0c05462c40"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "37a5cc48-fe51-4493-b5bd-2dd0b42088b3"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "39d80b14-8735-4710-bacb-432fd12dc309"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "3e458131-6318-4e27-935e-2e4a85c877b1"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "40b27864-99c0-4d04-889c-5f9ff17cf726"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "424b6a6a-8e16-4e5e-936b-25a73a3c244b"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "44eebc4d-b467-477b-8c01-65931593722a"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "4743c1eb-7135-4ea9-81f8-cf6d825e0ad5"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "49dd82e4-b9b9-4d26-ae87-9f9092f367d1"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "4c9d4677-539c-45c8-8885-45f9d2c1c15e"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "4dcf10bd-93e6-43aa-8e18-9410392a8701"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "54e26c4e-ffc4-4493-bb4c-3f3f66f46019"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "562be9ce-e9fd-4d81-b8a2-636fbc25d9c1"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "5921ad9e-7027-446d-aae3-899ad388404b"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "594b2558-3c4d-4af5-a79e-17c74886b0b9"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "5a5dffca-ad94-476a-a25d-b68df2fd4908"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "5a9e2016-1c56-4435-8aed-4221bff231da"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "5c4796db-5b4a-4259-b8b1-d89846d984ee"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "5c504c5d-9d69-4cf8-a483-c8699f0b517e"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "5e0e10fa-a4cc-4a7f-b5a5-9b0ca0e0a9af"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "62696ca2-719e-41df-8bad-e182efe84963"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "62eb67a1-2584-4b9e-b663-9c6c1b700d42"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "64d400e2-0247-4c74-a02e-f32753292095"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "686d2b36-30a8-47c4-9050-db601d8dcb8c"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "68f25778-4b2f-4a91-a2dc-640a0622f389"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "6e52bfbf-4095-4189-b2f7-37eb1ced0ec9"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "6e8d85df-e9ed-4386-9b15-7c19eaccb199"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "74c4cf12-880d-49f1-bd53-047bd7f858ac"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "7e1989e6-bf05-4fbc-b397-dc74069d301d"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "7f046001-a58d-400e-b97d-d4b55f79b6eb"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "8118f5fd-8082-4186-a5b4-32490cbadb19"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "8424686e-6e8a-49ca-b1db-8635ebda2157"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "85f873b8-ae62-4e5a-bab8-92332304368a"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "88909223-8273-4b3d-9b56-ba32e038ed35"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "88b56348-6d04-45b4-8dc5-ba4c3b5303a7"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "8a5fc13a-d5aa-44b2-99dd-c2834ac00520"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "8be3e94f-0b17-4c97-9b9d-021b922fc6a2"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "8fce8773-1eb4-4031-b9bd-60ce0fab8c18"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "91fd6b72-a524-480d-aadf-6e3bae73fbcb"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "92d860ce-94f5-4468-976d-6f4bc6d3a005"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "94e3b06e-2fa6-4830-8432-383305b237b8"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "9742d735-e769-4355-8b26-5067a35b75bf"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "996d15ac-467d-4ff8-8935-76517cc84fb7"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "9b654b10-36d8-4530-8390-1406dc38bd84"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "9c16ca23-f3d8-44c9-92d7-d08d6b64e4f9"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "9c670713-7d5f-4372-ab7c-246e8e6dd3cf"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "9ef49c31-8224-4c03-91e8-821d7b36b377"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "9f9d3b0f-0a9d-48cf-98a3-9ec2d805e8a9"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "a25b1db3-23a2-4ea5-b10c-f020325c292f"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "a3667aa7-9403-4cc6-a85e-42b96815ac32"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "a3f6eea4-0349-4ddd-bfa7-33c0427bc90a"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "a4054e2d-7f81-411e-8673-7b05938654f7"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "a4d7196d-b9f3-439f-8258-4da4c04b177a"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "a9be40e3-99b3-4d94-aaaa-92711f853075"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "aa0e4017-2304-431a-b5ed-b725a77cb810"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "aa28f286-cc5d-4051-978d-43ef4014cf5e"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "b05f4d26-1b04-4a23-a295-8848ce4aa73e"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "b23702d5-9c73-4c79-aa63-fe2245f4d65d"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "b38cedeb-f524-44ef-be8f-6cd1f7c54b59"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "b9690320-4839-40bb-8703-3b2724ce0578"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "bb3eee7a-4846-4177-b377-fd2804d4db72"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "bddeb30e-59bb-462b-bb69-5fe557b20614"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "c04fa383-a9b0-47e4-a91c-9f1b657ac55b"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "c0e62c16-bf78-4d82-8dc6-442c1f0c0adc"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "c12f36c4-6887-4beb-8b90-1c5b68006af1"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "c970ff56-ff36-4c64-a8a4-832c92e2f4bf"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "cb5725b1-06cd-42da-abc4-c4412cecb627"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "d25f90c3-8125-4821-86cf-fbd3b879dd4b"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "d52f2db9-07a5-4b77-add5-65c3b0a021e1"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "d7c8a941-e37a-4889-b862-2b4c2fb8a992"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "dc22af65-c261-4245-b319-8908fc2e77f6"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "e4f7391b-a0a4-48d0-a803-4be81e52bbb9"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "e7ccba65-414f-4501-af69-4d6722e21d86"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "ecaf4b26-b27e-4eed-bbf2-0deaf52495fa"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "ef61f197-b194-4190-ab74-f5f78c160bd3"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "f2dc17f8-7bd1-4f6e-b16a-674e1ec34ed0"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "f3ed2aeb-ac40-4580-bb37-008bea343731"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "f640a90e-71c1-4142-afb4-b9d68f9ac08f"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "fad24cde-bd7c-40cf-a7e2-ce46e396f489"); + + migrationBuilder.CreateTable( + name: "VoteRecords", + columns: table => new + { + Id = table.Column(type: "varchar(36)", nullable: false, comment: "Id主键"), + expert_login_code = table.Column(type: "varchar(36) CHARACTER SET utf8mb4", maxLength: 36, nullable: true, comment: "专家"), + project_id = table.Column(type: "varchar(36) CHARACTER SET utf8mb4", maxLength: 36, nullable: true, comment: "项目Id"), + is_agree = table.Column(type: "tinyint(1)", nullable: false, comment: "是否同意"), + vote_time = table.Column(type: "datetime", nullable: false, comment: "投票时间"), + CreatedTime = table.Column(type: "datetime", nullable: true, comment: "创建时间"), + UpdatedTime = table.Column(type: "datetime", 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_VoteRecords", x => x.Id); + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "VoteRecords"); + + migrationBuilder.InsertData( + table: "Experts", + columns: new[] { "Id", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "login_code" }, + values: new object[,] + { + { "08c8ad90-b44f-4270-890c-8447f086d579", null, null, null, 0ul, null, null, null, "8YCDD9" }, + { "f6afc724-1b88-4a70-8714-d047c20928a4", null, null, null, 0ul, null, null, null, "XQLGQ8" }, + { "eb83bc26-e942-4b98-8adc-02688bf1a32d", null, null, null, 0ul, null, null, null, "KZS4WS" }, + { "e7f6f049-6bff-4479-b7fb-845c4db9bd01", null, null, null, 0ul, null, null, null, "HCY26V" }, + { "d3674cdd-142f-4549-9766-4d2d3991cd76", null, null, null, 0ul, null, null, null, "DH1HCC" }, + { "c5401037-33b6-433f-9dd2-054dfb93a09e", null, null, null, 0ul, null, null, null, "TYVWMZ" }, + { "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d", null, null, null, 0ul, null, null, null, "FNNUA9" }, + { "90234cce-2f80-40cd-922e-d9d5ccd4a3c2", null, null, null, 0ul, null, null, null, "A4P3RZ" }, + { "8db1378a-2deb-4d13-b49f-9490dd1ffd1d", null, null, null, 0ul, null, null, null, "2154MF" }, + { "86c1a965-3229-46d6-a034-de4a06655d55", null, null, null, 0ul, null, null, null, "CWYB3P" }, + { "9a21e83c-06ae-44bc-9b9b-cecd92a0d606", null, null, null, 0ul, null, null, null, "97GFZQ" }, + { "510e42da-856e-4d93-a099-d7e998dfbd7a", null, null, null, 0ul, null, null, null, "3GZDEW" }, + { "439260c8-54de-48c3-977d-fe2c11ae7fe6", null, null, null, 0ul, null, null, null, "ZFD5VL" }, + { "3d135a79-97bf-4f10-bba5-7bed90e911a3", null, null, null, 0ul, null, null, null, "5MJQY7" }, + { "36a50b18-b513-4f89-9dab-a0a10031ec48", null, null, null, 0ul, null, null, null, "JL022B" }, + { "355563e6-615d-443a-bec6-d6247f4dbaf7", null, null, null, 0ul, null, null, null, "K8H9PW" }, + { "1b4f9504-f486-4f8f-9588-24357b9ad0e0", null, null, null, 0ul, null, null, null, "C6FSMT" }, + { "0eae9b66-e00d-42cf-b41f-d6b7ebdff800", null, null, null, 0ul, null, null, null, "XV8U1U" }, + { "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0", null, null, null, 0ul, null, null, null, "SMBG3Q" }, + { "63e8a280-90c4-4c9b-9572-74f9d4278cd4", null, null, null, 0ul, null, null, null, "WHM9CF" } + }); + + migrationBuilder.InsertData( + table: "Projects", + columns: new[] { "Id", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "name", "serial_number", "type" }, + values: new object[,] + { + { "5e0e10fa-a4cc-4a7f-b5a5-9b0ca0e0a9af", null, null, null, 0ul, null, null, null, "宁波杭州湾新区南部新城海泉湾博华路市政工程项目/宁波杭州湾新区南部新城海泉湾规划二路市政工程项目", 65, 1 }, + { "562be9ce-e9fd-4d81-b8a2-636fbc25d9c1", null, null, null, 0ul, null, null, null, "宁波杭州湾新区海川大道(七塘公路—滨海一路)市政工程标段Ⅰ", 66, 1 }, + { "d52f2db9-07a5-4b77-add5-65c3b0a021e1", null, null, null, 0ul, null, null, null, "梅景路改造(冬青路-渡驾桥江)工程", 67, 1 }, + { "a9be40e3-99b3-4d94-aaaa-92711f853075", null, null, null, 0ul, null, null, null, "云飞路三期(康庄南路-长岛花园东侧路)工 程", 68, 1 }, + { "6e8d85df-e9ed-4386-9b15-7c19eaccb199", null, null, null, 0ul, null, null, null, "慈溪高新区基础设施建设四期", 72, 1 }, + { "594b2558-3c4d-4af5-a79e-17c74886b0b9", null, null, null, 0ul, null, null, null, "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)二标段", 70, 1 }, + { "a3667aa7-9403-4cc6-a85e-42b96815ac32", null, null, null, 0ul, null, null, null, "灵岩山路东延及沿山河南路延伸段工程一期", 71, 1 }, + { "85f873b8-ae62-4e5a-bab8-92332304368a", null, null, null, 0ul, null, null, null, "机场快速路南延工程(绕城高速至岳林东路南)施工Ⅰ标段", 64, 1 }, + { "9b654b10-36d8-4530-8390-1406dc38bd84", null, null, null, 0ul, null, null, null, "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)一标段", 69, 1 }, + { "a4054e2d-7f81-411e-8673-7b05938654f7", null, null, null, 0ul, null, null, null, "柴桥临港产业园横二路(纬中路-环区路)工程", 63, 1 }, + { "19a78c25-d576-4fa0-872e-ae431a27f1fe", null, null, null, 0ul, null, null, null, "霞浦污水泵站污水压力管工程", 53, 1 }, + { "44eebc4d-b467-477b-8c01-65931593722a", null, null, null, 0ul, null, null, null, "沿山干河、陈渡界北三河周边剩余地块绿带工程", 61, 1 }, + { "8424686e-6e8a-49ca-b1db-8635ebda2157", null, null, null, 0ul, null, null, null, "宁波北仑柴桥净化水厂EPC总承包项目", 60, 1 }, + { "9ef49c31-8224-4c03-91e8-821d7b36b377", null, null, null, 0ul, null, null, null, "姚江南岸滨江休闲带(机场路-青林渡路)工程", 59, 1 }, + { "37a5cc48-fe51-4493-b5bd-2dd0b42088b3", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅸ标段", 58, 1 }, + { "74c4cf12-880d-49f1-bd53-047bd7f858ac", null, null, null, 0ul, null, null, null, "铁路平改立新大路(329国道 -金牌公路)工程", 57, 1 }, + { "9f9d3b0f-0a9d-48cf-98a3-9ec2d805e8a9", null, null, null, 0ul, null, null, null, "姚江东路(环城北路-机场路)工程I标段", 56, 1 }, + { "320907e0-5092-467c-ad38-9883af7e7694", null, null, null, 0ul, null, null, null, "新长邱线拓宽改造工程(施工)2标段", 55, 1 }, + { "92d860ce-94f5-4468-976d-6f4bc6d3a005", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅱ标段", 54, 1 }, + { "996d15ac-467d-4ff8-8935-76517cc84fb7", null, null, null, 0ul, null, null, null, "慈溪滨海经济开发区龙山滨海新城蓬苑路(横五路-横四路)工程", 73, 1 }, + { "cb5725b1-06cd-42da-abc4-c4412cecb627", null, null, null, 0ul, null, null, null, "三官堂大桥及接线(江南路至中官西路)工程接线部分II标段", 52, 1 }, + { "5c4796db-5b4a-4259-b8b1-d89846d984ee", null, null, null, 0ul, null, null, null, "铸锋路(康庄北路-通园路)拓宽改建工程Ⅱ标段", 62, 1 }, + { "91fd6b72-a524-480d-aadf-6e3bae73fbcb", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4001标段(翠柏里站)施工", 74, 2 }, + { "c04fa383-a9b0-47e4-a91c-9f1b657ac55b", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第二批)TJ4004标段施工", 84, 2 }, + { "a25b1db3-23a2-4ea5-b10c-f020325c292f", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程供电系统安装施工Ⅱ标段", 76, 2 }, + { "88b56348-6d04-45b4-8dc5-ba4c3b5303a7", null, null, null, 0ul, null, null, null, "余姚市海塘除险治江围涂四期工程--临海北顺堤堤顶道路、堤岸防护及河道配套工程", 98, 5 }, + { "4dcf10bd-93e6-43aa-8e18-9410392a8701", null, null, null, 0ul, null, null, null, "梅山磨头碶移位及配套河道工程", 97, 5 }, + { "4743c1eb-7135-4ea9-81f8-cf6d825e0ad5", null, null, null, 0ul, null, null, null, "沿海中线北仑郭巨段(郭巨互通-北堤互通)拓宽工程", 96, 4 }, + { "f3ed2aeb-ac40-4580-bb37-008bea343731", null, null, null, 0ul, null, null, null, "明州大道(洞桥至云龙段)工程第IV-2合同段", 95, 4 }, + { "88909223-8273-4b3d-9b56-ba32e038ed35", null, null, null, 0ul, null, null, null, "71省道盛宁线东陈至茅洋段改建工程", 94, 4 }, + { "b23702d5-9c73-4c79-aa63-fe2245f4d65d", null, null, null, 0ul, null, null, null, "38省道宁海桥头胡至深甽段改建工程", 93, 4 }, + { "1d3333dd-ed50-4dcc-b210-2d44190febde", null, null, null, 0ul, null, null, null, "新乐220千伏变电站整体改造工程", 92, 3 }, + { "25d0bc9e-30db-4768-9996-624312a0450c", null, null, null, 0ul, null, null, null, "协丰220千伏变电站工程", 91, 3 }, + { "d25f90c3-8125-4821-86cf-fbd3b879dd4b", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第四批)TJ4003标段施工", 90, 2 }, + { "8fce8773-1eb4-4031-b9bd-60ce0fab8c18", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程JDSG4004标段车站机电安装施工", 89, 2 }, + { "051a42c4-d157-47db-9887-12d5ea917922", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4011标段施工", 75, 2 }, + { "1a317eb0-a5fd-420a-b273-ca9d6a006921", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程地下段轨道工程施工I标段", 88, 2 }, + { "b05f4d26-1b04-4a23-a295-8848ce4aa73e", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4012标段施工", 86, 2 }, + { "40b27864-99c0-4d04-889c-5f9ff17cf726", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4018标", 85, 2 }, + { "bddeb30e-59bb-462b-bb69-5fe557b20614", null, null, null, 0ul, null, null, null, "梅山保税港区港湾路(二期)工程", 51, 1 }, + { "a3f6eea4-0349-4ddd-bfa7-33c0427bc90a", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程地下段轨道工程施工Ⅱ标段", 83, 2 }, + { "aa28f286-cc5d-4051-978d-43ef4014cf5e", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4016标", 82, 2 }, + { "1ed52273-3c72-4f79-919c-0c4020e4cdf3", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第四批)TJ4017标段施工", 81, 2 }, + { "d7c8a941-e37a-4889-b862-2b4c2fb8a992", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第四批)TJ4008标段施工", 80, 2 }, + { "e4f7391b-a0a4-48d0-a803-4be81e52bbb9", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程JDSG4006标段车站机电安装施工", 79, 2 }, + { "9c670713-7d5f-4372-ab7c-246e8e6dd3cf", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4013标段施工", 78, 2 }, + { "5a9e2016-1c56-4435-8aed-4221bff231da", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第一批)TJ4015标段施工", 77, 2 }, + { "424b6a6a-8e16-4e5e-936b-25a73a3c244b", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第五批)TJ4007标段施工", 87, 2 }, + { "7f046001-a58d-400e-b97d-d4b55f79b6eb", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅲ标段", 50, 1 }, + { "c970ff56-ff36-4c64-a8a4-832c92e2f4bf", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅶ标段", 40, 1 }, + { "49dd82e4-b9b9-4d26-ae87-9f9092f367d1", null, null, null, 0ul, null, null, null, "慈溪市北部污水处理厂提标改造工程", 48, 1 }, + { "1e9371d1-8b01-4c55-9431-000a3fffc0b4", null, null, null, 0ul, null, null, null, "宁波大红鹰学院象山影视学院工程(二期)", 21, 0 }, + { "23a38e3e-a77c-463c-902e-02088707d1ca", null, null, null, 0ul, null, null, null, "东部新城核心区以东片区C1-6#地块邱隘镇九年一贯制学校工程", 20, 0 }, + { "62eb67a1-2584-4b9e-b663-9c6c1b700d42", null, null, null, 0ul, null, null, null, "新能源技术与材料综合研发平台- 核用碳化硅纤维及复合材料研发及应用平台项目", 19, 0 }, + { "f640a90e-71c1-4142-afb4-b9d68f9ac08f", null, null, null, 0ul, null, null, null, "宁波海关宁海办事处检测报关代理服务中心项目", 18, 0 }, + { "4c9d4677-539c-45c8-8885-45f9d2c1c15e", null, null, null, 0ul, null, null, null, "宁波市残疾人康复中心(宁波市康复医院)扩建工程", 17, 0 }, + { "056e05e3-2ae5-4db5-b976-f4a1809a4d1a", null, null, null, 0ul, null, null, null, "北仑外国语学校工程", 16, 0 }, + { "ef61f197-b194-4190-ab74-f5f78c160bd3", null, null, null, 0ul, null, null, null, "慈溪市明月湖幼儿园", 15, 0 }, + { "62696ca2-719e-41df-8bad-e182efe84963", null, null, null, 0ul, null, null, null, "宁波市海曙区段塘学校扩建工程", 14, 0 }, + { "9c16ca23-f3d8-44c9-92d7-d08d6b64e4f9", null, null, null, 0ul, null, null, null, "镇海区中心学校新城校区项目", 13, 0 }, + { "2b257857-4905-4176-bebe-bc8b99eef73b", null, null, null, 0ul, null, null, null, "庄市中心学校迁建工程", 12, 0 }, + { "5c504c5d-9d69-4cf8-a483-c8699f0b517e", null, null, null, 0ul, null, null, null, "余姚市人民医院肿瘤治疗中心项目", 11, 0 }, + { "21a336c4-f730-4244-ae5a-66d4e0f8f356", null, null, null, 0ul, null, null, null, "北京航空航天大学宁波创新研究院(研究生院和国际交流中心)一期(实验用房)", 10, 0 }, + { "bb3eee7a-4846-4177-b377-fd2804d4db72", null, null, null, 0ul, null, null, null, "鄞州区钟公庙第二初级中学工程", 9, 0 }, + { "ecaf4b26-b27e-4eed-bbf2-0deaf52495fa", null, null, null, 0ul, null, null, null, "大庆北路地段配套学校(二期)", 8, 0 }, + { "8118f5fd-8082-4186-a5b4-32490cbadb19", null, null, null, 0ul, null, null, null, "宁波市职业技术教育中心学校(荷池校区) 改扩建项目", 7, 0 }, + { "686d2b36-30a8-47c4-9050-db601d8dcb8c", null, null, null, 0ul, null, null, null, "宁海县妇幼保健院保健大楼工程", 6, 0 }, + { "26f148e5-a44e-47d5-90aa-49136b1efb6d", null, null, null, 0ul, null, null, null, "慈城新城高中项目", 5, 0 }, + { "94e3b06e-2fa6-4830-8432-383305b237b8", null, null, null, 0ul, null, null, null, "太平鸟高新区男装办公楼项目", 4, 0 }, + { "03d59313-3e30-4345-920e-e21455c11228", null, null, null, 0ul, null, null, null, "高新区滨江绿带整治工程五期(翔海路—大东江)I标段", 3, 0 }, + { "3e458131-6318-4e27-935e-2e4a85c877b1", null, null, null, 0ul, null, null, null, "宁波诺丁汉大学图书馆及学习中心项目", 2, 0 }, + { "5921ad9e-7027-446d-aae3-899ad388404b", null, null, null, 0ul, null, null, null, "浙江纺织服装职业技术学院中英时尚设计学院综合楼项目", 1, 0 }, + { "1f9ae2cf-c7c2-4a57-b678-b0fca4bf4959", null, null, null, 0ul, null, null, null, "中国·浙江海洋运动中心(亚帆中心)工程", 22, 0 }, + { "c0e62c16-bf78-4d82-8dc6-442c1f0c0adc", null, null, null, 0ul, null, null, null, "宁波市黄湖监狱迁建项目I标段、Ⅱ标段、Ⅲ标段、装修工程", 23, 0 }, + { "8be3e94f-0b17-4c97-9b9d-021b922fc6a2", null, null, null, 0ul, null, null, null, "新潮塘区块九年一贯制学校新建工程", 24, 0 }, + { "fad24cde-bd7c-40cf-a7e2-ce46e396f489", null, null, null, 0ul, null, null, null, "顾国和中学(爱国中学)工程(门卫、教学楼A-C、教学楼D、综合楼、食堂)", 25, 0 }, + { "8a5fc13a-d5aa-44b2-99dd-c2834ac00520", null, null, null, 0ul, null, null, null, "杭甬复线威海互通连接线一期工程(施工)Ⅱ标段", 47, 1 }, + { "b38cedeb-f524-44ef-be8f-6cd1f7c54b59", null, null, null, 0ul, null, null, null, "杭甬复线威海互通连接线一期工程(施工)Ⅰ标段", 46, 1 }, + { "016e39e3-6fb9-4d8f-a5f8-2478b4e389e1", null, null, null, 0ul, null, null, null, "杭州湾新区滨海新城启动区银滩路等六条路市政工程", 45, 1 }, + { "7e1989e6-bf05-4fbc-b397-dc74069d301d", null, null, null, 0ul, null, null, null, "宁波杭州湾新区南部新城海泉湾规划三路市政工程", 44, 1 }, + { "b9690320-4839-40bb-8703-3b2724ce0578", null, null, null, 0ul, null, null, null, "会展路(盛梅路-沙洲路)及南侧河道绿地工程", 43, 1 }, + { "35870caf-f7f5-4302-95d9-fb0c05462c40", null, null, null, 0ul, null, null, null, "鄞奉路(新典路-三孔碶桥)道路工程", 42, 1 }, + { "9742d735-e769-4355-8b26-5067a35b75bf", null, null, null, 0ul, null, null, null, "西二环北延工程(明州路-中横线)", 41, 1 }, + { "f2dc17f8-7bd1-4f6e-b16a-674e1ec34ed0", null, null, null, 0ul, null, null, null, "庄桥机场周边区域水环境治理工程(江北大河整治工程二期庄桥段)", 99, 5 }, + { "5a5dffca-ad94-476a-a25d-b68df2fd4908", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅷ标段", 39, 1 }, + { "2bc85650-b86d-44de-a152-970928376305", null, null, null, 0ul, null, null, null, "三官堂大桥及接线(江南路至中官西路)工程I标", 38, 1 }, + { "a4d7196d-b9f3-439f-8258-4da4c04b177a", null, null, null, 0ul, null, null, null, "通途路(世纪大道~东外环)综合管廊工程施工Ⅱ标段", 49, 1 }, + { "54e26c4e-ffc4-4493-bb4c-3f3f66f46019", null, null, null, 0ul, null, null, null, "永泰公园", 37, 1 }, + { "c12f36c4-6887-4beb-8b90-1c5b68006af1", null, null, null, 0ul, null, null, null, "甬江北岸大庆北路(湖东路-怡西街)道路工程I标段", 35, 1 }, + { "03265409-52b0-43dc-85b5-0698a0367211", null, null, null, 0ul, null, null, null, "杭甬复线威海互通连接线一期工程(施工)Ⅲ标段", 34, 1 }, + { "68f25778-4b2f-4a91-a2dc-640a0622f389", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅳ标段", 33, 1 }, + { "e7ccba65-414f-4501-af69-4d6722e21d86", null, null, null, 0ul, null, null, null, "三官堂大桥及接线(江南路至中官西路)工程(主桥)", 32, 1 }, + { "0c3672ab-23f4-4a8d-9de3-97fe401f3aee", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅵ标段", 31, 1 }, + { "aa0e4017-2304-431a-b5ed-b725a77cb810", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅴ标段", 30, 1 }, + { "39d80b14-8735-4710-bacb-432fd12dc309", null, null, null, 0ul, null, null, null, "白沙路街道后油车股份经济合作社综合服务楼", 29, 0 }, + { "09955588-0f17-479b-ba4b-c1f90ca58a85", null, null, null, 0ul, null, null, null, "宁波科学中学新建项目", 28, 0 }, + { "dc22af65-c261-4245-b319-8908fc2e77f6", null, null, null, 0ul, null, null, null, "中科院上海药物所宁波临床前研究中心", 27, 0 }, + { "6e52bfbf-4095-4189-b2f7-37eb1ced0ec9", null, null, null, 0ul, null, null, null, "庄市街道同心湖幼儿园(暂名)工程", 26, 0 }, + { "1d6aafe6-457e-4143-82fe-b1334bdabc45", null, null, null, 0ul, null, null, null, "机场快速路南延(鄞州大道-绕城高速)工程施工Ⅰ标段", 36, 1 }, + { "64d400e2-0247-4c74-a02e-f32753292095", null, null, null, 0ul, null, null, null, "掌起镇任佳溪村防洪分流(小流域治理)工程", 100, 5 } + }); + } + } +} diff --git a/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330112007_v1.0.5.Designer.cs b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330112007_v1.0.5.Designer.cs new file mode 100644 index 0000000..48ff5b2 --- /dev/null +++ b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330112007_v1.0.5.Designer.cs @@ -0,0 +1,8153 @@ +// +using System; +using Ewide.EntityFramework.Core; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +namespace Ewide.Database.Migrations.Migrations +{ + [DbContext(typeof(DefaultDbContext))] + [Migration("20220330112007_v1.0.5")] + partial class v105 + { + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("Relational:MaxIdentifierLength", 64) + .HasAnnotation("ProductVersion", "5.0.15"); + + modelBuilder.Entity("Ewide.Core.SysApp", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Active") + .HasColumnType("bit") + .HasColumnName("Active") + .HasComment("是否默认激活"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Color") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标颜色"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Icon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_app"); + + b + .HasComment("系统应用表"); + + b.HasData( + new + { + Id = "8b2aeb5e-09a6-4afd-bcae-8ee8e5a1e6ec", + Active = 0ul, + Code = "busapp", + IsDeleted = 0ul, + Name = "业务应用", + Sort = 100, + Status = 0 + }, + new + { + Id = "d781b8f1-0d08-48c8-b7a5-ed75ddfa676c", + Active = 1ul, + Code = "system", + IsDeleted = 0ul, + Name = "系统管理", + Sort = 100, + Status = 0 + }, + new + { + Id = "850ab86f-cd6a-4d49-b920-77dfa5d78813", + Active = 0ul, + Code = "system_tool", + IsDeleted = 0ul, + Name = "系统工具", + Sort = 100, + Status = 0 + }, + new + { + Id = "05a32be5-82e8-423f-affa-e17232a63ee1", + Active = 0ul, + Code = "advanced", + IsDeleted = 0ul, + Name = "高级功能", + Sort = 100, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysAreaCode", b => + { + b.Property("Code") + .HasMaxLength(50) + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域编码"); + + b.Property("AdCode") + .HasMaxLength(50) + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("区域的行政编码"); + + b.Property("LevelType") + .HasColumnType("int") + .HasComment("类别"); + + b.Property("Name") + .IsRequired() + .HasMaxLength(100) + .HasColumnType("varchar(100) CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Note") + .HasMaxLength(1000) + .HasColumnType("varchar(1000) CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.HasKey("Code"); + + b.ToTable("sys_area_code"); + + b + .HasComment("区域表"); + + b.HasData( + new + { + Code = "3302", + AdCode = "3302", + LevelType = 1, + Name = "XX市", + Note = "XX市", + Sort = 0 + }, + new + { + Code = "330266", + AdCode = "330266", + LevelType = 2, + Name = "测试区", + Note = "测试区", + Sort = 100 + }, + new + { + Code = "330266001", + AdCode = "330266001", + LevelType = 3, + Name = "测试街道", + Note = "测试街道", + Sort = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysCodeGen", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AuthorName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("作者姓名"); + + b.Property("BusName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("业务名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("GenerateType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("生成方式"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NameSpace") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("命名空间"); + + b.Property("TableName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库表名"); + + b.Property("TablePrefix") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否移除表前缀"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_code_gen"); + + b + .HasComment("代码生成表"); + }); + + modelBuilder.Entity("Ewide.Core.SysCodeGenConfig", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CodeGenId") + .HasColumnType("varchar(36)") + .HasColumnName("CodeGenId") + .HasComment("代码生成主表ID"); + + b.Property("ColumnComment") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("字段描述"); + + b.Property("ColumnKey") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("主外键"); + + b.Property("ColumnName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库字段名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("DataType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库中类型"); + + b.Property("DictTypeCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("字典Code"); + + b.Property("EffectType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("作用类型"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NetType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment(".NET数据类型"); + + b.Property("QueryType") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("查询方式"); + + b.Property("QueryWhether") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否是查询条件"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("WhetherAddUpdate") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("增改"); + + b.Property("WhetherCommon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否通用字段"); + + b.Property("WhetherRequired") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否必填"); + + b.Property("WhetherRetract") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列表是否缩进"); + + b.Property("WhetherTable") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列表显示"); + + b.HasKey("Id"); + + b.ToTable("sys_code_gen_config"); + + b + .HasComment("代码生成字段配置表"); + }); + + modelBuilder.Entity("Ewide.Core.SysConfig", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("GroupCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("常量所属分类的编码"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("SysFlag") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("是否是系统参数"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Value") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("属性值"); + + b.HasKey("Id"); + + b.ToTable("sys_config"); + + b + .HasComment("参数配置表"); + + b.HasData( + new + { + Id = "7c2765cd-d39b-4772-8d6c-0dbcdcfa1ff8", + Code = "DILON_JWT_SECRET", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "jwt密钥", + Remark = "(重要)jwt密钥,默认为空,自行设置", + Status = 0, + SysFlag = "Y", + Value = "xiaonuo" + }, + new + { + Id = "e3553657-14cf-4c26-ba7b-dbb4bfd4bc55", + Code = "DILON_DEFAULT_PASSWORD", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "默认密码", + Remark = "默认密码", + Status = 0, + SysFlag = "Y", + Value = "123456" + }, + new + { + Id = "2c677cd2-2a54-46c6-971d-f9fe20f101f3", + Code = "DILON_TOKEN_EXPIRE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "token过期时间", + Remark = "token过期时间(单位:秒)", + Status = 0, + SysFlag = "Y", + Value = "86400" + }, + new + { + Id = "8938506d-2e00-44e0-8592-48453d43f9f5", + Code = "DILON_SESSION_EXPIRE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "session会话过期时间", + Remark = "session会话过期时间(单位:秒)", + Status = 0, + SysFlag = "Y", + Value = "7200" + }, + new + { + Id = "beb2e9e7-f4d9-43b1-bfab-3557ea232f8d", + Code = "DILON_ALIYUN_SMS_ACCESSKEY_ID", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信keyId", + Remark = "阿里云短信keyId", + Status = 0, + SysFlag = "Y", + Value = "你的keyId" + }, + new + { + Id = "ead14cd0-9fd4-4fd6-b75c-239d8b2ebed8", + Code = "DILON_ALIYUN_SMS_ACCESSKEY_SECRET", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信secret", + Remark = "阿里云短信secret", + Status = 0, + SysFlag = "Y", + Value = "你的secret" + }, + new + { + Id = "beaaafc2-3fdf-42af-9b06-ead3a6dd6306", + Code = "DILON_ALIYUN_SMS_SIGN_NAME", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信签名", + Remark = "阿里云短信签名", + Status = 0, + SysFlag = "Y", + Value = "你的签名" + }, + new + { + Id = "e26a10cf-911a-4fe0-a113-76965be749a0", + Code = "DILON_ALIYUN_SMS_LOGIN_TEMPLATE_CODE", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信-登录模板号", + Remark = "阿里云短信-登录模板号", + Status = 0, + SysFlag = "Y", + Value = "SMS_1877123456" + }, + new + { + Id = "24d3f286-efca-49af-91b4-e3ce42cce36e", + Code = "DILON_ALIYUN_SMS_INVALIDATE_MINUTES", + GroupCode = "ALIYUN_SMS", + IsDeleted = 0ul, + Name = "阿里云短信默认失效时间", + Remark = "阿里云短信默认失效时间(单位:分钟)", + Status = 0, + SysFlag = "Y", + Value = "5" + }, + new + { + Id = "c6540a07-ce32-47b4-ab83-b647bdb14491", + Code = "DILON_TENCENT_SMS_SECRET_ID", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信secretId", + Remark = "腾讯云短信secretId", + Status = 0, + SysFlag = "Y", + Value = "你的secretId" + }, + new + { + Id = "a0412212-d50b-42aa-9484-3cef8fe3cc59", + Code = "DILON_TENCENT_SMS_SECRET_KEY", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信secretKey", + Remark = "腾讯云短信secretKey", + Status = 0, + SysFlag = "Y", + Value = "你的secretkey" + }, + new + { + Id = "c928ca11-5137-4b71-bf1c-f3bc95bcd34d", + Code = "DILON_TENCENT_SMS_SDK_APP_ID", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信sdkAppId", + Remark = "腾讯云短信sdkAppId", + Status = 0, + SysFlag = "Y", + Value = "1400375123" + }, + new + { + Id = "16ce1b6e-c8ad-4299-9293-6caff0e5cb49", + Code = "DILON_TENCENT_SMS_SIGN", + GroupCode = "TENCENT_SMS", + IsDeleted = 0ul, + Name = "腾讯云短信签名", + Remark = "腾讯云短信签名", + Status = 0, + SysFlag = "Y", + Value = "你的签名" + }, + new + { + Id = "66e63d64-b7eb-4e6a-b5b6-c87811c2e700", + Code = "DILON_EMAIL_HOST", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱host", + Remark = "邮箱host", + Status = 0, + SysFlag = "Y", + Value = "smtp.126.com" + }, + new + { + Id = "997a9bc6-22ed-4fe6-a20c-c3c2a0b682a0", + Code = "DILON_EMAIL_USERNAME", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱用户名", + Remark = "邮箱用户名", + Status = 0, + SysFlag = "Y", + Value = "test@126.com" + }, + new + { + Id = "633d1851-41d9-4ebd-b83b-3aa4501cd1a7", + Code = "DILON_EMAIL_PASSWORD", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱密码", + Remark = "邮箱密码", + Status = 0, + SysFlag = "Y", + Value = "你的邮箱密码" + }, + new + { + Id = "67e468f7-e791-4e91-a896-62e9f7411635", + Code = "DILON_EMAIL_PORT", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱端口", + Remark = "邮箱端口", + Status = 0, + SysFlag = "Y", + Value = "465" + }, + new + { + Id = "dc462c05-de23-4f90-bcdc-88de4abcdf22", + Code = "DILON_EMAIL_SSL", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱是否开启ssl", + Remark = "邮箱是否开启ssl", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "8beac2a0-4c67-4499-a7ce-27e989546ce9", + Code = "DILON_EMAIL_FROM", + GroupCode = "EMAIL", + IsDeleted = 0ul, + Name = "邮箱发件人", + Remark = "邮箱发件人", + Status = 0, + SysFlag = "Y", + Value = "test@126.com" + }, + new + { + Id = "55756524-ecb8-444e-9cdd-a0fc767c4b96", + Code = "DILON_FILE_UPLOAD_PATH_FOR_WINDOWS", + GroupCode = "FILE_PATH", + IsDeleted = 0ul, + Name = "Win本地上传文件路径", + Remark = "Win本地上传文件路径", + Status = 0, + SysFlag = "Y", + Value = "D:/tmp" + }, + new + { + Id = "d2db41ee-ce1f-46de-ac00-5860634afed9", + Code = "DILON_FILE_UPLOAD_PATH_FOR_LINUX", + GroupCode = "FILE_PATH", + IsDeleted = 0ul, + Name = "Linux/Mac本地上传文件路径", + Remark = "Linux/Mac本地上传文件路径", + Status = 0, + SysFlag = "Y", + Value = "/tmp" + }, + new + { + Id = "ff8debdd-eca0-4f91-8213-e2080f76b35d", + Code = "DILON_UN_XSS_FILTER_URL", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "放开XSS过滤的接口", + Remark = "多个url可以用英文逗号隔开", + Status = 0, + SysFlag = "Y", + Value = "/demo/xssfilter,/demo/unxss" + }, + new + { + Id = "5584fb84-f580-463f-b06d-bbb80a4dfb72", + Code = "DILON_ENABLE_SINGLE_LOGIN", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "单用户登陆的开关", + Remark = "true-打开,false-关闭,如果一个人登录两次,就会将上一次登陆挤下去", + Status = 0, + SysFlag = "Y", + Value = "false" + }, + new + { + Id = "53b0afb2-4917-4b85-bcca-fe7c7723ae22", + Code = "DILON_CAPTCHA_OPEN", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "登录验证码的开关", + Remark = "true-打开,false-关闭", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "974740d8-8647-4cf8-8102-542eea53e97f", + Code = "DILON_DRUID_USERNAME", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "Druid监控登录账号", + Remark = "Druid监控登录账号", + Status = 0, + SysFlag = "Y", + Value = "superAdmin" + }, + new + { + Id = "8cee44ea-ba4c-42db-a57d-69b8b5316ca5", + Code = "DILON_DRUID_PASSWORD", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "Druid监控界面登录密码", + Remark = "Druid监控界面登录密码", + Status = 0, + SysFlag = "Y", + Value = "123456" + }, + new + { + Id = "efc235ab-9b05-4820-afe4-32a1eb59e4de", + Code = "DILON_IP_GEO_API", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "阿里云定位api接口地址", + Remark = "阿里云定位api接口地址", + Status = 0, + SysFlag = "Y", + Value = "http://api01.aliyun.venuscn.com/ip?ip=%s" + }, + new + { + Id = "d3597d8a-562a-4b24-93c7-8655c5445d74", + Code = "DILON_IP_GEO_APP_CODE", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "阿里云定位appCode", + Remark = "阿里云定位appCode", + Status = 0, + SysFlag = "Y", + Value = "461535aabeae4f34861884d392f5d452" + }, + new + { + Id = "59c8a6f2-9e3c-4e9e-b9cf-8ecad5f0cb45", + Code = "DILON_ENABLE_OAUTH_LOGIN", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth用户登录的开关", + Remark = "Oauth用户登录的开关", + Status = 0, + SysFlag = "Y", + Value = "true" + }, + new + { + Id = "ff502ee7-8129-4828-8d16-fb04562ef52c", + Code = "DILON_OAUTH_GITEE_CLIENT_ID", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录ClientId", + Remark = "Oauth码云登录ClientId", + Status = 0, + SysFlag = "Y", + Value = "你的clientId" + }, + new + { + Id = "a1d957ef-2b70-456f-8eda-b70a4cf01535", + Code = "DILON_OAUTH_GITEE_CLIENT_SECRET", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录ClientSecret", + Remark = "Oauth码云登录ClientSecret", + Status = 0, + SysFlag = "Y", + Value = "你的clientSecret" + }, + new + { + Id = "b32ee22b-671d-40bf-8070-32e1054fef96", + Code = "DILON_OAUTH_GITEE_REDIRECT_URI", + GroupCode = "OAUTH", + IsDeleted = 0ul, + Name = "Oauth码云登录回调地址", + Remark = "Oauth码云登录回调地址", + Status = 0, + SysFlag = "Y", + Value = "http://127.0.0.1:5566/oauth/callback/gitee" + }, + new + { + Id = "38dda85c-2a98-4768-aebd-a60ab286052c", + Code = "DILON_DEMO_ENV_FLAG", + GroupCode = "DEFAULT", + IsDeleted = 0ul, + Name = "演示环境", + Remark = "演示环境的开关,true-打开,false-关闭,如果演示环境开启,则只能读数据不能写数据", + Status = 0, + SysFlag = "Y", + Value = "false" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysDictData", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("ExtCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("扩展编码,以json形式存储"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("TypeId") + .HasColumnType("varchar(36)") + .HasColumnName("TypeId") + .HasComment("字典类型Id"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Value") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("值"); + + b.HasKey("Id"); + + b.HasIndex("TypeId"); + + b.ToTable("sys_dict_data"); + + b + .HasComment("字典值表"); + + b.HasData( + new + { + Id = "99b965d3-1f2b-4f5b-a62a-6763b8d64a64", + Code = "1", + IsDeleted = 0ul, + Remark = "通知", + Sort = 100, + Status = 0, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Value = "通知" + }, + new + { + Id = "2616e6c2-a504-4fc6-993e-72701b48e79a", + Code = "2", + IsDeleted = 0ul, + Remark = "公告", + Sort = 100, + Status = 0, + TypeId = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Value = "公告" + }, + new + { + Id = "40d336cd-918a-4e90-8836-cba7c1bf6cdf", + Code = "0", + IsDeleted = 0ul, + Remark = "草稿", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "草稿" + }, + new + { + Id = "f5b49fa9-31a1-44c2-9df0-b28bf5daeee0", + Code = "1", + IsDeleted = 0ul, + Remark = "发布", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "发布" + }, + new + { + Id = "d2f73bb4-05a1-4aa5-9273-e9f3c393996d", + Code = "2", + IsDeleted = 0ul, + Remark = "撤回", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "撤回" + }, + new + { + Id = "6385916f-6ead-470e-889b-cfb9d2da6256", + Code = "3", + IsDeleted = 0ul, + Remark = "删除", + Sort = 100, + Status = 0, + TypeId = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Value = "删除" + }, + new + { + Id = "1f432e9d-f031-4787-a527-f37bb20ebe3a", + Code = "true", + IsDeleted = 0ul, + Remark = "是", + Sort = 100, + Status = 0, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Value = "是" + }, + new + { + Id = "0724636d-e870-46c6-8e1e-67f1ea5f58e5", + Code = "false", + IsDeleted = 0ul, + Remark = "否", + Sort = 100, + Status = 0, + TypeId = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Value = "否" + }, + new + { + Id = "881ebcf2-94a6-4938-81a4-55b81736f3b3", + Code = "1", + IsDeleted = 0ul, + Remark = "下载压缩包", + Sort = 100, + Status = 0, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Value = "下载压缩包" + }, + new + { + Id = "5bc8662d-b795-48f1-a88e-2f4be5279d37", + Code = "2", + IsDeleted = 0ul, + Remark = "生成到本项目", + Sort = 100, + Status = 0, + TypeId = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Value = "生成到本项目" + }, + new + { + Id = "b2a00b40-23e1-40e1-8995-60ab420eafe1", + Code = "1", + IsDeleted = 0ul, + Remark = "GET", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "GET" + }, + new + { + Id = "10070836-0c89-4b89-96e3-c65c7e33a86c", + Code = "2", + IsDeleted = 0ul, + Remark = "POST", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "POST" + }, + new + { + Id = "69a34c0b-85ce-4e53-9ad4-a592057dddd4", + Code = "3", + IsDeleted = 0ul, + Remark = "PUT", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "PUT" + }, + new + { + Id = "0e4dc1f1-8654-401b-800a-22b31f62ced1", + Code = "4", + IsDeleted = 0ul, + Remark = "DELETE", + Sort = 100, + Status = 0, + TypeId = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Value = "DELETE" + }, + new + { + Id = "443f965e-96b4-4fd2-93e9-07fe00a47205", + Code = "input", + IsDeleted = 0ul, + Remark = "输入框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "输入框" + }, + new + { + Id = "bf7be9a2-53fb-4250-87fe-49d7f741d159", + Code = "datepicker", + IsDeleted = 0ul, + Remark = "时间选择", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "时间选择" + }, + new + { + Id = "cea10919-47e2-43ab-a19b-9d41fe648310", + Code = "select", + IsDeleted = 0ul, + Remark = "下拉框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "下拉框" + }, + new + { + Id = "7d534f44-cf66-472e-b0d3-20a4cc2ad432", + Code = "radio", + IsDeleted = 0ul, + Remark = "单选框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "单选框" + }, + new + { + Id = "d63b06d4-be11-4ab7-9905-87f6f2ca056f", + Code = "switch", + IsDeleted = 0ul, + Remark = "开关", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "开关" + }, + new + { + Id = "46967f62-bac9-47fd-9278-b29c047b0c38", + Code = "checkbox", + IsDeleted = 0ul, + Remark = "多选框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "多选框" + }, + new + { + Id = "a8ac5009-93d3-4405-a6b9-81ed3e2811f2", + Code = "inputnumber", + IsDeleted = 0ul, + Remark = "数字输入框", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "数字输入框" + }, + new + { + Id = "d00b3efa-2f9d-464c-8134-aa7013ef52bb", + Code = "textarea", + IsDeleted = 0ul, + Remark = "文本域", + Sort = 100, + Status = 0, + TypeId = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Value = "文本域" + }, + new + { + Id = "ad759239-e34e-4fdf-a0d0-6b39eb41f880", + Code = "==", + IsDeleted = 0ul, + Remark = "等于", + Sort = 1, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "等于" + }, + new + { + Id = "2c8e1240-f3ef-4df1-bd68-3047109ad5b4", + Code = "like", + IsDeleted = 0ul, + Remark = "模糊", + Sort = 2, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "模糊" + }, + new + { + Id = "efc18513-c17b-4fc1-8e0e-2e79fb9b0107", + Code = ">", + IsDeleted = 0ul, + Remark = "大于", + Sort = 3, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "大于" + }, + new + { + Id = "a6812d98-7785-4db2-b2f8-d476a459c5ed", + Code = "<", + IsDeleted = 0ul, + Remark = "小于", + Sort = 4, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "小于" + }, + new + { + Id = "218b5bac-343e-4594-a9da-30e391c7735c", + Code = "!=", + IsDeleted = 0ul, + Remark = "不等于", + Sort = 5, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "不等于" + }, + new + { + Id = "4825f15d-077b-4c16-8ee7-0205d653e14d", + Code = ">=", + IsDeleted = 0ul, + Remark = "大于等于", + Sort = 6, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "大于等于" + }, + new + { + Id = "7c9e8270-db5a-45b7-acd7-f95c8ee31547", + Code = "<=", + IsDeleted = 0ul, + Remark = "小于等于", + Sort = 7, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "小于等于" + }, + new + { + Id = "759ea7de-a18f-4ed7-9032-bbd1a4dadc9e", + Code = "isNotNull", + IsDeleted = 0ul, + Remark = "不为空", + Sort = 8, + Status = 0, + TypeId = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Value = "不为空" + }, + new + { + Id = "a5cdf75e-6361-490d-a043-f5929ccf65a9", + Code = "int", + IsDeleted = 0ul, + Remark = "int", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "int" + }, + new + { + Id = "cffdd4b5-d4e0-4196-81b9-02045de8b189", + Code = "long", + IsDeleted = 0ul, + Remark = "long", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "long" + }, + new + { + Id = "25be90ea-b439-4e9d-993c-48a5ce3b9358", + Code = "string", + IsDeleted = 0ul, + Remark = "string", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "string" + }, + new + { + Id = "496eef62-3849-4263-b274-a3e6090942e3", + Code = "bool", + IsDeleted = 0ul, + Remark = "bool", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "bool" + }, + new + { + Id = "681c02ea-7570-4a97-85a7-957a77314df6", + Code = "double", + IsDeleted = 0ul, + Remark = "double", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "double" + }, + new + { + Id = "259698cf-b25d-427a-8d22-33b9c1899eea", + Code = "DateTime", + IsDeleted = 0ul, + Remark = "DateTime", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "DateTime" + }, + new + { + Id = "a30c682e-744a-468d-a74f-827928c96c01", + Code = "float", + IsDeleted = 0ul, + Remark = "float", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "float" + }, + new + { + Id = "4b68cb83-f173-4864-bd10-a7a7d5248102", + Code = "decimal", + IsDeleted = 0ul, + Remark = "decimal", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "decimal" + }, + new + { + Id = "134d4173-8d93-4c19-bf6b-a640d35da097", + Code = "Guid", + IsDeleted = 0ul, + Remark = "Guid", + Sort = 100, + Status = 0, + TypeId = "28f653d4-e573-4f54-8e5c-4e308780145a", + Value = "Guid" + }, + new + { + Id = "c597306f-5fd0-4f75-9a46-12de340cd199", + Code = "DateTimeOffset", + IsDeleted = 0ul, + Remark = "DateTimeOffset", + Sort = 100, + Status = 0, + 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("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("父Ids"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_dict_type"); + + b + .HasComment("字典类型表"); + + b.HasData( + new + { + Id = "b0cfa91c-1189-4f39-bc5a-f035885d0604", + Code = "common_status", + IsDeleted = 0ul, + Name = "通用状态", + Remark = "通用状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "301ed120-dfc5-4d7c-af59-b56a519581c9", + Code = "sex", + IsDeleted = 0ul, + Name = "性别", + Remark = "性别字典", + Sort = 100, + Status = 0 + }, + new + { + Id = "64afb5e7-9f00-4c4f-9ba6-6b41221bd862", + Code = "consts_type", + IsDeleted = 0ul, + Name = "常量的分类", + Remark = "常量的分类,用于区别一组配置", + Sort = 100, + Status = 0 + }, + new + { + Id = "f2f0e8bf-04da-4a2f-9fb8-1d6549227302", + Code = "yes_or_no", + IsDeleted = 0ul, + Name = "是否", + Remark = "是否", + Sort = 100, + Status = 0 + }, + new + { + Id = "2cecf329-cf95-44eb-a8d7-3fb77b13e093", + Code = "vis_type", + IsDeleted = 0ul, + Name = "访问类型", + Remark = "访问类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "e973d383-c28e-42e0-9e23-5f2bd592fef5", + Code = "menu_type", + IsDeleted = 0ul, + Name = "菜单类型", + Remark = "菜单类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "058db370-3718-42c3-8ba7-095341b1fe13", + Code = "send_type", + IsDeleted = 0ul, + Name = "发送类型", + Remark = "发送类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "ff6202cb-25ce-4ab9-9c39-910c418b1d2d", + Code = "open_type", + IsDeleted = 0ul, + Name = "打开方式", + Remark = "打开方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "b3235678-f7fe-442b-8fba-e792a89b78f2", + Code = "menu_weight", + IsDeleted = 0ul, + Name = "菜单权重", + Remark = "菜单权重", + Sort = 100, + Status = 0 + }, + new + { + Id = "a2068ed1-62a6-463c-b720-06111d994079", + Code = "data_scope_type", + IsDeleted = 0ul, + Name = "数据范围类型", + Remark = "数据范围类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "688f9a69-ec95-46f4-87bb-e19e3cc5c7fc", + Code = "sms_send_source", + IsDeleted = 0ul, + Name = "短信发送来源", + Remark = "短信发送来源", + Sort = 100, + Status = 0 + }, + new + { + Id = "8461bd1d-311b-487e-b579-d6049c6fb191", + Code = "op_type", + IsDeleted = 0ul, + Name = "操作类型", + Remark = "操作类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "b924e0c1-3f23-4e37-9f27-90e945381304", + Code = "file_storage_location", + IsDeleted = 0ul, + Name = "文件存储位置", + Remark = "文件存储位置", + Sort = 100, + Status = 0 + }, + new + { + Id = "0f1b8660-d932-4a53-a681-a38bebae91e0", + Code = "run_status", + IsDeleted = 0ul, + Name = "运行状态", + Remark = "定时任务运行状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "d5b311fd-4b60-4b51-9156-b0e6d6cfa4d1", + Code = "notice_type", + IsDeleted = 0ul, + Name = "通知公告类型", + Remark = "通知公告类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "b30937e6-03cd-4d98-a413-10b06d605e5a", + Code = "notice_status", + IsDeleted = 0ul, + Name = "通知公告状态", + Remark = "通知公告状态", + Sort = 100, + Status = 0 + }, + new + { + Id = "80aea9e7-ad1b-4f57-b4db-9d15813707bd", + Code = "yes_true_false", + IsDeleted = 0ul, + Name = "是否boolean", + Remark = "是否boolean", + Sort = 100, + Status = 0 + }, + new + { + Id = "430d0538-054a-4b37-a459-1095d0ccf4ae", + Code = "code_gen_create_type", + IsDeleted = 0ul, + Name = "代码生成方式", + Remark = "代码生成方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "bc0dc25b-b85e-4dd1-8368-e014fe1bf30b", + Code = "request_type", + IsDeleted = 0ul, + Name = "请求方式", + Remark = "请求方式", + Sort = 100, + Status = 0 + }, + new + { + Id = "5bdf9b7a-a483-4b61-8e22-e2b25b255b91", + Code = "code_gen_effect_type", + IsDeleted = 0ul, + Name = "代码生成作用类型", + Remark = "代码生成作用类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "41bc31f6-cef5-400d-b03a-bf51d27b2432", + Code = "code_gen_query_type", + IsDeleted = 0ul, + Name = "代码生成查询类型", + Remark = "代码生成查询类型", + Sort = 100, + Status = 0 + }, + new + { + Id = "28f653d4-e573-4f54-8e5c-4e308780145a", + Code = "code_gen_net_type", + IsDeleted = 0ul, + Name = "代码生成.NET类型", + Remark = "代码生成.NET类型", + Sort = 100, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysEmp", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("用户Id"); + + b.Property("JobNum") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("工号"); + + b.Property("OrgId") + .HasColumnType("varchar(36)") + .HasColumnName("OrgId") + .HasComment("机构Id"); + + b.Property("OrgName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("机构名称"); + + b.HasKey("Id"); + + b.ToTable("sys_emp"); + + b + .HasComment("员工表"); + + b.HasData( + new + { + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + JobNum = "D1001", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }, + new + { + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + JobNum = "D1002", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }, + new + { + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", + JobNum = "D1003", + OrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + OrgName = "华夏集团" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => + { + b.Property("SysEmpId") + .HasColumnType("varchar(36)") + .HasColumnName("SysEmpId") + .HasComment("员工Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") + .HasComment("职位Id"); + + b.HasKey("SysEmpId", "SysOrgId", "SysPosId"); + + b.HasIndex("SysOrgId"); + + b.HasIndex("SysPosId"); + + b.ToTable("sys_emp_ext_org_pos"); + + b + .HasComment("员工附属机构职位表"); + + b.HasData( + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "12d888de-f55d-4c88-b0a0-7c3510664d97", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "127c0a5d-43ac-4370-b313-082361885aca", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysOrgId = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + SysPosId = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66" + }, + new + { + 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("varchar(36)") + .HasColumnName("SysEmpId") + .HasComment("员工Id"); + + b.Property("SysPosId") + .HasColumnType("varchar(36)") + .HasColumnName("SysPosId") + .HasComment("职位Id"); + + b.HasKey("SysEmpId", "SysPosId"); + + b.HasIndex("SysPosId"); + + b.ToTable("sys_emp_pos"); + + b + .HasComment("员工职位表"); + + b.HasData( + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }, + new + { + SysEmpId = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + SysPosId = "46c68a62-f119-4ff7-b621-0bbd77504538" + }, + new + { + SysEmpId = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + SysPosId = "5bd8c466-2bca-4386-a551-daac78e3cee8" + }, + new + { + SysEmpId = "16a74726-e156-499f-9942-0e0e24ad0c3f", + SysPosId = "269236c4-d74e-4e54-9d50-f6f61580a197" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysFile", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("FileBucket") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件仓库"); + + b.Property("FileLocation") + .HasColumnType("int") + .HasComment("文件存储位置"); + + b.Property("FileObjectName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("存储到bucket的名称"); + + b.Property("FileOriginName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件名称"); + + b.Property("FilePath") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("存储路径"); + + b.Property("FileSizeInfo") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件大小信息"); + + b.Property("FileSizeKb") + .HasColumnType("bigint") + .HasComment("文件大小kb"); + + b.Property("FileSuffix") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("文件后缀"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_file"); + + b + .HasComment("文件信息表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogAudit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("ColumnName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("列名"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("操作时间"); + + b.Property("NewValue") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("新值"); + + b.Property("OldValue") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("旧值"); + + b.Property("Operate") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作方式"); + + b.Property("TableName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("表名"); + + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") + .HasComment("操作人Id"); + + b.Property("UserName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作人名称"); + + b.HasKey("Id"); + + b.ToTable("sys_log_audit"); + + b + .HasComment("审计日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogOp", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Account") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作人"); + + b.Property("Browser") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("浏览器"); + + b.Property("ClassName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("类名称"); + + b.Property("ElapsedTime") + .HasColumnType("bigint") + .HasComment("耗时"); + + b.Property("Ip") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("IP"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("地址"); + + b.Property("Message") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("具体消息"); + + b.Property("MethodName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("方法名称"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("OpTime") + .HasColumnType("datetime") + .HasComment("操作时间"); + + b.Property("OpType") + .HasColumnType("int") + .HasComment("操作类型"); + + b.Property("Os") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作系统"); + + b.Property("Param") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求参数"); + + b.Property("ReqMethod") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求方式"); + + b.Property("Result") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("返回结果"); + + b.Property("Success") + .HasColumnType("tinyint(1)") + .HasComment("是否执行成功"); + + b.Property("Url") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求地址"); + + b.HasKey("Id"); + + b.ToTable("sys_log_op"); + + b + .HasComment("操作日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysLogVis", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("int"); + + b.Property("Account") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("访问人"); + + b.Property("Browser") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("浏览器"); + + b.Property("Ip") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("IP"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("地址"); + + b.Property("Message") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("具体消息"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Os") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("操作系统"); + + b.Property("Success") + .HasColumnType("tinyint(1)") + .HasComment("是否执行成功"); + + b.Property("VisTime") + .HasColumnType("datetime") + .HasComment("访问时间"); + + b.Property("VisType") + .HasColumnType("int") + .HasComment("访问类型"); + + b.HasKey("Id"); + + b.ToTable("sys_log_vis"); + + b + .HasComment("访问日志表"); + }); + + modelBuilder.Entity("Ewide.Core.SysMenu", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Application") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("应用分类"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Component") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("组件地址"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Icon") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("图标"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Link") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("内链地址"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("OpenType") + .HasColumnType("int") + .HasComment("打开方式"); + + b.Property("Permission") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("权限标识"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("父Ids"); + + b.Property("Redirect") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("重定向地址"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Router") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("路由地址"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("菜单类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Visible") + .HasColumnType("bit") + .HasColumnName("Visible") + .HasComment("是否可见"); + + b.Property("VisibleParent") + .HasColumnType("bit") + .HasColumnName("VisibleParent") + .HasComment("关联菜单显示"); + + b.Property("Weight") + .HasColumnType("int") + .HasComment("权重"); + + b.HasKey("Id"); + + b.ToTable("sys_menu"); + + b + .HasComment("菜单表"); + + b.HasData( + new + { + Id = "83ce02c9-b37f-4885-96e3-9b34371edb2e", + Application = "system", + Code = "system_index", + Component = "RouteView", + Icon = "home", + IsDeleted = 0ul, + Name = "主控面板", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Redirect = "/analysis", + Router = "/", + Sort = 1, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "914a520d-9e4f-465b-ae05-7248b37d4be1", + Application = "system", + Code = "system_index_dashboard", + Component = "system/dashboard/Analysis", + IsDeleted = 0ul, + Name = "分析页", + OpenType = 0, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "72981ad9-9036-4aa7-b8f4-dc407eda50b4", + Application = "system", + Code = "system_index_workplace", + Component = "system/dashboard/Workplace", + IsDeleted = 0ul, + Name = "工作台", + OpenType = 0, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", + Application = "system", + Code = "sys_mgr", + Component = "PageView", + Icon = "team", + IsDeleted = 0ul, + Name = "组织架构", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/sys", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9f1f6051-15e6-474f-ab40-ab98a8713f7b", + Application = "system", + Code = "sys_user_mgr", + Component = "system/user/index", + IsDeleted = 0ul, + Name = "用户管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bff7e542-6463-4f82-a03d-b1022e60d4b6", + Application = "system", + Code = "sys_user_mgr_page", + IsDeleted = 0ul, + Name = "用户查询", + OpenType = 0, + Permission = "sysUser:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "936440c7-93ef-4d2f-adff-6151f4317355", + Application = "system", + Code = "sys_user_mgr_edit", + IsDeleted = 0ul, + Name = "用户编辑", + OpenType = 0, + Permission = "sysUser:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "281888e3-d183-4711-ba27-298ef6e64659", + Application = "system", + Code = "sys_user_mgr_add", + IsDeleted = 0ul, + Name = "用户增加", + OpenType = 0, + Permission = "sysUser:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e4aff800-d34a-416b-bd6e-dcebaa1dd436", + Application = "system", + Code = "sys_user_mgr_delete", + IsDeleted = 0ul, + Name = "用户删除", + OpenType = 0, + Permission = "sysUser:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "7a266494-e17b-480d-8f50-cc234e6fe424", + Application = "system", + Code = "sys_user_mgr_detail", + IsDeleted = 0ul, + Name = "用户详情", + OpenType = 0, + Permission = "sysUser:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0d93f763-20d3-4c95-add3-3d94770b110e", + Application = "system", + Code = "sys_user_mgr_export", + IsDeleted = 0ul, + Name = "用户导出", + OpenType = 0, + Permission = "sysUser:export", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "17d047c3-6e95-4f7d-93db-97817d886fa2", + Application = "system", + Code = "sys_user_mgr_selector", + IsDeleted = 0ul, + Name = "用户选择器", + OpenType = 0, + Permission = "sysUser:selector", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5fc44256-2e56-4805-9382-b5504ca5b6cb", + Application = "system", + Code = "sys_user_mgr_grant_role", + IsDeleted = 0ul, + Name = "用户授权角色", + OpenType = 0, + Permission = "sysUser:grantRole", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ceff7899-6779-4708-b9ed-a2d5b488cff2", + Application = "system", + Code = "sys_user_mgr_own_role", + IsDeleted = 0ul, + Name = "用户拥有角色", + OpenType = 0, + Permission = "sysUser:ownRole", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "38ba9ccc-eb96-4a60-a5ab-f6ea013f8291", + Application = "system", + Code = "sys_user_mgr_grant_data", + IsDeleted = 0ul, + Name = "用户授权数据", + OpenType = 0, + Permission = "sysUser:grantData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf2f8faf-b280-456c-8865-64115e04019f", + Application = "system", + Code = "sys_user_mgr_own_data", + IsDeleted = 0ul, + Name = "用户拥有数据", + OpenType = 0, + Permission = "sysUser:ownData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "711563e5-fed6-44d6-bcf3-138c73cfbfca", + Application = "system", + Code = "sys_user_mgr_update_info", + IsDeleted = 0ul, + Name = "用户更新信息", + OpenType = 0, + Permission = "sysUser:updateInfo", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "306fe9bf-3132-4011-9f3f-1a2f4ead7734", + Application = "system", + Code = "sys_user_mgr_update_pwd", + IsDeleted = 0ul, + Name = "用户修改密码", + OpenType = 0, + Permission = "sysUser:updatePwd", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "791b0d88-7e25-490f-a94f-a2e32bb3b6e6", + Application = "system", + Code = "sys_user_mgr_change_status", + IsDeleted = 0ul, + Name = "用户修改状态", + OpenType = 0, + Permission = "sysUser:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9d681aac-528a-46b0-9718-ffc4abe9c29e", + Application = "system", + Code = "sys_user_mgr_update_avatar", + IsDeleted = 0ul, + Name = "用户修改头像", + OpenType = 0, + Permission = "sysUser:updateAvatar", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "471b5259-5f55-4643-841c-f07089cfafdf", + Application = "system", + Code = "sys_user_mgr_reset_pwd", + IsDeleted = 0ul, + Name = "用户重置密码", + OpenType = 0, + Permission = "sysUser:resetPwd", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "471d3098-90a4-47e1-bd07-5d3ed8d21fb0", + Application = "system", + Code = "sys_user_mgr_login", + IsDeleted = 0ul, + Name = "用户登录信息", + OpenType = 0, + Permission = "getLoginUser", + 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 = 0ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9c1b34f3-2412-496a-a42e-e4f6ae407ae1", + Application = "system", + Code = "sys_org_mgr", + Component = "system/org/index", + IsDeleted = 0ul, + Name = "机构管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "b7c34c9b-933e-4c48-b1d0-af15a1f7da1f", + Application = "system", + Code = "sys_org_mgr_page", + IsDeleted = 0ul, + Name = "机构查询", + OpenType = 0, + Permission = "sysOrg:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "917064b2-c715-4fa4-9b2d-20a11b784ed1", + Application = "system", + Code = "sys_org_mgr_list", + IsDeleted = 0ul, + Name = "机构列表", + OpenType = 0, + Permission = "sysOrg:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d7c18d60-f28f-4a57-90b3-26fc95249ae0", + Application = "system", + Code = "sys_org_mgr_add", + IsDeleted = 0ul, + Name = "机构增加", + OpenType = 0, + Permission = "sysOrg:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e65eb1e3-cc9e-4309-8c7a-9ac41765b239", + Application = "system", + Code = "sys_org_mgr_edit", + IsDeleted = 0ul, + Name = "机构编辑", + OpenType = 0, + Permission = "sysOrg:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c2450c4c-89c6-46e8-8f89-11331790cbe3", + Application = "system", + Code = "sys_org_mgr_delete", + IsDeleted = 0ul, + Name = "机构删除", + OpenType = 0, + Permission = "sysOrg:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "695a6018-82c3-466e-a2a1-dab16039bfdb", + Application = "system", + Code = "sys_org_mgr_detail", + IsDeleted = 0ul, + Name = "机构详情", + OpenType = 0, + Permission = "sysOrg:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2d153046-279b-43be-8f57-46875118fd2c", + Application = "system", + Code = "sys_org_mgr_tree", + IsDeleted = 0ul, + Name = "机构树", + OpenType = 0, + Permission = "sysOrg:tree", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0f60d129-9d3b-42b5-9eb2-99bc066be6aa", + Application = "system", + Code = "sys_pos_mgr", + Component = "system/pos/index", + IsDeleted = 0ul, + Name = "职位管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d2436601-bc48-4610-ba67-5b666f8ce33a", + Application = "system", + Code = "sys_pos_mgr_page", + IsDeleted = 0ul, + Name = "职位查询", + OpenType = 0, + Permission = "sysPos:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1305efaa-b81a-475f-9dde-8f6549ca7743", + Application = "system", + Code = "sys_pos_mgr_list", + IsDeleted = 0ul, + Name = "职位列表", + OpenType = 0, + Permission = "sysPos:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c227e732-f231-4488-89b0-d1c9dad78950", + Application = "system", + Code = "sys_pos_mgr_add", + IsDeleted = 0ul, + Name = "职位增加", + OpenType = 0, + Permission = "sysPos:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "9dafbe04-83c9-482c-9c83-81f4da045da5", + Application = "system", + Code = "sys_pos_mgr_edit", + IsDeleted = 0ul, + Name = "职位编辑", + OpenType = 0, + Permission = "sysPos:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "031df05e-b7c6-4ecd-aff2-f189c994e86d", + Application = "system", + Code = "sys_pos_mgr_delete", + IsDeleted = 0ul, + Name = "职位删除", + OpenType = 0, + Permission = "sysPos:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fe5ee8a1-2145-43c6-bdeb-518f3a9c127d", + Application = "system", + Code = "sys_pos_mgr_detail", + IsDeleted = 0ul, + Name = "职位详情", + OpenType = 0, + Permission = "sysPos:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", + Application = "system", + Code = "auth_manager", + Component = "PageView", + Icon = "safety-certificate", + IsDeleted = 0ul, + Name = "权限管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/auth", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "05175bfd-6e5f-4c3b-8daf-0f79df4e9694", + Application = "system", + Code = "sys_app_mgr", + Component = "system/app/index", + IsDeleted = 0ul, + Name = "应用管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "dbaa7a6d-234f-4cc9-977f-4544b8bb45b8", + Application = "system", + Code = "sys_app_mgr_page", + IsDeleted = 0ul, + Name = "应用查询", + OpenType = 0, + Permission = "sysApp:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ab7b2b41-b0bc-4b9c-9017-f5c6918e393e", + Application = "system", + Code = "sys_app_mgr_list", + IsDeleted = 0ul, + Name = "应用列表", + OpenType = 0, + Permission = "sysApp:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f4e1d63b-5d92-46eb-82aa-267335a5a3f3", + Application = "system", + Code = "sys_app_mgr_add", + IsDeleted = 0ul, + Name = "应用增加", + OpenType = 0, + Permission = "sysApp:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f33a3791-1c01-4d30-bcc3-d9fdf5246376", + Application = "system", + Code = "sys_app_mgr_edit", + IsDeleted = 0ul, + Name = "应用编辑", + OpenType = 0, + Permission = "sysApp:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e0a6cf90-0a8b-44e4-a32f-5f43ef996b82", + Application = "system", + Code = "sys_app_mgr_delete", + IsDeleted = 0ul, + Name = "应用删除", + OpenType = 0, + Permission = "sysApp:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a0abe974-5ae9-440b-9d16-2412eab52d70", + Application = "system", + Code = "sys_app_mgr_detail", + IsDeleted = 0ul, + Name = "应用详情", + OpenType = 0, + Permission = "sysApp:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f640e243-b439-4109-8aea-c66205ef6b12", + Application = "system", + Code = "sys_app_mgr_set_as_default", + IsDeleted = 0ul, + Name = "设为默认应用", + OpenType = 0, + Permission = "sysApp:setAsDefault", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "babff4e1-dd00-4e6b-909a-3aac76bb52cd", + Application = "system", + Code = "sys_menu_mgr", + Component = "system/menu/index", + IsDeleted = 0ul, + Name = "菜单管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e9982e73-1833-4674-9403-ee3dee2efdf7", + Application = "system", + Code = "sys_menu_mgr_list", + IsDeleted = 0ul, + Name = "菜单列表", + OpenType = 0, + Permission = "sysMenu:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "758e15e6-75a6-4b72-8f94-5da379e53354", + Application = "system", + Code = "sys_menu_mgr_add", + IsDeleted = 0ul, + Name = "菜单增加", + OpenType = 0, + Permission = "sysMenu:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "07139c19-6b39-49f5-9e22-c4dc7e9d947b", + Application = "system", + Code = "sys_menu_mgr_edit", + IsDeleted = 0ul, + Name = "菜单编辑", + OpenType = 0, + Permission = "sysMenu:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "857fb581-78ff-4884-a6fb-8dfb4951fef9", + Application = "system", + Code = "sys_menu_mgr_delete", + IsDeleted = 0ul, + Name = "菜单删除", + OpenType = 0, + Permission = "sysMenu:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cd43a8ee-9f98-4355-bf81-ba40f388b23f", + Application = "system", + Code = "sys_menu_mgr_detail", + IsDeleted = 0ul, + Name = "菜单详情", + OpenType = 0, + Permission = "sysMenu:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ec318997-596d-403a-91be-f303b234b02d", + Application = "system", + Code = "sys_menu_mgr_grant_tree", + IsDeleted = 0ul, + Name = "菜单授权树", + OpenType = 0, + Permission = "sysMenu:treeForGrant", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "3892ef5d-39b2-4a4d-8047-cb96542fb54f", + Application = "system", + Code = "sys_menu_mgr_tree", + IsDeleted = 0ul, + Name = "菜单树", + OpenType = 0, + Permission = "sysMenu:tree", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "00831a3b-d080-411f-afb9-9f415334b192", + Application = "system", + Code = "sys_menu_mgr_change", + IsDeleted = 0ul, + Name = "菜单切换", + OpenType = 0, + Permission = "sysMenu:change", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ee63be7b-5d06-4c15-81f3-875e2eb164dd", + Application = "system", + Code = "sys_role_mgr", + Component = "system/role/index", + IsDeleted = 0ul, + Name = "角色管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4241f4a0-89ab-4a6a-80bb-2830f855d3be", + Application = "system", + Code = "sys_role_mgr_page", + IsDeleted = 0ul, + Name = "角色查询", + OpenType = 0, + Permission = "sysRole:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6a48beb1-c828-43d6-af3d-3e18ef163070", + Application = "system", + Code = "sys_role_mgr_add", + IsDeleted = 0ul, + Name = "角色增加", + OpenType = 0, + Permission = "sysRole:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1198a602-a23d-4a06-aa9a-76aaf5f065a7", + Application = "system", + Code = "sys_role_mgr_edit", + IsDeleted = 0ul, + Name = "角色编辑", + OpenType = 0, + Permission = "sysRole:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e7708eeb-2c87-4c3d-bc71-c395e5d708db", + Application = "system", + Code = "sys_role_mgr_delete", + IsDeleted = 0ul, + Name = "角色删除", + OpenType = 0, + Permission = "sysRole:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "63ab477f-88fb-4f4b-9dcd-0cb83ac767f6", + Application = "system", + Code = "sys_role_mgr_detail", + IsDeleted = 0ul, + Name = "角色详情", + OpenType = 0, + Permission = "sysRole:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2622348c-dd8f-4ade-a350-de0a8f01e1f6", + Application = "system", + Code = "sys_role_mgr_drop_down", + IsDeleted = 0ul, + Name = "角色下拉", + OpenType = 0, + Permission = "sysRole:dropDown", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "73d84863-b381-40be-84bc-ec8381fa6c0a", + Application = "system", + Code = "sys_role_mgr_grant_menu", + IsDeleted = 0ul, + Name = "角色授权菜单", + OpenType = 0, + Permission = "sysRole:grantMenu", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bbc5e792-3d72-4d0d-8ddb-25cf2c4e1374", + Application = "system", + Code = "sys_role_mgr_own_menu", + IsDeleted = 0ul, + Name = "角色拥有菜单", + OpenType = 0, + Permission = "sysRole:ownMenu", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "19234814-6007-484c-818c-88a664a2a339", + Application = "system", + Code = "sys_role_mgr_grant_data", + IsDeleted = 0ul, + Name = "角色授权数据", + OpenType = 0, + Permission = "sysRole:grantData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "19e5c5f6-b598-4c42-8eed-3d46fb11b465", + Application = "system", + Code = "sys_role_mgr_own_data", + IsDeleted = 0ul, + Name = "角色拥有数据", + OpenType = 0, + Permission = "sysRole:ownData", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ac0ee878-f713-4a77-9c8f-6e1ee1f4484e", + Application = "system", + Code = "system_tools", + Component = "PageView", + Icon = "euro", + IsDeleted = 0ul, + Name = "开发管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/tools", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "abf3e33d-3d6a-4bbd-8743-179df5a95d48", + Application = "system", + Code = "system_tools_config", + Component = "system/config/index", + IsDeleted = 0ul, + Name = "系统配置", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c14c82bd-632d-4cc9-9236-37aa64b15ecf", + Application = "system", + Code = "system_tools_config_page", + IsDeleted = 0ul, + Name = "配置查询", + OpenType = 0, + Permission = "sysConfig:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "78d31d68-9c9b-4e02-94c9-8a74eea4c1fb", + Application = "system", + Code = "system_tools_config_list", + IsDeleted = 0ul, + Name = "配置列表", + OpenType = 0, + Permission = "sysConfig:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fc91afb5-2b9e-428b-b5ff-b0ef35dd5336", + Application = "system", + Code = "system_tools_config_add", + IsDeleted = 0ul, + Name = "配置增加", + OpenType = 0, + Permission = "sysConfig:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1efb72e8-3449-490a-92e0-308b124c338f", + Application = "system", + Code = "system_tools_config_edit", + IsDeleted = 0ul, + Name = "配置编辑", + OpenType = 0, + Permission = "sysConfig:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5760230f-e6fc-4c3d-ba38-1c8a5a923eb3", + Application = "system", + Code = "system_tools_config_delete", + IsDeleted = 0ul, + Name = "配置删除", + OpenType = 0, + Permission = "sysConfig:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6bfc0c53-5d6c-437c-9757-bc79e664d0f5", + Application = "system", + Code = "system_tools_config_detail", + IsDeleted = 0ul, + Name = "配置详情", + OpenType = 0, + Permission = "sysConfig:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f7fe47a3-86b2-4660-9920-0c9836755666", + Application = "system", + Code = "sys_app_mgr_set_as_default", + IsDeleted = 0ul, + Name = "设为默认应用", + OpenType = 0, + Permission = "sysApp:setAsDefault", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cde43456-baae-4e9b-b6f9-b0ea9ab49adb", + Application = "system", + Code = "sys_email_mgr", + Component = "system/email/index", + IsDeleted = 0ul, + Name = "邮件发送", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4d4cf5b3-bd4c-4f17-9fb2-47b28b00681f", + Application = "system", + Code = "sys_email_mgr_send_email", + IsDeleted = 0ul, + Name = "发送文本邮件", + OpenType = 0, + Permission = "email:sendEmail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "51e45073-1461-4b3b-ae06-d0d3dcf222e0", + Application = "system", + Code = "sys_email_mgr_send_email_html", + IsDeleted = 0ul, + Name = "发送html邮件", + OpenType = 0, + Permission = "email:sendEmailHtml", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e571a1c9-8b43-459f-9dc6-1dcf967627b7", + Application = "system", + Code = "sys_sms_mgr", + Component = "system/sms/index", + IsDeleted = 0ul, + Name = "短信管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2afa4925-b927-457e-88a1-d215b7d75fb6", + Application = "system", + Code = "sys_sms_mgr_page", + IsDeleted = 0ul, + Name = "短信发送查询", + OpenType = 0, + Permission = "sms:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "97c1b073-5e19-4542-89e2-d8da44d0f1df", + Application = "system", + Code = "sys_sms_mgr_send_login_message", + IsDeleted = 0ul, + Name = "发送验证码短信", + OpenType = 0, + Permission = "sms:sendLoginMessage", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d2454bd2-f300-4b28-95c0-12432c28cbdf", + Application = "system", + Code = "sys_sms_mgr_validate_message", + IsDeleted = 0ul, + Name = "验证短信验证码", + OpenType = 0, + Permission = "sms:validateMessage", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "477739a3-53d8-4f9b-ba32-f6dda79ec8a8", + Application = "system", + Code = "sys_dict_mgr", + Component = "system/dict/index", + IsDeleted = 0ul, + Name = "字典管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "70c5e8c5-6104-4e53-99c0-4743e557456b", + Application = "system", + Code = "sys_dict_mgr_dict_type_page", + IsDeleted = 0ul, + Name = "字典类型查询", + OpenType = 0, + Permission = "sysDictType:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1bd1d982-e05a-4bdc-a4e0-752d94f3196c", + Application = "system", + Code = "sys_dict_mgr_dict_type_list", + IsDeleted = 0ul, + Name = "字典类型列表", + OpenType = 0, + Permission = "sysDictType:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "bd09b023-0884-4f31-8cf7-f66f789fa3db", + Application = "system", + Code = "sys_dict_mgr_dict_type_add", + IsDeleted = 0ul, + Name = "字典类型增加", + OpenType = 0, + Permission = "sysDictType:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1f7a41ff-5a46-449c-81f3-1618dfdcb4cd", + Application = "system", + Code = "sys_dict_mgr_dict_type_delete", + IsDeleted = 0ul, + Name = "字典类型删除", + OpenType = 0, + Permission = "sysDictType:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "2381cde4-2174-47e7-a1e5-e58da70e7a11", + Application = "system", + Code = "sys_dict_mgr_dict_type_edit", + IsDeleted = 0ul, + Name = "字典类型编辑", + OpenType = 0, + Permission = "sysDictType:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8f7d3c74-8800-4922-9662-ac6af378c882", + Application = "system", + Code = "sys_dict_mgr_dict_type_detail", + IsDeleted = 0ul, + Name = "字典类型详情", + OpenType = 0, + Permission = "sysDictType:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4f87b6de-be62-4398-b680-1f8611f2cd70", + Application = "system", + Code = "sys_dict_mgr_dict_type_drop_down", + IsDeleted = 0ul, + Name = "字典类型下拉", + OpenType = 0, + Permission = "sysDictType:dropDown", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "07c799b2-e8e9-4955-83da-97560f161d87", + Application = "system", + Code = "sys_dict_mgr_dict_type_change_status", + IsDeleted = 0ul, + Name = "字典类型修改状态", + OpenType = 0, + Permission = "sysDictType:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "29be8e3c-c2bb-4162-b282-fdf58c218b9d", + Application = "system", + Code = "sys_dict_mgr_dict_page", + IsDeleted = 0ul, + Name = "字典值查询", + OpenType = 0, + Permission = "sysDictData:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "b8cbc4e1-ac10-4cda-b1e4-f816a2632d02", + Application = "system", + Code = "sys_dict_mgr_dict_list", + IsDeleted = 0ul, + Name = "字典值列表", + OpenType = 0, + Permission = "sysDictData:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54e97bde-94d6-42df-89e3-4c3ace153b22", + Application = "system", + Code = "sys_dict_mgr_dict_add", + IsDeleted = 0ul, + Name = "字典值增加", + OpenType = 0, + Permission = "sysDictData:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "be98da08-a3b0-463c-8208-05d843620258", + Application = "system", + Code = "sys_dict_mgr_dict_delete", + IsDeleted = 0ul, + Name = "字典值删除", + OpenType = 0, + Permission = "sysDictData:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "38809fc3-163f-4fe9-a488-c9bb5bce752a", + Application = "system", + Code = "sys_dict_mgr_dict_edit", + IsDeleted = 0ul, + Name = "字典值编辑", + OpenType = 0, + Permission = "sysDictData:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fc511b42-f0a1-489b-8418-7ef94b0fb374", + Application = "system", + Code = "sys_role_mgr_grant_data", + IsDeleted = 0ul, + Name = "字典值详情", + OpenType = 0, + Permission = "sysDictData:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "200428b3-1605-4c70-b840-e691e302ae69", + Application = "system", + Code = "sys_dict_mgr_dict_change_status", + IsDeleted = 0ul, + Name = "字典值修改状态", + OpenType = 0, + Permission = "sysDictData:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d40f424d-d5fc-4b86-a2bd-3a5a76076bc1", + Application = "system", + Code = "sys_swagger_mgr", + Component = "Iframe", + IsDeleted = 0ul, + Link = "http://127.0.0.1:5566/", + Name = "接口文档", + OpenType = 2, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "eec4563e-9307-4ccd-ac3a-93598badb195", + Application = "system", + Code = "sys_log_mgr", + Component = "PageView", + Icon = "read", + IsDeleted = 0ul, + Name = "日志管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/log", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "322b2cb6-df29-483b-b011-54dce1532fae", + Application = "system", + Code = "sys_log_mgr_vis_log", + Component = "system/log/vislog/index", + IsDeleted = 0ul, + Name = "访问日志", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "122641c1-ab6d-4f91-9527-16fc8fea9708", + Application = "system", + Code = "sys_log_mgr_vis_log_page", + IsDeleted = 0ul, + Name = "访问日志查询", + OpenType = 0, + Permission = "sysVisLog:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f2367804-6382-4e72-8282-e4f6f988ecd1", + Application = "system", + Code = "sys_log_mgr_vis_log_delete", + IsDeleted = 0ul, + Name = "访问日志清空", + OpenType = 0, + Permission = "sysVisLog:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1a1a13cb-f9a9-4ffe-924d-d523db79f7bf", + Application = "system", + Code = "sys_log_mgr_op_log", + Component = "system/log/oplog/index", + IsDeleted = 0ul, + Name = "操作日志", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "7f44f49e-6458-4149-bbcd-9a937f552cec", + Application = "system", + Code = "sys_log_mgr_op_log_page", + IsDeleted = 0ul, + Name = "操作日志查询", + OpenType = 0, + Permission = "sysOpLog:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "263e0c00-2796-411c-9f50-0aa361f7781c", + Application = "system", + Code = "sys_log_mgr_op_log_delete", + IsDeleted = 0ul, + Name = "操作日志清空", + OpenType = 0, + Permission = "sysOpLog:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf72e37b-3d3b-4dba-bcd0-3fb4bd54757c", + Application = "system", + Code = "sys_monitor_mgr", + Component = "PageView", + Icon = "deployment-unit", + IsDeleted = 0ul, + Name = "系统监控", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/monitor", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c1e70042-fe3f-4efc-a6cc-86de8507f948", + Application = "system", + Code = "sys_monitor_mgr_machine_monitor", + Component = "system/machine/index", + IsDeleted = 0ul, + Name = "服务监控", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "444f3658-defe-47a7-880e-bf0af8b66591", + Application = "system", + Code = "sys_monitor_mgr_machine_monitor_query", + IsDeleted = 0ul, + Name = "服务监控查询", + OpenType = 0, + Permission = "sysMachine:query", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "49a8b476-327b-4f33-87b8-2d9bc50dc390", + Application = "system", + Code = "sys_monitor_mgr_online_user", + Component = "system/onlineUser/index", + IsDeleted = 0ul, + Name = "在线用户", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4785eb5a-678a-4f9c-b07c-3b92acdd6de0", + Application = "system", + Code = "sys_monitor_mgr_online_user_list", + IsDeleted = 0ul, + Name = "在线用户列表", + OpenType = 0, + Permission = "sysOnlineUser:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4dbf6765-ac79-4708-a9d5-16a4d4b09164", + Application = "system", + Code = "sys_monitor_mgr_online_user_force_exist", + IsDeleted = 0ul, + Name = "在线用户强退", + OpenType = 0, + Permission = "sysOnlineUser:forceExist", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "31c2af01-b856-4a1d-a131-cdf8e847b1a4", + Application = "system", + Code = "sys_monitor_mgr_druid", + Component = "Iframe", + IsDeleted = 0ul, + Link = "http://localhost:82/druid/login.html", + Name = "数据监控", + OpenType = 2, + 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 = 0ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d4cac841-99e5-4014-af17-2986c9340306", + Application = "system", + Code = "sys_notice", + Component = "PageView", + Icon = "sound", + IsDeleted = 0ul, + Name = "通知公告", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/notice", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e8ca3968-e404-4ea6-a71a-d06d06b51bd5", + Application = "system", + Code = "sys_notice_mgr", + Component = "system/notice/index", + IsDeleted = 0ul, + Name = "公告管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54584ab7-25d1-45b7-b3d4-76ba21511f97", + Application = "system", + Code = "sys_notice_mgr_page", + IsDeleted = 0ul, + Name = "公告查询", + OpenType = 0, + Permission = "sysNotice:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f27c8431-7da5-4ffe-a8f3-b511cf44c0c8", + Application = "system", + Code = "sys_notice_mgr_add", + IsDeleted = 0ul, + Name = "公告增加", + OpenType = 0, + Permission = "sysNotice:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f84c1f3a-3a51-4be2-97c9-7543b044e457", + Application = "system", + Code = "sys_notice_mgr_edit", + IsDeleted = 0ul, + Name = "公告编辑", + OpenType = 0, + Permission = "sysNotice:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a8abcb85-ad3b-47b9-8c9b-e7d1876b90cf", + Application = "system", + Code = "sys_notice_mgr_delete", + IsDeleted = 0ul, + Name = "公告删除", + OpenType = 0, + Permission = "sysNotice:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "fe9cbb41-7b05-4f32-b960-87a1ef146166", + Application = "system", + Code = "sys_notice_mgr_detail", + IsDeleted = 0ul, + Name = "公告查看", + OpenType = 0, + Permission = "sysNotice:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "3e547bb0-4cf5-4cf0-8386-48d2f3c12dcb", + Application = "system", + Code = "sys_notice_mgr_changeStatus", + IsDeleted = 0ul, + Name = "公告修改状态", + OpenType = 0, + Permission = "sysNotice:changeStatus", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ac3065ff-d239-4e0e-86e5-d72cc658224c", + Application = "system", + Code = "sys_notice_mgr_received", + Component = "system/noticeReceived/index", + IsDeleted = 0ul, + Name = "已收公告", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e2d4b13b-eb3e-4ead-8fb8-4c61a3004726", + Application = "system", + Code = "sys_notice_mgr_received_page", + IsDeleted = 0ul, + Name = "已收公告查询", + OpenType = 0, + Permission = "sysNotice:received", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "05326e62-f496-4950-8a29-40e8a479424f", + Application = "system", + Code = "sys_file_mgr", + Component = "PageView", + Icon = "file", + IsDeleted = 0ul, + Name = "文件管理", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/file", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "0af2a460-bbb0-472c-b027-8532970425df", + Application = "system", + Code = "sys_file_mgr_sys_file", + Component = "system/file/index", + IsDeleted = 0ul, + Name = "系统文件", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "c7bac800-b922-4173-bd8d-9888b4eab1d4", + Application = "system", + Code = "sys_file_mgr_sys_file_page", + IsDeleted = 0ul, + Name = "文件查询", + OpenType = 0, + Permission = "sysFileInfo:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f47e1fa7-6329-4d67-8fe6-36ca06aad54b", + Application = "system", + Code = "sys_file_mgr_sys_file_list", + IsDeleted = 0ul, + Name = "文件列表", + OpenType = 0, + Permission = "sysFileInfo:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cca0a2ee-cfb9-4996-affb-dc8d8168ac10", + Application = "system", + Code = "sys_file_mgr_sys_file_delete", + IsDeleted = 0ul, + Name = "文件删除", + OpenType = 0, + Permission = "sysFileInfo:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "eb738eaa-5eed-466d-b422-4eb6f4662dd9", + Application = "system", + Code = "sys_file_mgr_sys_file_detail", + IsDeleted = 0ul, + Name = "文件详情", + OpenType = 0, + Permission = "sysFileInfo:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "69b97ace-d849-4e52-8fc2-9da7d93e325f", + Application = "system", + Code = "sys_file_mgr_sys_file_upload", + IsDeleted = 0ul, + Name = "文件上传", + OpenType = 0, + Permission = "sysFileInfo:upload", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "e286d53d-bf3c-4711-b0a3-15cfad0a7521", + Application = "system", + Code = "sys_file_mgr_sys_file_download", + IsDeleted = 0ul, + Name = "文件下载", + OpenType = 0, + Permission = "sysFileInfo:download", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1975891b-7940-44a8-a513-9f2e8b05dda1", + Application = "system", + Code = "sys_file_mgr_sys_file_preview", + IsDeleted = 0ul, + Name = "图片预览", + OpenType = 0, + Permission = "sysFileInfo:preview", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "ba03cfd5-5d72-465f-87b6-71134da68fab", + Application = "system", + Code = "sys_timers", + Component = "PageView", + Icon = "dashboard", + IsDeleted = 0ul, + Name = "定时任务", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/timers", + Sort = 100, + Status = 0, + Type = 0, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8d4643d7-ec15-48ba-b896-816f8dab1b31", + Application = "system", + Code = "sys_timers_mgr", + Component = "system/timers/index", + IsDeleted = 0ul, + Name = "任务管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "db62154a-470e-43c8-8959-a686b954fe7d", + Application = "system", + Code = "sys_timers_mgr_page", + IsDeleted = 0ul, + Name = "定时任务查询", + OpenType = 0, + Permission = "sysTimers:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "dc07cd9f-4a53-40d9-988e-70290a146eff", + Application = "system", + Code = "sys_timers_mgr_list", + IsDeleted = 0ul, + Name = "定时任务列表", + OpenType = 0, + Permission = "sysTimers:list", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "1e562d31-c2f8-4af8-be4b-47e3b251d9a3", + Application = "system", + Code = "sys_timers_mgr_detail", + IsDeleted = 0ul, + Name = "定时任务详情", + OpenType = 0, + Permission = "sysTimers:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f27ba442-7d6f-499f-8053-a737adc3492a", + Application = "system", + Code = "sys_timers_mgr_add", + IsDeleted = 0ul, + Name = "定时任务增加", + OpenType = 0, + Permission = "sysTimers:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "99129601-0be5-43ee-842b-a428603f013b", + Application = "system", + Code = "sys_timers_mgr_delete", + IsDeleted = 0ul, + Name = "定时任务删除", + OpenType = 0, + Permission = "sysTimers:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5e118fc0-f580-4d06-a89d-f321a84e5654", + Application = "system", + Code = "sys_timers_mgr_edit", + IsDeleted = 0ul, + Name = "定时任务编辑", + OpenType = 0, + Permission = "sysTimers:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "4272f2e4-4a8b-45bb-b688-2b9471c35e83", + Application = "system", + Code = "sys_timers_mgr_get_action_classes", + IsDeleted = 0ul, + Name = "定时任务可执行列表", + OpenType = 0, + Permission = "sysTimers:getActionClasses", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "54094687-f661-4cba-bdfc-e76f22db8d76", + Application = "system", + Code = "sys_timers_mgr_start", + IsDeleted = 0ul, + Name = "定时任务启动", + OpenType = 0, + Permission = "sysTimers:start", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "6b82d407-d1ea-440e-9245-128ad03dffc0", + Application = "system", + Code = "sys_timers_mgr_stop", + IsDeleted = 0ul, + Name = "定时任务关闭", + OpenType = 0, + Permission = "sysTimers:stop", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "5172265d-eda3-4b8a-a542-d582467a51a1", + Application = "system_tool", + Code = "code_gen", + Component = "gen/codeGenerate/index", + Icon = "thunderbolt", + IsDeleted = 0ul, + Name = "代码生成", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/codeGenerate/index", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "cf51df0a-8e0b-4252-ba06-9646cad648d1", + Application = "system_tool", + Code = "form_design", + Component = "system/formDesign/index", + Icon = "robot", + IsDeleted = 0ul, + Name = "表单设计", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/formDesign/index", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "f4cf2a3d-0714-4ca4-a691-0b363c172f82", + Application = "advanced", + Code = "sys_tenant", + Component = "PageView", + Icon = "switcher", + IsDeleted = 0ul, + Name = "SaaS租户", + OpenType = 0, + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Router = "/tenant", + Sort = 100, + Status = 0, + Type = 1, + Visible = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "a6e5cd91-e3de-401d-bc8c-86bd464ab32e", + Application = "advanced", + Code = "sys_tenant_mgr", + Component = "system/tenant/index", + IsDeleted = 0ul, + Name = "租户管理", + OpenType = 1, + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "8985ec0a-5060-4812-bf47-4f3102948066", + Application = "advanced", + Code = "sys_tenant_mgr_page", + IsDeleted = 0ul, + Name = "租户查询", + OpenType = 0, + Permission = "sysTenant:page", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "d9584afb-18de-4f7e-b992-c21ad77b1aae", + Application = "advanced", + Code = "sys_tenant_mgr_detail", + IsDeleted = 0ul, + Name = "租户详情", + OpenType = 0, + Permission = "sysTenant:detail", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "01ae6b95-9c1e-4882-a9ac-ebb9f1868c54", + Application = "advanced", + Code = "sys_tenant_mgr_add", + IsDeleted = 0ul, + Name = "租户增加", + OpenType = 0, + Permission = "sysTenant:add", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "59e9f6da-151a-4201-bea1-00ef06fe5842", + Application = "advanced", + Code = "sys_tenant_mgr_delete", + IsDeleted = 0ul, + Name = "租户删除", + OpenType = 0, + Permission = "sysTenant:delete", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }, + new + { + Id = "220b6a86-e65d-469b-8aa0-46c4f5e77ab8", + Application = "advanced", + Code = "sys_tenant_mgr_edit", + IsDeleted = 0ul, + Name = "租户编辑", + OpenType = 0, + Permission = "sysTenant:edit", + 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 = 1ul, + VisibleParent = 0ul, + Weight = 1 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysNotice", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Attachments") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("上传文件id集合"); + + b.Property("CancelTime") + .HasColumnType("datetime") + .HasComment("撤回时间"); + + b.Property("Content") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("内容"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("PublicOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicOrgId") + .HasComment("发布机构Id"); + + b.Property("PublicOrgName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("发布机构名称"); + + b.Property("PublicTime") + .HasColumnType("datetime") + .HasComment("发布时间"); + + b.Property("PublicUserId") + .HasColumnType("varchar(36)") + .HasColumnName("PublicUserId") + .HasComment("发布人Id"); + + b.Property("PublicUserName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("发布人姓名"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("Title") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("标题"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_notice"); + + b + .HasComment("通知公告表"); + }); + + modelBuilder.Entity("Ewide.Core.SysNoticeUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("NoticeId") + .HasColumnType("varchar(36)") + .HasColumnName("NoticeId") + .HasComment("通知公告Id"); + + b.Property("ReadStatus") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("ReadTime") + .HasColumnType("datetime") + .HasComment("阅读时间"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("UserId") + .HasColumnType("varchar(36)") + .HasColumnName("UserId") + .HasComment("用户Id"); + + b.HasKey("Id"); + + b.ToTable("sys_notice_user"); + + b + .HasComment("通知公告用户表"); + }); + + modelBuilder.Entity("Ewide.Core.SysOauthUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AccessToken") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Token"); + + b.Property("Avatar") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("头像"); + + b.Property("Blog") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("用户网址"); + + b.Property("Company") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("所在公司"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("邮箱"); + + b.Property("Gender") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("性别"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Location") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("位置"); + + b.Property("NickName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("昵称"); + + b.Property("Phone") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Source") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("用户来源"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("Uuid") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("UUID"); + + b.HasKey("Id"); + + b.ToTable("sys_oauth_user"); + + b + .HasComment("Oauth登录用户表"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("AreaCode") + .HasColumnType("varchar(50) CHARACTER SET utf8mb4"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("Contacts") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("联系人"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Pids"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("Tel") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Type") + .HasColumnType("int") + .HasComment("机构类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_org"); + + b + .HasComment("组织机构表"); + + b.HasData( + new + { + Id = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Code = "hxjt", + IsDeleted = 0ul, + Name = "华夏集团", + Pid = "00000000-0000-0000-0000-000000000000", + Pids = "[00000000-0000-0000-0000-000000000000],", + Remark = "华夏集团", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "8a2271d6-5bda-4544-bdd3-27e53a8b418e", + Code = "hxjt_bj", + IsDeleted = 0ul, + Name = "华夏集团北京分公司", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", + Remark = "华夏集团北京分公司", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "127c0a5d-43ac-4370-b313-082361885aca", + Code = "hxjt_cd", + IsDeleted = 0ul, + Name = "华夏集团成都分公司", + Pid = "12d888de-f55d-4c88-b0a0-7c3510664d97", + Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", + Remark = "华夏集团成都分公司", + Sort = 100, + Status = 0, + Type = 0 + }, + new + { + Id = "f236ab2d-e1b5-4e9d-844f-a59ec32c20e4", + Code = "hxjt_bj_yfb", + IsDeleted = 0ul, + Name = "研发部", + 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, + Type = 0 + }, + new + { + Id = "07322be0-2015-41f2-859e-132b5e142fca", + Code = "hxjt_bj_qhb", + IsDeleted = 0ul, + Name = "企划部", + 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, + Type = 0 + }, + new + { + Id = "49dc3f25-873d-4998-9767-46978d79d8e6", + Code = "hxjt_cd_scb", + IsDeleted = 0ul, + Name = "市场部", + 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, + Type = 0 + }, + new + { + Id = "56b7a823-cc62-492b-a91b-0b053ef2683b", + Code = "hxjt_cd_cwb", + IsDeleted = 0ul, + Name = "财务部", + 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, + Type = 0 + }, + new + { + Id = "e9f97d63-a585-40ff-bf0c-7406e785f660", + Code = "hxjt_cd_scb_2b", + IsDeleted = 0ul, + Name = "市场部二部", + 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, + Type = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysPos", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_pos"); + + b + .HasComment("职位表"); + + b.HasData( + new + { + Id = "269236c4-d74e-4e54-9d50-f6f61580a197", + Code = "zjl", + IsDeleted = 0ul, + Name = "总经理", + Remark = "总经理", + Sort = 100, + Status = 0 + }, + new + { + Id = "46c68a62-f119-4ff7-b621-0bbd77504538", + Code = "fzjl", + IsDeleted = 0ul, + Name = "副总经理", + Remark = "副总经理", + Sort = 101, + Status = 0 + }, + new + { + Id = "5bd8c466-2bca-4386-a551-daac78e3cee8", + Code = "bmjl", + IsDeleted = 0ul, + Name = "部门经理", + Remark = "部门经理", + Sort = 102, + Status = 0 + }, + new + { + Id = "d89a3afe-e6ba-4018-bdae-3c98bb47ad66", + Code = "gzry", + IsDeleted = 0ul, + Name = "工作人员", + Remark = "工作人员", + Sort = 103, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysRole", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Code") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("编码"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("DataScopeType") + .HasColumnType("int") + .HasComment("数据范围类型"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Sort") + .HasColumnType("int") + .HasComment("排序"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_role"); + + b + .HasComment("角色表"); + + b.HasData( + new + { + Id = "6dfe9189-ce10-434e-a7a7-5cdc46e85047", + Code = "sys_manager_role", + DataScopeType = 1, + IsDeleted = 0ul, + Name = "系统管理员", + Remark = "系统管理员", + Sort = 100, + Status = 0 + }, + new + { + Id = "cd187ebd-ab3d-4768-9669-85e2219c2910", + Code = "common_role", + DataScopeType = 5, + IsDeleted = 0ul, + Name = "普通用户", + Remark = "普通用户", + Sort = 101, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleArea", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasComment("角色Id"); + + b.Property("AreaCode") + .HasColumnType("varchar(50) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域代码"); + + b.HasKey("SysRoleId", "AreaCode"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_role_area"); + + b + .HasComment("角色区域自定义数据"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.HasKey("SysRoleId", "SysOrgId"); + + b.HasIndex("SysOrgId"); + + b.ToTable("sys_role_data_scope"); + + b + .HasComment("角色数据范围表"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => + { + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.Property("SysMenuId") + .HasColumnType("varchar(36)") + .HasColumnName("SysMenuId") + .HasComment("菜单Id"); + + b.HasKey("SysRoleId", "SysMenuId"); + + b.HasIndex("SysMenuId"); + + b.ToTable("sys_role_menu"); + + b + .HasComment("角色菜单表"); + }); + + modelBuilder.Entity("Ewide.Core.SysTenant", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Connection") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("数据库连接"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电子邮箱"); + + b.Property("Host") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("主机"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("Name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("名称"); + + b.Property("Phone") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("Schema") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("架构"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_tenant"); + + b + .HasComment("租户表"); + + b.HasData( + new + { + Id = "506a14b7-882d-4548-96fa-a55dbe79bfa1", + Connection = "Data Source=./Ewide.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Email = "zuohuaijun@163.com", + Host = "localhost:5566", + IsDeleted = 0ul, + Name = "默认租户", + Phone = "18020030720" + }, + new + { + Id = "eed8c4a6-70d8-49fd-9566-21a6966bb702", + Connection = "Data Source=./Dilon_1.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Host = "localhost:5588", + IsDeleted = 0ul, + Name = "其他租户" + }); + }); + + modelBuilder.Entity("Ewide.Core.SysTimer", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("BeginTime") + .HasColumnType("datetime") + .HasComment("开始时间"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Cron") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Cron表达式"); + + b.Property("DoOnce") + .HasColumnType("tinyint(1)") + .HasComment("只执行一次"); + + b.Property("EndTime") + .HasColumnType("datetime") + .HasComment("结束时间"); + + b.Property("ExecuteType") + .HasColumnType("int") + .HasComment("执行类型"); + + b.Property("Headers") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("Headers"); + + b.Property("Interval") + .HasColumnType("int") + .HasComment("执行间隔时间"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("JobName") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("任务名称"); + + b.Property("Remark") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("备注"); + + b.Property("RequestParameters") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求参数"); + + b.Property("RequestType") + .HasColumnType("int") + .HasComment("请求类型"); + + b.Property("RequestUrl") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("请求url"); + + b.Property("RunNumber") + .HasColumnType("int") + .HasComment("执行次数"); + + b.Property("StartNow") + .HasColumnType("tinyint(1)") + .HasComment("立即执行"); + + b.Property("TimerType") + .HasColumnType("int") + .HasComment("定时器类型"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_timer"); + + b + .HasComment("定时任务表"); + + b.HasData( + new + { + Id = "971bc338-0c03-46d4-8113-c7738d54ea18", + BeginTime = new DateTime(2021, 3, 21, 0, 0, 0, 0, DateTimeKind.Local), + DoOnce = false, + ExecuteType = 0, + Interval = 30, + IsDeleted = 0ul, + JobName = "百度api", + RequestType = 2, + RequestUrl = "https://www.baidu.com", + StartNow = false, + TimerType = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysUser", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("Account") + .IsRequired() + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("账号"); + + b.Property("AdminType") + .HasColumnType("int") + .HasComment("管理员类型-超级管理员_1、非管理员_2"); + + b.Property("Avatar") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("头像"); + + b.Property("Birthday") + .HasColumnType("datetime") + .HasComment("生日"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("Email") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("邮箱"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("LastLoginIp") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("最后登录IP"); + + b.Property("LastLoginTime") + .HasColumnType("datetime") + .HasComment("最后登录时间"); + + b.Property("Name") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("姓名"); + + b.Property("NickName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("昵称"); + + b.Property("Password") + .IsRequired() + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("密码"); + + b.Property("Phone") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("手机"); + + b.Property("SecurityLevel") + .HasColumnType("int") + .HasComment("密码安全级别"); + + b.Property("Sex") + .HasColumnType("int") + .HasComment("性别-男_1、女_2"); + + b.Property("Status") + .HasColumnType("int") + .HasComment("状态-正常_0、停用_1、删除_2"); + + b.Property("Tel") + .HasMaxLength(30) + .HasColumnType("varchar(30) CHARACTER SET utf8mb4") + .HasComment("电话"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.HasKey("Id"); + + b.ToTable("sys_user"); + + b + .HasComment("用户表"); + + b.HasData( + new + { + Id = "d0ead3dc-5096-4e15-bc6d-f640be5301ec", + Account = "superAdmin", + AdminType = 1, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "superAdmin", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 1, + Status = 0 + }, + new + { + Id = "5398fb9a-2209-4ce7-a2c1-b6a983e502b5", + Account = "admin", + AdminType = 1, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "admin", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 2, + Status = 0 + }, + new + { + Id = "16a74726-e156-499f-9942-0e0e24ad0c3f", + Account = "zuohuaijun", + AdminType = 2, + Birthday = new DateTime(1986, 7, 26, 0, 0, 0, 0, DateTimeKind.Unspecified), + IsDeleted = 0ul, + LastLoginTime = new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), + Name = "zuohuaijun", + Password = "e10adc3949ba59abbe56e057f20f883e", + Phone = "18020030720", + SecurityLevel = 1, + Sex = 1, + Status = 0 + }); + }); + + modelBuilder.Entity("Ewide.Core.SysUserArea", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("AreaCode") + .HasMaxLength(10) + .HasColumnType("varchar(10) CHARACTER SET utf8mb4") + .HasComment("系统使用的区域代码"); + + b.HasKey("SysUserId", "AreaCode"); + + b.HasIndex("AreaCode"); + + b.ToTable("sys_user_area"); + + b + .HasComment("用户授权区域信息"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("SysOrgId") + .HasColumnType("varchar(36)") + .HasColumnName("SysOrgId") + .HasComment("机构Id"); + + b.HasKey("SysUserId", "SysOrgId"); + + b.HasIndex("SysOrgId"); + + b.ToTable("sys_user_data_scope"); + + b + .HasComment("用户数据范围表"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserRole", b => + { + b.Property("SysUserId") + .HasColumnType("varchar(36)") + .HasColumnName("SysUserId") + .HasComment("用户Id"); + + b.Property("SysRoleId") + .HasColumnType("varchar(36)") + .HasColumnName("SysRoleId") + .HasComment("角色Id"); + + b.HasKey("SysUserId", "SysRoleId"); + + b.HasIndex("SysRoleId"); + + b.ToTable("sys_user_role"); + + b + .HasComment("用户角色表"); + }); + + modelBuilder.Entity("Vote.Services.Entities.Experts", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("login_code") + .HasMaxLength(36) + .HasColumnType("varchar(36) CHARACTER SET utf8mb4") + .HasComment("登录码"); + + b.HasKey("Id"); + + b.ToTable("Experts"); + + b.HasData( + new + { + Id = "08c8ad90-b44f-4270-890c-8447f086d579", + IsDeleted = 0ul, + login_code = "8YCDD9" + }, + new + { + Id = "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0", + IsDeleted = 0ul, + login_code = "SMBG3Q" + }, + new + { + Id = "0eae9b66-e00d-42cf-b41f-d6b7ebdff800", + IsDeleted = 0ul, + login_code = "XV8U1U" + }, + new + { + Id = "1b4f9504-f486-4f8f-9588-24357b9ad0e0", + IsDeleted = 0ul, + login_code = "C6FSMT" + }, + new + { + Id = "355563e6-615d-443a-bec6-d6247f4dbaf7", + IsDeleted = 0ul, + login_code = "K8H9PW" + }, + new + { + Id = "36a50b18-b513-4f89-9dab-a0a10031ec48", + IsDeleted = 0ul, + login_code = "JL022B" + }, + new + { + Id = "3d135a79-97bf-4f10-bba5-7bed90e911a3", + IsDeleted = 0ul, + login_code = "5MJQY7" + }, + new + { + Id = "439260c8-54de-48c3-977d-fe2c11ae7fe6", + IsDeleted = 0ul, + login_code = "ZFD5VL" + }, + new + { + Id = "510e42da-856e-4d93-a099-d7e998dfbd7a", + IsDeleted = 0ul, + login_code = "3GZDEW" + }, + new + { + Id = "63e8a280-90c4-4c9b-9572-74f9d4278cd4", + IsDeleted = 0ul, + login_code = "WHM9CF" + }, + new + { + Id = "86c1a965-3229-46d6-a034-de4a06655d55", + IsDeleted = 0ul, + login_code = "CWYB3P" + }, + new + { + Id = "8db1378a-2deb-4d13-b49f-9490dd1ffd1d", + IsDeleted = 0ul, + login_code = "2154MF" + }, + new + { + Id = "90234cce-2f80-40cd-922e-d9d5ccd4a3c2", + IsDeleted = 0ul, + login_code = "A4P3RZ" + }, + new + { + Id = "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d", + IsDeleted = 0ul, + login_code = "FNNUA9" + }, + new + { + Id = "9a21e83c-06ae-44bc-9b9b-cecd92a0d606", + IsDeleted = 0ul, + login_code = "97GFZQ" + }, + new + { + Id = "c5401037-33b6-433f-9dd2-054dfb93a09e", + IsDeleted = 0ul, + login_code = "TYVWMZ" + }, + new + { + Id = "d3674cdd-142f-4549-9766-4d2d3991cd76", + IsDeleted = 0ul, + login_code = "DH1HCC" + }, + new + { + Id = "e7f6f049-6bff-4479-b7fb-845c4db9bd01", + IsDeleted = 0ul, + login_code = "HCY26V" + }, + new + { + Id = "eb83bc26-e942-4b98-8adc-02688bf1a32d", + IsDeleted = 0ul, + login_code = "KZS4WS" + }, + new + { + Id = "f6afc724-1b88-4a70-8714-d047c20928a4", + IsDeleted = 0ul, + login_code = "XQLGQ8" + }); + }); + + modelBuilder.Entity("Vote.Services.Entities.Projects", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("工程名称"); + + b.Property("serial_number") + .HasColumnType("int") + .HasComment("项目序号"); + + b.Property("type") + .HasColumnType("int") + .HasComment("项目类型"); + + b.HasKey("Id"); + + b.ToTable("Projects"); + + b.HasData( + new + { + Id = "5921ad9e-7027-446d-aae3-899ad388404b", + IsDeleted = 0ul, + name = "浙江纺织服装职业技术学院中英时尚设计学院综合楼项目", + serial_number = 1, + type = 0 + }, + new + { + Id = "3e458131-6318-4e27-935e-2e4a85c877b1", + IsDeleted = 0ul, + name = "宁波诺丁汉大学图书馆及学习中心项目", + serial_number = 2, + type = 0 + }, + new + { + Id = "03d59313-3e30-4345-920e-e21455c11228", + IsDeleted = 0ul, + name = "高新区滨江绿带整治工程五期(翔海路—大东江)I标段", + serial_number = 3, + type = 0 + }, + new + { + Id = "94e3b06e-2fa6-4830-8432-383305b237b8", + IsDeleted = 0ul, + name = "太平鸟高新区男装办公楼项目", + serial_number = 4, + type = 0 + }, + new + { + Id = "26f148e5-a44e-47d5-90aa-49136b1efb6d", + IsDeleted = 0ul, + name = "慈城新城高中项目", + serial_number = 5, + type = 0 + }, + new + { + Id = "686d2b36-30a8-47c4-9050-db601d8dcb8c", + IsDeleted = 0ul, + name = "宁海县妇幼保健院保健大楼工程", + serial_number = 6, + type = 0 + }, + new + { + Id = "8118f5fd-8082-4186-a5b4-32490cbadb19", + IsDeleted = 0ul, + name = "宁波市职业技术教育中心学校(荷池校区) 改扩建项目", + serial_number = 7, + type = 0 + }, + new + { + Id = "ecaf4b26-b27e-4eed-bbf2-0deaf52495fa", + IsDeleted = 0ul, + name = "大庆北路地段配套学校(二期)", + serial_number = 8, + type = 0 + }, + new + { + Id = "bb3eee7a-4846-4177-b377-fd2804d4db72", + IsDeleted = 0ul, + name = "鄞州区钟公庙第二初级中学工程", + serial_number = 9, + type = 0 + }, + new + { + Id = "21a336c4-f730-4244-ae5a-66d4e0f8f356", + IsDeleted = 0ul, + name = "北京航空航天大学宁波创新研究院(研究生院和国际交流中心)一期(实验用房)", + serial_number = 10, + type = 0 + }, + new + { + Id = "5c504c5d-9d69-4cf8-a483-c8699f0b517e", + IsDeleted = 0ul, + name = "余姚市人民医院肿瘤治疗中心项目", + serial_number = 11, + type = 0 + }, + new + { + Id = "2b257857-4905-4176-bebe-bc8b99eef73b", + IsDeleted = 0ul, + name = "庄市中心学校迁建工程", + serial_number = 12, + type = 0 + }, + new + { + Id = "9c16ca23-f3d8-44c9-92d7-d08d6b64e4f9", + IsDeleted = 0ul, + name = "镇海区中心学校新城校区项目", + serial_number = 13, + type = 0 + }, + new + { + Id = "62696ca2-719e-41df-8bad-e182efe84963", + IsDeleted = 0ul, + name = "宁波市海曙区段塘学校扩建工程", + serial_number = 14, + type = 0 + }, + new + { + Id = "ef61f197-b194-4190-ab74-f5f78c160bd3", + IsDeleted = 0ul, + name = "慈溪市明月湖幼儿园", + serial_number = 15, + type = 0 + }, + new + { + Id = "056e05e3-2ae5-4db5-b976-f4a1809a4d1a", + IsDeleted = 0ul, + name = "北仑外国语学校工程", + serial_number = 16, + type = 0 + }, + new + { + Id = "4c9d4677-539c-45c8-8885-45f9d2c1c15e", + IsDeleted = 0ul, + name = "宁波市残疾人康复中心(宁波市康复医院)扩建工程", + serial_number = 17, + type = 0 + }, + new + { + Id = "f640a90e-71c1-4142-afb4-b9d68f9ac08f", + IsDeleted = 0ul, + name = "宁波海关宁海办事处检测报关代理服务中心项目", + serial_number = 18, + type = 0 + }, + new + { + Id = "62eb67a1-2584-4b9e-b663-9c6c1b700d42", + IsDeleted = 0ul, + name = "新能源技术与材料综合研发平台- 核用碳化硅纤维及复合材料研发及应用平台项目", + serial_number = 19, + type = 0 + }, + new + { + Id = "23a38e3e-a77c-463c-902e-02088707d1ca", + IsDeleted = 0ul, + name = "东部新城核心区以东片区C1-6#地块邱隘镇九年一贯制学校工程", + serial_number = 20, + type = 0 + }, + new + { + Id = "1e9371d1-8b01-4c55-9431-000a3fffc0b4", + IsDeleted = 0ul, + name = "宁波大红鹰学院象山影视学院工程(二期)", + serial_number = 21, + type = 0 + }, + new + { + Id = "1f9ae2cf-c7c2-4a57-b678-b0fca4bf4959", + IsDeleted = 0ul, + name = "中国·浙江海洋运动中心(亚帆中心)工程", + serial_number = 22, + type = 0 + }, + new + { + Id = "c0e62c16-bf78-4d82-8dc6-442c1f0c0adc", + IsDeleted = 0ul, + name = "宁波市黄湖监狱迁建项目I标段、Ⅱ标段、Ⅲ标段、装修工程", + serial_number = 23, + type = 0 + }, + new + { + Id = "8be3e94f-0b17-4c97-9b9d-021b922fc6a2", + IsDeleted = 0ul, + name = "新潮塘区块九年一贯制学校新建工程", + serial_number = 24, + type = 0 + }, + new + { + Id = "fad24cde-bd7c-40cf-a7e2-ce46e396f489", + IsDeleted = 0ul, + name = "顾国和中学(爱国中学)工程(门卫、教学楼A-C、教学楼D、综合楼、食堂)", + serial_number = 25, + type = 0 + }, + new + { + Id = "6e52bfbf-4095-4189-b2f7-37eb1ced0ec9", + IsDeleted = 0ul, + name = "庄市街道同心湖幼儿园(暂名)工程", + serial_number = 26, + type = 0 + }, + new + { + Id = "dc22af65-c261-4245-b319-8908fc2e77f6", + IsDeleted = 0ul, + name = "中科院上海药物所宁波临床前研究中心", + serial_number = 27, + type = 0 + }, + new + { + Id = "09955588-0f17-479b-ba4b-c1f90ca58a85", + IsDeleted = 0ul, + name = "宁波科学中学新建项目", + serial_number = 28, + type = 0 + }, + new + { + Id = "39d80b14-8735-4710-bacb-432fd12dc309", + IsDeleted = 0ul, + name = "白沙路街道后油车股份经济合作社综合服务楼", + serial_number = 29, + type = 0 + }, + new + { + Id = "aa0e4017-2304-431a-b5ed-b725a77cb810", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅴ标段", + serial_number = 30, + type = 1 + }, + new + { + Id = "0c3672ab-23f4-4a8d-9de3-97fe401f3aee", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅵ标段", + serial_number = 31, + type = 1 + }, + new + { + Id = "e7ccba65-414f-4501-af69-4d6722e21d86", + IsDeleted = 0ul, + name = "三官堂大桥及接线(江南路至中官西路)工程(主桥)", + serial_number = 32, + type = 1 + }, + new + { + Id = "68f25778-4b2f-4a91-a2dc-640a0622f389", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅳ标段", + serial_number = 33, + type = 1 + }, + new + { + Id = "03265409-52b0-43dc-85b5-0698a0367211", + IsDeleted = 0ul, + name = "杭甬复线威海互通连接线一期工程(施工)Ⅲ标段", + serial_number = 34, + type = 1 + }, + new + { + Id = "c12f36c4-6887-4beb-8b90-1c5b68006af1", + IsDeleted = 0ul, + name = "甬江北岸大庆北路(湖东路-怡西街)道路工程I标段", + serial_number = 35, + type = 1 + }, + new + { + Id = "1d6aafe6-457e-4143-82fe-b1334bdabc45", + IsDeleted = 0ul, + name = "机场快速路南延(鄞州大道-绕城高速)工程施工Ⅰ标段", + serial_number = 36, + type = 1 + }, + new + { + Id = "54e26c4e-ffc4-4493-bb4c-3f3f66f46019", + IsDeleted = 0ul, + name = "永泰公园", + serial_number = 37, + type = 1 + }, + new + { + Id = "2bc85650-b86d-44de-a152-970928376305", + IsDeleted = 0ul, + name = "三官堂大桥及接线(江南路至中官西路)工程I标", + serial_number = 38, + type = 1 + }, + new + { + Id = "5a5dffca-ad94-476a-a25d-b68df2fd4908", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅷ标段", + serial_number = 39, + type = 1 + }, + new + { + Id = "c970ff56-ff36-4c64-a8a4-832c92e2f4bf", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅶ标段", + serial_number = 40, + type = 1 + }, + new + { + Id = "9742d735-e769-4355-8b26-5067a35b75bf", + IsDeleted = 0ul, + name = "西二环北延工程(明州路-中横线)", + serial_number = 41, + type = 1 + }, + new + { + Id = "35870caf-f7f5-4302-95d9-fb0c05462c40", + IsDeleted = 0ul, + name = "鄞奉路(新典路-三孔碶桥)道路工程", + serial_number = 42, + type = 1 + }, + new + { + Id = "b9690320-4839-40bb-8703-3b2724ce0578", + IsDeleted = 0ul, + name = "会展路(盛梅路-沙洲路)及南侧河道绿地工程", + serial_number = 43, + type = 1 + }, + new + { + Id = "7e1989e6-bf05-4fbc-b397-dc74069d301d", + IsDeleted = 0ul, + name = "宁波杭州湾新区南部新城海泉湾规划三路市政工程", + serial_number = 44, + type = 1 + }, + new + { + Id = "016e39e3-6fb9-4d8f-a5f8-2478b4e389e1", + IsDeleted = 0ul, + name = "杭州湾新区滨海新城启动区银滩路等六条路市政工程", + serial_number = 45, + type = 1 + }, + new + { + Id = "b38cedeb-f524-44ef-be8f-6cd1f7c54b59", + IsDeleted = 0ul, + name = "杭甬复线威海互通连接线一期工程(施工)Ⅰ标段", + serial_number = 46, + type = 1 + }, + new + { + Id = "8a5fc13a-d5aa-44b2-99dd-c2834ac00520", + IsDeleted = 0ul, + name = "杭甬复线威海互通连接线一期工程(施工)Ⅱ标段", + serial_number = 47, + type = 1 + }, + new + { + Id = "49dd82e4-b9b9-4d26-ae87-9f9092f367d1", + IsDeleted = 0ul, + name = "慈溪市北部污水处理厂提标改造工程", + serial_number = 48, + type = 1 + }, + new + { + Id = "a4d7196d-b9f3-439f-8258-4da4c04b177a", + IsDeleted = 0ul, + name = "通途路(世纪大道~东外环)综合管廊工程施工Ⅱ标段", + serial_number = 49, + type = 1 + }, + new + { + Id = "7f046001-a58d-400e-b97d-d4b55f79b6eb", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅲ标段", + serial_number = 50, + type = 1 + }, + new + { + Id = "bddeb30e-59bb-462b-bb69-5fe557b20614", + IsDeleted = 0ul, + name = "梅山保税港区港湾路(二期)工程", + serial_number = 51, + type = 1 + }, + new + { + Id = "cb5725b1-06cd-42da-abc4-c4412cecb627", + IsDeleted = 0ul, + name = "三官堂大桥及接线(江南路至中官西路)工程接线部分II标段", + serial_number = 52, + type = 1 + }, + new + { + Id = "19a78c25-d576-4fa0-872e-ae431a27f1fe", + IsDeleted = 0ul, + name = "霞浦污水泵站污水压力管工程", + serial_number = 53, + type = 1 + }, + new + { + Id = "92d860ce-94f5-4468-976d-6f4bc6d3a005", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅱ标段", + serial_number = 54, + type = 1 + }, + new + { + Id = "320907e0-5092-467c-ad38-9883af7e7694", + IsDeleted = 0ul, + name = "新长邱线拓宽改造工程(施工)2标段", + serial_number = 55, + type = 1 + }, + new + { + Id = "9f9d3b0f-0a9d-48cf-98a3-9ec2d805e8a9", + IsDeleted = 0ul, + name = "姚江东路(环城北路-机场路)工程I标段", + serial_number = 56, + type = 1 + }, + new + { + Id = "74c4cf12-880d-49f1-bd53-047bd7f858ac", + IsDeleted = 0ul, + name = "铁路平改立新大路(329国道 -金牌公路)工程", + serial_number = 57, + type = 1 + }, + new + { + Id = "37a5cc48-fe51-4493-b5bd-2dd0b42088b3", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅸ标段", + serial_number = 58, + type = 1 + }, + new + { + Id = "9ef49c31-8224-4c03-91e8-821d7b36b377", + IsDeleted = 0ul, + name = "姚江南岸滨江休闲带(机场路-青林渡路)工程", + serial_number = 59, + type = 1 + }, + new + { + Id = "8424686e-6e8a-49ca-b1db-8635ebda2157", + IsDeleted = 0ul, + name = "宁波北仑柴桥净化水厂EPC总承包项目", + serial_number = 60, + type = 1 + }, + new + { + Id = "44eebc4d-b467-477b-8c01-65931593722a", + IsDeleted = 0ul, + name = "沿山干河、陈渡界北三河周边剩余地块绿带工程", + serial_number = 61, + type = 1 + }, + new + { + Id = "5c4796db-5b4a-4259-b8b1-d89846d984ee", + IsDeleted = 0ul, + name = "铸锋路(康庄北路-通园路)拓宽改建工程Ⅱ标段", + serial_number = 62, + type = 1 + }, + new + { + Id = "a4054e2d-7f81-411e-8673-7b05938654f7", + IsDeleted = 0ul, + name = "柴桥临港产业园横二路(纬中路-环区路)工程", + serial_number = 63, + type = 1 + }, + new + { + Id = "85f873b8-ae62-4e5a-bab8-92332304368a", + IsDeleted = 0ul, + name = "机场快速路南延工程(绕城高速至岳林东路南)施工Ⅰ标段", + serial_number = 64, + type = 1 + }, + new + { + Id = "5e0e10fa-a4cc-4a7f-b5a5-9b0ca0e0a9af", + IsDeleted = 0ul, + name = "宁波杭州湾新区南部新城海泉湾博华路市政工程项目/宁波杭州湾新区南部新城海泉湾规划二路市政工程项目", + serial_number = 65, + type = 1 + }, + new + { + Id = "562be9ce-e9fd-4d81-b8a2-636fbc25d9c1", + IsDeleted = 0ul, + name = "宁波杭州湾新区海川大道(七塘公路—滨海一路)市政工程标段Ⅰ", + serial_number = 66, + type = 1 + }, + new + { + Id = "d52f2db9-07a5-4b77-add5-65c3b0a021e1", + IsDeleted = 0ul, + name = "梅景路改造(冬青路-渡驾桥江)工程", + serial_number = 67, + type = 1 + }, + new + { + Id = "a9be40e3-99b3-4d94-aaaa-92711f853075", + IsDeleted = 0ul, + name = "云飞路三期(康庄南路-长岛花园东侧路)工 程", + serial_number = 68, + type = 1 + }, + new + { + Id = "9b654b10-36d8-4530-8390-1406dc38bd84", + IsDeleted = 0ul, + name = "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)一标段", + serial_number = 69, + type = 1 + }, + new + { + Id = "594b2558-3c4d-4af5-a79e-17c74886b0b9", + IsDeleted = 0ul, + name = "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)二标段", + serial_number = 70, + type = 1 + }, + new + { + Id = "a3667aa7-9403-4cc6-a85e-42b96815ac32", + IsDeleted = 0ul, + name = "灵岩山路东延及沿山河南路延伸段工程一期", + serial_number = 71, + type = 1 + }, + new + { + Id = "6e8d85df-e9ed-4386-9b15-7c19eaccb199", + IsDeleted = 0ul, + name = "慈溪高新区基础设施建设四期", + serial_number = 72, + type = 1 + }, + new + { + Id = "996d15ac-467d-4ff8-8935-76517cc84fb7", + IsDeleted = 0ul, + name = "慈溪滨海经济开发区龙山滨海新城蓬苑路(横五路-横四路)工程", + serial_number = 73, + type = 1 + }, + new + { + Id = "91fd6b72-a524-480d-aadf-6e3bae73fbcb", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4001标段(翠柏里站)施工", + serial_number = 74, + type = 2 + }, + new + { + Id = "051a42c4-d157-47db-9887-12d5ea917922", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4011标段施工", + serial_number = 75, + type = 2 + }, + new + { + Id = "a25b1db3-23a2-4ea5-b10c-f020325c292f", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程供电系统安装施工Ⅱ标段", + serial_number = 76, + type = 2 + }, + new + { + Id = "5a9e2016-1c56-4435-8aed-4221bff231da", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第一批)TJ4015标段施工", + serial_number = 77, + type = 2 + }, + new + { + Id = "9c670713-7d5f-4372-ab7c-246e8e6dd3cf", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4013标段施工", + serial_number = 78, + type = 2 + }, + new + { + Id = "e4f7391b-a0a4-48d0-a803-4be81e52bbb9", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程JDSG4006标段车站机电安装施工", + serial_number = 79, + type = 2 + }, + new + { + Id = "d7c8a941-e37a-4889-b862-2b4c2fb8a992", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第四批)TJ4008标段施工", + serial_number = 80, + type = 2 + }, + new + { + Id = "1ed52273-3c72-4f79-919c-0c4020e4cdf3", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第四批)TJ4017标段施工", + serial_number = 81, + type = 2 + }, + new + { + Id = "aa28f286-cc5d-4051-978d-43ef4014cf5e", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4016标", + serial_number = 82, + type = 2 + }, + new + { + Id = "a3f6eea4-0349-4ddd-bfa7-33c0427bc90a", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程地下段轨道工程施工Ⅱ标段", + serial_number = 83, + type = 2 + }, + new + { + Id = "c04fa383-a9b0-47e4-a91c-9f1b657ac55b", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第二批)TJ4004标段施工", + serial_number = 84, + type = 2 + }, + new + { + Id = "40b27864-99c0-4d04-889c-5f9ff17cf726", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4018标", + serial_number = 85, + type = 2 + }, + new + { + Id = "b05f4d26-1b04-4a23-a295-8848ce4aa73e", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4012标段施工", + serial_number = 86, + type = 2 + }, + new + { + Id = "424b6a6a-8e16-4e5e-936b-25a73a3c244b", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第五批)TJ4007标段施工", + serial_number = 87, + type = 2 + }, + new + { + Id = "1a317eb0-a5fd-420a-b273-ca9d6a006921", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程地下段轨道工程施工I标段", + serial_number = 88, + type = 2 + }, + new + { + Id = "8fce8773-1eb4-4031-b9bd-60ce0fab8c18", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程JDSG4004标段车站机电安装施工", + serial_number = 89, + type = 2 + }, + new + { + Id = "d25f90c3-8125-4821-86cf-fbd3b879dd4b", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第四批)TJ4003标段施工", + serial_number = 90, + type = 2 + }, + new + { + Id = "25d0bc9e-30db-4768-9996-624312a0450c", + IsDeleted = 0ul, + name = "协丰220千伏变电站工程", + serial_number = 91, + type = 3 + }, + new + { + Id = "1d3333dd-ed50-4dcc-b210-2d44190febde", + IsDeleted = 0ul, + name = "新乐220千伏变电站整体改造工程", + serial_number = 92, + type = 3 + }, + new + { + Id = "b23702d5-9c73-4c79-aa63-fe2245f4d65d", + IsDeleted = 0ul, + name = "38省道宁海桥头胡至深甽段改建工程", + serial_number = 93, + type = 4 + }, + new + { + Id = "88909223-8273-4b3d-9b56-ba32e038ed35", + IsDeleted = 0ul, + name = "71省道盛宁线东陈至茅洋段改建工程", + serial_number = 94, + type = 4 + }, + new + { + Id = "f3ed2aeb-ac40-4580-bb37-008bea343731", + IsDeleted = 0ul, + name = "明州大道(洞桥至云龙段)工程第IV-2合同段", + serial_number = 95, + type = 4 + }, + new + { + Id = "4743c1eb-7135-4ea9-81f8-cf6d825e0ad5", + IsDeleted = 0ul, + name = "沿海中线北仑郭巨段(郭巨互通-北堤互通)拓宽工程", + serial_number = 96, + type = 4 + }, + new + { + Id = "4dcf10bd-93e6-43aa-8e18-9410392a8701", + IsDeleted = 0ul, + name = "梅山磨头碶移位及配套河道工程", + serial_number = 97, + type = 5 + }, + new + { + Id = "88b56348-6d04-45b4-8dc5-ba4c3b5303a7", + IsDeleted = 0ul, + name = "余姚市海塘除险治江围涂四期工程--临海北顺堤堤顶道路、堤岸防护及河道配套工程", + serial_number = 98, + type = 5 + }, + new + { + Id = "f2dc17f8-7bd1-4f6e-b16a-674e1ec34ed0", + IsDeleted = 0ul, + name = "庄桥机场周边区域水环境治理工程(江北大河整治工程二期庄桥段)", + serial_number = 99, + type = 5 + }, + new + { + Id = "64d400e2-0247-4c74-a02e-f32753292095", + IsDeleted = 0ul, + name = "掌起镇任佳溪村防洪分流(小流域治理)工程", + serial_number = 100, + type = 5 + }); + }); + + modelBuilder.Entity("Vote.Services.Entities.VoteRecords", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("expert_login_code") + .HasMaxLength(36) + .HasColumnType("varchar(36) CHARACTER SET utf8mb4") + .HasComment("专家"); + + b.Property("is_agree") + .HasColumnType("tinyint(1)") + .HasComment("是否同意"); + + b.Property("project_id") + .HasMaxLength(36) + .HasColumnType("varchar(36) CHARACTER SET utf8mb4") + .HasComment("项目Id"); + + b.Property("vote_time") + .HasColumnType("datetime") + .HasComment("投票时间"); + + b.HasKey("Id"); + + b.ToTable("VoteRecords"); + }); + + modelBuilder.Entity("Ewide.Core.SysDictData", b => + { + b.HasOne("Ewide.Core.SysDictType", "SysDictType") + .WithMany("SysDictDatas") + .HasForeignKey("TypeId"); + + b.Navigation("SysDictType"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpExtOrgPos", b => + { + b.HasOne("Ewide.Core.SysEmp", "SysEmp") + .WithMany() + .HasForeignKey("SysEmpId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany() + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysPos", "SysPos") + .WithMany() + .HasForeignKey("SysPosId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysEmp"); + + b.Navigation("SysOrg"); + + b.Navigation("SysPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmpPos", b => + { + b.HasOne("Ewide.Core.SysEmp", "SysEmp") + .WithMany("SysEmpPos") + .HasForeignKey("SysEmpId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysPos", "SysPos") + .WithMany("SysEmpPos") + .HasForeignKey("SysPosId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysEmp"); + + b.Navigation("SysPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysOrgs") + .HasForeignKey("AreaCode"); + + b.Navigation("Area"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleArea", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysRoleAreas") + .HasForeignKey("AreaCode") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleAreas") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Area"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleDataScope", b => + { + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany("SysRoleDataScopes") + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleDataScopes") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysOrg"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysRoleMenu", b => + { + b.HasOne("Ewide.Core.SysMenu", "SysMenu") + .WithMany("SysRoleMenus") + .HasForeignKey("SysMenuId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysRoleMenus") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysMenu"); + + b.Navigation("SysRole"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserArea", b => + { + b.HasOne("Ewide.Core.SysAreaCode", "Area") + .WithMany("SysUserAreas") + .HasForeignKey("AreaCode") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserAreas") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Area"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserDataScope", b => + { + b.HasOne("Ewide.Core.SysOrg", "SysOrg") + .WithMany("SysUserDataScopes") + .HasForeignKey("SysOrgId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserDataScopes") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysOrg"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysUserRole", b => + { + b.HasOne("Ewide.Core.SysRole", "SysRole") + .WithMany("SysUserRoles") + .HasForeignKey("SysRoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Ewide.Core.SysUser", "SysUser") + .WithMany("SysUserRoles") + .HasForeignKey("SysUserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("SysRole"); + + b.Navigation("SysUser"); + }); + + modelBuilder.Entity("Ewide.Core.SysAreaCode", b => + { + b.Navigation("SysOrgs"); + + b.Navigation("SysRoleAreas"); + + b.Navigation("SysUserAreas"); + }); + + modelBuilder.Entity("Ewide.Core.SysDictType", b => + { + b.Navigation("SysDictDatas"); + }); + + modelBuilder.Entity("Ewide.Core.SysEmp", b => + { + b.Navigation("SysEmpPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysMenu", b => + { + b.Navigation("SysRoleMenus"); + }); + + modelBuilder.Entity("Ewide.Core.SysOrg", b => + { + b.Navigation("SysRoleDataScopes"); + + b.Navigation("SysUserDataScopes"); + }); + + modelBuilder.Entity("Ewide.Core.SysPos", b => + { + b.Navigation("SysEmpPos"); + }); + + modelBuilder.Entity("Ewide.Core.SysRole", b => + { + b.Navigation("SysRoleAreas"); + + b.Navigation("SysRoleDataScopes"); + + b.Navigation("SysRoleMenus"); + + b.Navigation("SysUserRoles"); + }); + + modelBuilder.Entity("Ewide.Core.SysUser", b => + { + b.Navigation("SysUserAreas"); + + b.Navigation("SysUserDataScopes"); + + b.Navigation("SysUserRoles"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330112007_v1.0.5.cs b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330112007_v1.0.5.cs new file mode 100644 index 0000000..9394146 --- /dev/null +++ b/20220330_Vote/Ewide.Database.Migrations/Migrations/20220330112007_v1.0.5.cs @@ -0,0 +1,747 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Ewide.Database.Migrations.Migrations +{ + public partial class v105 : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.InsertData( + table: "Experts", + columns: new[] { "Id", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "login_code" }, + values: new object[,] + { + { "08c8ad90-b44f-4270-890c-8447f086d579", null, null, null, 0ul, null, null, null, "8YCDD9" }, + { "f6afc724-1b88-4a70-8714-d047c20928a4", null, null, null, 0ul, null, null, null, "XQLGQ8" }, + { "eb83bc26-e942-4b98-8adc-02688bf1a32d", null, null, null, 0ul, null, null, null, "KZS4WS" }, + { "e7f6f049-6bff-4479-b7fb-845c4db9bd01", null, null, null, 0ul, null, null, null, "HCY26V" }, + { "d3674cdd-142f-4549-9766-4d2d3991cd76", null, null, null, 0ul, null, null, null, "DH1HCC" }, + { "c5401037-33b6-433f-9dd2-054dfb93a09e", null, null, null, 0ul, null, null, null, "TYVWMZ" }, + { "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d", null, null, null, 0ul, null, null, null, "FNNUA9" }, + { "90234cce-2f80-40cd-922e-d9d5ccd4a3c2", null, null, null, 0ul, null, null, null, "A4P3RZ" }, + { "8db1378a-2deb-4d13-b49f-9490dd1ffd1d", null, null, null, 0ul, null, null, null, "2154MF" }, + { "86c1a965-3229-46d6-a034-de4a06655d55", null, null, null, 0ul, null, null, null, "CWYB3P" }, + { "9a21e83c-06ae-44bc-9b9b-cecd92a0d606", null, null, null, 0ul, null, null, null, "97GFZQ" }, + { "510e42da-856e-4d93-a099-d7e998dfbd7a", null, null, null, 0ul, null, null, null, "3GZDEW" }, + { "439260c8-54de-48c3-977d-fe2c11ae7fe6", null, null, null, 0ul, null, null, null, "ZFD5VL" }, + { "3d135a79-97bf-4f10-bba5-7bed90e911a3", null, null, null, 0ul, null, null, null, "5MJQY7" }, + { "36a50b18-b513-4f89-9dab-a0a10031ec48", null, null, null, 0ul, null, null, null, "JL022B" }, + { "355563e6-615d-443a-bec6-d6247f4dbaf7", null, null, null, 0ul, null, null, null, "K8H9PW" }, + { "1b4f9504-f486-4f8f-9588-24357b9ad0e0", null, null, null, 0ul, null, null, null, "C6FSMT" }, + { "0eae9b66-e00d-42cf-b41f-d6b7ebdff800", null, null, null, 0ul, null, null, null, "XV8U1U" }, + { "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0", null, null, null, 0ul, null, null, null, "SMBG3Q" }, + { "63e8a280-90c4-4c9b-9572-74f9d4278cd4", null, null, null, 0ul, null, null, null, "WHM9CF" } + }); + + migrationBuilder.InsertData( + table: "Projects", + columns: new[] { "Id", "CreatedTime", "CreatedUserId", "CreatedUserName", "IsDeleted", "UpdatedTime", "UpdatedUserId", "UpdatedUserName", "name", "serial_number", "type" }, + values: new object[,] + { + { "5e0e10fa-a4cc-4a7f-b5a5-9b0ca0e0a9af", null, null, null, 0ul, null, null, null, "宁波杭州湾新区南部新城海泉湾博华路市政工程项目/宁波杭州湾新区南部新城海泉湾规划二路市政工程项目", 65, 1 }, + { "562be9ce-e9fd-4d81-b8a2-636fbc25d9c1", null, null, null, 0ul, null, null, null, "宁波杭州湾新区海川大道(七塘公路—滨海一路)市政工程标段Ⅰ", 66, 1 }, + { "d52f2db9-07a5-4b77-add5-65c3b0a021e1", null, null, null, 0ul, null, null, null, "梅景路改造(冬青路-渡驾桥江)工程", 67, 1 }, + { "a9be40e3-99b3-4d94-aaaa-92711f853075", null, null, null, 0ul, null, null, null, "云飞路三期(康庄南路-长岛花园东侧路)工 程", 68, 1 }, + { "6e8d85df-e9ed-4386-9b15-7c19eaccb199", null, null, null, 0ul, null, null, null, "慈溪高新区基础设施建设四期", 72, 1 }, + { "594b2558-3c4d-4af5-a79e-17c74886b0b9", null, null, null, 0ul, null, null, null, "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)二标段", 70, 1 }, + { "a3667aa7-9403-4cc6-a85e-42b96815ac32", null, null, null, 0ul, null, null, null, "灵岩山路东延及沿山河南路延伸段工程一期", 71, 1 }, + { "85f873b8-ae62-4e5a-bab8-92332304368a", null, null, null, 0ul, null, null, null, "机场快速路南延工程(绕城高速至岳林东路南)施工Ⅰ标段", 64, 1 }, + { "9b654b10-36d8-4530-8390-1406dc38bd84", null, null, null, 0ul, null, null, null, "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)一标段", 69, 1 }, + { "a4054e2d-7f81-411e-8673-7b05938654f7", null, null, null, 0ul, null, null, null, "柴桥临港产业园横二路(纬中路-环区路)工程", 63, 1 }, + { "19a78c25-d576-4fa0-872e-ae431a27f1fe", null, null, null, 0ul, null, null, null, "霞浦污水泵站污水压力管工程", 53, 1 }, + { "44eebc4d-b467-477b-8c01-65931593722a", null, null, null, 0ul, null, null, null, "沿山干河、陈渡界北三河周边剩余地块绿带工程", 61, 1 }, + { "8424686e-6e8a-49ca-b1db-8635ebda2157", null, null, null, 0ul, null, null, null, "宁波北仑柴桥净化水厂EPC总承包项目", 60, 1 }, + { "9ef49c31-8224-4c03-91e8-821d7b36b377", null, null, null, 0ul, null, null, null, "姚江南岸滨江休闲带(机场路-青林渡路)工程", 59, 1 }, + { "37a5cc48-fe51-4493-b5bd-2dd0b42088b3", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅸ标段", 58, 1 }, + { "74c4cf12-880d-49f1-bd53-047bd7f858ac", null, null, null, 0ul, null, null, null, "铁路平改立新大路(329国道 -金牌公路)工程", 57, 1 }, + { "9f9d3b0f-0a9d-48cf-98a3-9ec2d805e8a9", null, null, null, 0ul, null, null, null, "姚江东路(环城北路-机场路)工程I标段", 56, 1 }, + { "320907e0-5092-467c-ad38-9883af7e7694", null, null, null, 0ul, null, null, null, "新长邱线拓宽改造工程(施工)2标段", 55, 1 }, + { "92d860ce-94f5-4468-976d-6f4bc6d3a005", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅱ标段", 54, 1 }, + { "996d15ac-467d-4ff8-8935-76517cc84fb7", null, null, null, 0ul, null, null, null, "慈溪滨海经济开发区龙山滨海新城蓬苑路(横五路-横四路)工程", 73, 1 }, + { "cb5725b1-06cd-42da-abc4-c4412cecb627", null, null, null, 0ul, null, null, null, "三官堂大桥及接线(江南路至中官西路)工程接线部分II标段", 52, 1 }, + { "5c4796db-5b4a-4259-b8b1-d89846d984ee", null, null, null, 0ul, null, null, null, "铸锋路(康庄北路-通园路)拓宽改建工程Ⅱ标段", 62, 1 }, + { "91fd6b72-a524-480d-aadf-6e3bae73fbcb", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4001标段(翠柏里站)施工", 74, 2 }, + { "c04fa383-a9b0-47e4-a91c-9f1b657ac55b", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第二批)TJ4004标段施工", 84, 2 }, + { "a25b1db3-23a2-4ea5-b10c-f020325c292f", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程供电系统安装施工Ⅱ标段", 76, 2 }, + { "88b56348-6d04-45b4-8dc5-ba4c3b5303a7", null, null, null, 0ul, null, null, null, "余姚市海塘除险治江围涂四期工程--临海北顺堤堤顶道路、堤岸防护及河道配套工程", 98, 5 }, + { "4dcf10bd-93e6-43aa-8e18-9410392a8701", null, null, null, 0ul, null, null, null, "梅山磨头碶移位及配套河道工程", 97, 5 }, + { "4743c1eb-7135-4ea9-81f8-cf6d825e0ad5", null, null, null, 0ul, null, null, null, "沿海中线北仑郭巨段(郭巨互通-北堤互通)拓宽工程", 96, 4 }, + { "f3ed2aeb-ac40-4580-bb37-008bea343731", null, null, null, 0ul, null, null, null, "明州大道(洞桥至云龙段)工程第IV-2合同段", 95, 4 }, + { "88909223-8273-4b3d-9b56-ba32e038ed35", null, null, null, 0ul, null, null, null, "71省道盛宁线东陈至茅洋段改建工程", 94, 4 }, + { "b23702d5-9c73-4c79-aa63-fe2245f4d65d", null, null, null, 0ul, null, null, null, "38省道宁海桥头胡至深甽段改建工程", 93, 4 }, + { "1d3333dd-ed50-4dcc-b210-2d44190febde", null, null, null, 0ul, null, null, null, "新乐220千伏变电站整体改造工程", 92, 3 }, + { "25d0bc9e-30db-4768-9996-624312a0450c", null, null, null, 0ul, null, null, null, "协丰220千伏变电站工程", 91, 3 }, + { "d25f90c3-8125-4821-86cf-fbd3b879dd4b", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第四批)TJ4003标段施工", 90, 2 }, + { "8fce8773-1eb4-4031-b9bd-60ce0fab8c18", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程JDSG4004标段车站机电安装施工", 89, 2 }, + { "051a42c4-d157-47db-9887-12d5ea917922", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4011标段施工", 75, 2 }, + { "1a317eb0-a5fd-420a-b273-ca9d6a006921", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程地下段轨道工程施工I标段", 88, 2 }, + { "b05f4d26-1b04-4a23-a295-8848ce4aa73e", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4012标段施工", 86, 2 }, + { "40b27864-99c0-4d04-889c-5f9ff17cf726", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4018标", 85, 2 }, + { "bddeb30e-59bb-462b-bb69-5fe557b20614", null, null, null, 0ul, null, null, null, "梅山保税港区港湾路(二期)工程", 51, 1 }, + { "a3f6eea4-0349-4ddd-bfa7-33c0427bc90a", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程地下段轨道工程施工Ⅱ标段", 83, 2 }, + { "aa28f286-cc5d-4051-978d-43ef4014cf5e", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4016标", 82, 2 }, + { "1ed52273-3c72-4f79-919c-0c4020e4cdf3", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第四批)TJ4017标段施工", 81, 2 }, + { "d7c8a941-e37a-4889-b862-2b4c2fb8a992", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第四批)TJ4008标段施工", 80, 2 }, + { "e4f7391b-a0a4-48d0-a803-4be81e52bbb9", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线工程JDSG4006标段车站机电安装施工", 79, 2 }, + { "9c670713-7d5f-4372-ab7c-246e8e6dd3cf", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程TJ4013标段施工", 78, 2 }, + { "5a9e2016-1c56-4435-8aed-4221bff231da", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第一批)TJ4015标段施工", 77, 2 }, + { "424b6a6a-8e16-4e5e-936b-25a73a3c244b", null, null, null, 0ul, null, null, null, "宁波市轨道交通4号线土建工程(第五批)TJ4007标段施工", 87, 2 }, + { "7f046001-a58d-400e-b97d-d4b55f79b6eb", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅲ标段", 50, 1 }, + { "c970ff56-ff36-4c64-a8a4-832c92e2f4bf", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅶ标段", 40, 1 }, + { "49dd82e4-b9b9-4d26-ae87-9f9092f367d1", null, null, null, 0ul, null, null, null, "慈溪市北部污水处理厂提标改造工程", 48, 1 }, + { "1e9371d1-8b01-4c55-9431-000a3fffc0b4", null, null, null, 0ul, null, null, null, "宁波大红鹰学院象山影视学院工程(二期)", 21, 0 }, + { "23a38e3e-a77c-463c-902e-02088707d1ca", null, null, null, 0ul, null, null, null, "东部新城核心区以东片区C1-6#地块邱隘镇九年一贯制学校工程", 20, 0 }, + { "62eb67a1-2584-4b9e-b663-9c6c1b700d42", null, null, null, 0ul, null, null, null, "新能源技术与材料综合研发平台- 核用碳化硅纤维及复合材料研发及应用平台项目", 19, 0 }, + { "f640a90e-71c1-4142-afb4-b9d68f9ac08f", null, null, null, 0ul, null, null, null, "宁波海关宁海办事处检测报关代理服务中心项目", 18, 0 }, + { "4c9d4677-539c-45c8-8885-45f9d2c1c15e", null, null, null, 0ul, null, null, null, "宁波市残疾人康复中心(宁波市康复医院)扩建工程", 17, 0 }, + { "056e05e3-2ae5-4db5-b976-f4a1809a4d1a", null, null, null, 0ul, null, null, null, "北仑外国语学校工程", 16, 0 }, + { "ef61f197-b194-4190-ab74-f5f78c160bd3", null, null, null, 0ul, null, null, null, "慈溪市明月湖幼儿园", 15, 0 }, + { "62696ca2-719e-41df-8bad-e182efe84963", null, null, null, 0ul, null, null, null, "宁波市海曙区段塘学校扩建工程", 14, 0 }, + { "9c16ca23-f3d8-44c9-92d7-d08d6b64e4f9", null, null, null, 0ul, null, null, null, "镇海区中心学校新城校区项目", 13, 0 }, + { "2b257857-4905-4176-bebe-bc8b99eef73b", null, null, null, 0ul, null, null, null, "庄市中心学校迁建工程", 12, 0 }, + { "5c504c5d-9d69-4cf8-a483-c8699f0b517e", null, null, null, 0ul, null, null, null, "余姚市人民医院肿瘤治疗中心项目", 11, 0 }, + { "21a336c4-f730-4244-ae5a-66d4e0f8f356", null, null, null, 0ul, null, null, null, "北京航空航天大学宁波创新研究院(研究生院和国际交流中心)一期(实验用房)", 10, 0 }, + { "bb3eee7a-4846-4177-b377-fd2804d4db72", null, null, null, 0ul, null, null, null, "鄞州区钟公庙第二初级中学工程", 9, 0 }, + { "ecaf4b26-b27e-4eed-bbf2-0deaf52495fa", null, null, null, 0ul, null, null, null, "大庆北路地段配套学校(二期)", 8, 0 }, + { "8118f5fd-8082-4186-a5b4-32490cbadb19", null, null, null, 0ul, null, null, null, "宁波市职业技术教育中心学校(荷池校区) 改扩建项目", 7, 0 }, + { "686d2b36-30a8-47c4-9050-db601d8dcb8c", null, null, null, 0ul, null, null, null, "宁海县妇幼保健院保健大楼工程", 6, 0 }, + { "26f148e5-a44e-47d5-90aa-49136b1efb6d", null, null, null, 0ul, null, null, null, "慈城新城高中项目", 5, 0 }, + { "94e3b06e-2fa6-4830-8432-383305b237b8", null, null, null, 0ul, null, null, null, "太平鸟高新区男装办公楼项目", 4, 0 }, + { "03d59313-3e30-4345-920e-e21455c11228", null, null, null, 0ul, null, null, null, "高新区滨江绿带整治工程五期(翔海路—大东江)I标段", 3, 0 }, + { "3e458131-6318-4e27-935e-2e4a85c877b1", null, null, null, 0ul, null, null, null, "宁波诺丁汉大学图书馆及学习中心项目", 2, 0 }, + { "5921ad9e-7027-446d-aae3-899ad388404b", null, null, null, 0ul, null, null, null, "浙江纺织服装职业技术学院中英时尚设计学院综合楼项目", 1, 0 }, + { "1f9ae2cf-c7c2-4a57-b678-b0fca4bf4959", null, null, null, 0ul, null, null, null, "中国·浙江海洋运动中心(亚帆中心)工程", 22, 0 }, + { "c0e62c16-bf78-4d82-8dc6-442c1f0c0adc", null, null, null, 0ul, null, null, null, "宁波市黄湖监狱迁建项目I标段、Ⅱ标段、Ⅲ标段、装修工程", 23, 0 }, + { "8be3e94f-0b17-4c97-9b9d-021b922fc6a2", null, null, null, 0ul, null, null, null, "新潮塘区块九年一贯制学校新建工程", 24, 0 }, + { "fad24cde-bd7c-40cf-a7e2-ce46e396f489", null, null, null, 0ul, null, null, null, "顾国和中学(爱国中学)工程(门卫、教学楼A-C、教学楼D、综合楼、食堂)", 25, 0 }, + { "8a5fc13a-d5aa-44b2-99dd-c2834ac00520", null, null, null, 0ul, null, null, null, "杭甬复线威海互通连接线一期工程(施工)Ⅱ标段", 47, 1 }, + { "b38cedeb-f524-44ef-be8f-6cd1f7c54b59", null, null, null, 0ul, null, null, null, "杭甬复线威海互通连接线一期工程(施工)Ⅰ标段", 46, 1 }, + { "016e39e3-6fb9-4d8f-a5f8-2478b4e389e1", null, null, null, 0ul, null, null, null, "杭州湾新区滨海新城启动区银滩路等六条路市政工程", 45, 1 }, + { "7e1989e6-bf05-4fbc-b397-dc74069d301d", null, null, null, 0ul, null, null, null, "宁波杭州湾新区南部新城海泉湾规划三路市政工程", 44, 1 }, + { "b9690320-4839-40bb-8703-3b2724ce0578", null, null, null, 0ul, null, null, null, "会展路(盛梅路-沙洲路)及南侧河道绿地工程", 43, 1 }, + { "35870caf-f7f5-4302-95d9-fb0c05462c40", null, null, null, 0ul, null, null, null, "鄞奉路(新典路-三孔碶桥)道路工程", 42, 1 }, + { "9742d735-e769-4355-8b26-5067a35b75bf", null, null, null, 0ul, null, null, null, "西二环北延工程(明州路-中横线)", 41, 1 }, + { "f2dc17f8-7bd1-4f6e-b16a-674e1ec34ed0", null, null, null, 0ul, null, null, null, "庄桥机场周边区域水环境治理工程(江北大河整治工程二期庄桥段)", 99, 5 }, + { "5a5dffca-ad94-476a-a25d-b68df2fd4908", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅷ标段", 39, 1 }, + { "2bc85650-b86d-44de-a152-970928376305", null, null, null, 0ul, null, null, null, "三官堂大桥及接线(江南路至中官西路)工程I标", 38, 1 }, + { "a4d7196d-b9f3-439f-8258-4da4c04b177a", null, null, null, 0ul, null, null, null, "通途路(世纪大道~东外环)综合管廊工程施工Ⅱ标段", 49, 1 }, + { "54e26c4e-ffc4-4493-bb4c-3f3f66f46019", null, null, null, 0ul, null, null, null, "永泰公园", 37, 1 }, + { "c12f36c4-6887-4beb-8b90-1c5b68006af1", null, null, null, 0ul, null, null, null, "甬江北岸大庆北路(湖东路-怡西街)道路工程I标段", 35, 1 }, + { "03265409-52b0-43dc-85b5-0698a0367211", null, null, null, 0ul, null, null, null, "杭甬复线威海互通连接线一期工程(施工)Ⅲ标段", 34, 1 }, + { "68f25778-4b2f-4a91-a2dc-640a0622f389", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅳ标段", 33, 1 }, + { "e7ccba65-414f-4501-af69-4d6722e21d86", null, null, null, 0ul, null, null, null, "三官堂大桥及接线(江南路至中官西路)工程(主桥)", 32, 1 }, + { "0c3672ab-23f4-4a8d-9de3-97fe401f3aee", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅵ标段", 31, 1 }, + { "aa0e4017-2304-431a-b5ed-b725a77cb810", null, null, null, 0ul, null, null, null, "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅴ标段", 30, 1 }, + { "39d80b14-8735-4710-bacb-432fd12dc309", null, null, null, 0ul, null, null, null, "白沙路街道后油车股份经济合作社综合服务楼", 29, 0 }, + { "09955588-0f17-479b-ba4b-c1f90ca58a85", null, null, null, 0ul, null, null, null, "宁波科学中学新建项目", 28, 0 }, + { "dc22af65-c261-4245-b319-8908fc2e77f6", null, null, null, 0ul, null, null, null, "中科院上海药物所宁波临床前研究中心", 27, 0 }, + { "6e52bfbf-4095-4189-b2f7-37eb1ced0ec9", null, null, null, 0ul, null, null, null, "庄市街道同心湖幼儿园(暂名)工程", 26, 0 }, + { "1d6aafe6-457e-4143-82fe-b1334bdabc45", null, null, null, 0ul, null, null, null, "机场快速路南延(鄞州大道-绕城高速)工程施工Ⅰ标段", 36, 1 }, + { "64d400e2-0247-4c74-a02e-f32753292095", null, null, null, 0ul, null, null, null, "掌起镇任佳溪村防洪分流(小流域治理)工程", 100, 5 } + }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "08c8ad90-b44f-4270-890c-8447f086d579"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "0eae9b66-e00d-42cf-b41f-d6b7ebdff800"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "1b4f9504-f486-4f8f-9588-24357b9ad0e0"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "355563e6-615d-443a-bec6-d6247f4dbaf7"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "36a50b18-b513-4f89-9dab-a0a10031ec48"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "3d135a79-97bf-4f10-bba5-7bed90e911a3"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "439260c8-54de-48c3-977d-fe2c11ae7fe6"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "510e42da-856e-4d93-a099-d7e998dfbd7a"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "63e8a280-90c4-4c9b-9572-74f9d4278cd4"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "86c1a965-3229-46d6-a034-de4a06655d55"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "8db1378a-2deb-4d13-b49f-9490dd1ffd1d"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "90234cce-2f80-40cd-922e-d9d5ccd4a3c2"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "9a21e83c-06ae-44bc-9b9b-cecd92a0d606"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "c5401037-33b6-433f-9dd2-054dfb93a09e"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "d3674cdd-142f-4549-9766-4d2d3991cd76"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "e7f6f049-6bff-4479-b7fb-845c4db9bd01"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "eb83bc26-e942-4b98-8adc-02688bf1a32d"); + + migrationBuilder.DeleteData( + table: "Experts", + keyColumn: "Id", + keyValue: "f6afc724-1b88-4a70-8714-d047c20928a4"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "016e39e3-6fb9-4d8f-a5f8-2478b4e389e1"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "03265409-52b0-43dc-85b5-0698a0367211"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "03d59313-3e30-4345-920e-e21455c11228"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "051a42c4-d157-47db-9887-12d5ea917922"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "056e05e3-2ae5-4db5-b976-f4a1809a4d1a"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "09955588-0f17-479b-ba4b-c1f90ca58a85"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "0c3672ab-23f4-4a8d-9de3-97fe401f3aee"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "19a78c25-d576-4fa0-872e-ae431a27f1fe"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "1a317eb0-a5fd-420a-b273-ca9d6a006921"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "1d3333dd-ed50-4dcc-b210-2d44190febde"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "1d6aafe6-457e-4143-82fe-b1334bdabc45"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "1e9371d1-8b01-4c55-9431-000a3fffc0b4"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "1ed52273-3c72-4f79-919c-0c4020e4cdf3"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "1f9ae2cf-c7c2-4a57-b678-b0fca4bf4959"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "21a336c4-f730-4244-ae5a-66d4e0f8f356"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "23a38e3e-a77c-463c-902e-02088707d1ca"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "25d0bc9e-30db-4768-9996-624312a0450c"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "26f148e5-a44e-47d5-90aa-49136b1efb6d"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "2b257857-4905-4176-bebe-bc8b99eef73b"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "2bc85650-b86d-44de-a152-970928376305"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "320907e0-5092-467c-ad38-9883af7e7694"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "35870caf-f7f5-4302-95d9-fb0c05462c40"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "37a5cc48-fe51-4493-b5bd-2dd0b42088b3"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "39d80b14-8735-4710-bacb-432fd12dc309"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "3e458131-6318-4e27-935e-2e4a85c877b1"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "40b27864-99c0-4d04-889c-5f9ff17cf726"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "424b6a6a-8e16-4e5e-936b-25a73a3c244b"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "44eebc4d-b467-477b-8c01-65931593722a"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "4743c1eb-7135-4ea9-81f8-cf6d825e0ad5"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "49dd82e4-b9b9-4d26-ae87-9f9092f367d1"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "4c9d4677-539c-45c8-8885-45f9d2c1c15e"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "4dcf10bd-93e6-43aa-8e18-9410392a8701"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "54e26c4e-ffc4-4493-bb4c-3f3f66f46019"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "562be9ce-e9fd-4d81-b8a2-636fbc25d9c1"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "5921ad9e-7027-446d-aae3-899ad388404b"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "594b2558-3c4d-4af5-a79e-17c74886b0b9"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "5a5dffca-ad94-476a-a25d-b68df2fd4908"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "5a9e2016-1c56-4435-8aed-4221bff231da"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "5c4796db-5b4a-4259-b8b1-d89846d984ee"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "5c504c5d-9d69-4cf8-a483-c8699f0b517e"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "5e0e10fa-a4cc-4a7f-b5a5-9b0ca0e0a9af"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "62696ca2-719e-41df-8bad-e182efe84963"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "62eb67a1-2584-4b9e-b663-9c6c1b700d42"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "64d400e2-0247-4c74-a02e-f32753292095"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "686d2b36-30a8-47c4-9050-db601d8dcb8c"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "68f25778-4b2f-4a91-a2dc-640a0622f389"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "6e52bfbf-4095-4189-b2f7-37eb1ced0ec9"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "6e8d85df-e9ed-4386-9b15-7c19eaccb199"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "74c4cf12-880d-49f1-bd53-047bd7f858ac"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "7e1989e6-bf05-4fbc-b397-dc74069d301d"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "7f046001-a58d-400e-b97d-d4b55f79b6eb"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "8118f5fd-8082-4186-a5b4-32490cbadb19"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "8424686e-6e8a-49ca-b1db-8635ebda2157"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "85f873b8-ae62-4e5a-bab8-92332304368a"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "88909223-8273-4b3d-9b56-ba32e038ed35"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "88b56348-6d04-45b4-8dc5-ba4c3b5303a7"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "8a5fc13a-d5aa-44b2-99dd-c2834ac00520"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "8be3e94f-0b17-4c97-9b9d-021b922fc6a2"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "8fce8773-1eb4-4031-b9bd-60ce0fab8c18"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "91fd6b72-a524-480d-aadf-6e3bae73fbcb"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "92d860ce-94f5-4468-976d-6f4bc6d3a005"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "94e3b06e-2fa6-4830-8432-383305b237b8"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "9742d735-e769-4355-8b26-5067a35b75bf"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "996d15ac-467d-4ff8-8935-76517cc84fb7"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "9b654b10-36d8-4530-8390-1406dc38bd84"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "9c16ca23-f3d8-44c9-92d7-d08d6b64e4f9"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "9c670713-7d5f-4372-ab7c-246e8e6dd3cf"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "9ef49c31-8224-4c03-91e8-821d7b36b377"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "9f9d3b0f-0a9d-48cf-98a3-9ec2d805e8a9"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "a25b1db3-23a2-4ea5-b10c-f020325c292f"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "a3667aa7-9403-4cc6-a85e-42b96815ac32"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "a3f6eea4-0349-4ddd-bfa7-33c0427bc90a"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "a4054e2d-7f81-411e-8673-7b05938654f7"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "a4d7196d-b9f3-439f-8258-4da4c04b177a"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "a9be40e3-99b3-4d94-aaaa-92711f853075"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "aa0e4017-2304-431a-b5ed-b725a77cb810"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "aa28f286-cc5d-4051-978d-43ef4014cf5e"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "b05f4d26-1b04-4a23-a295-8848ce4aa73e"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "b23702d5-9c73-4c79-aa63-fe2245f4d65d"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "b38cedeb-f524-44ef-be8f-6cd1f7c54b59"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "b9690320-4839-40bb-8703-3b2724ce0578"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "bb3eee7a-4846-4177-b377-fd2804d4db72"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "bddeb30e-59bb-462b-bb69-5fe557b20614"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "c04fa383-a9b0-47e4-a91c-9f1b657ac55b"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "c0e62c16-bf78-4d82-8dc6-442c1f0c0adc"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "c12f36c4-6887-4beb-8b90-1c5b68006af1"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "c970ff56-ff36-4c64-a8a4-832c92e2f4bf"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "cb5725b1-06cd-42da-abc4-c4412cecb627"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "d25f90c3-8125-4821-86cf-fbd3b879dd4b"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "d52f2db9-07a5-4b77-add5-65c3b0a021e1"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "d7c8a941-e37a-4889-b862-2b4c2fb8a992"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "dc22af65-c261-4245-b319-8908fc2e77f6"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "e4f7391b-a0a4-48d0-a803-4be81e52bbb9"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "e7ccba65-414f-4501-af69-4d6722e21d86"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "ecaf4b26-b27e-4eed-bbf2-0deaf52495fa"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "ef61f197-b194-4190-ab74-f5f78c160bd3"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "f2dc17f8-7bd1-4f6e-b16a-674e1ec34ed0"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "f3ed2aeb-ac40-4580-bb37-008bea343731"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "f640a90e-71c1-4142-afb4-b9d68f9ac08f"); + + migrationBuilder.DeleteData( + table: "Projects", + keyColumn: "Id", + keyValue: "fad24cde-bd7c-40cf-a7e2-ce46e396f489"); + } + } +} diff --git a/20220330_Vote/Ewide.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs b/20220330_Vote/Ewide.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs index 25435c5..141037f 100644 --- a/20220330_Vote/Ewide.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs +++ b/20220330_Vote/Ewide.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs @@ -15,85 +15,7 @@ namespace Ewide.Database.Migrations.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("Relational:MaxIdentifierLength", 64) - .HasAnnotation("ProductVersion", "5.0.5"); - - modelBuilder.Entity("Ewide.Application.Entity.BsHouseProjectInfo", b => - { - b.Property("Id") - .HasColumnType("varchar(36)") - .HasColumnName("Id") - .HasComment("Id主键"); - - b.Property("AreaId") - .IsRequired() - .HasMaxLength(36) - .HasColumnType("varchar(36) CHARACTER SET utf8mb4") - .HasComment("区域ID"); - - b.Property("AreaName") - .HasMaxLength(500) - .HasColumnType("varchar(500) CHARACTER SET utf8mb4") - .HasComment("区域名称"); - - b.Property("CreatedTime") - .HasColumnType("datetime") - .HasComment("创建时间"); - - b.Property("CreatedUserId") - .HasColumnType("varchar(36)") - .HasColumnName("CreatedUserId") - .HasComment("创建者Id"); - - b.Property("CreatedUserName") - .HasMaxLength(20) - .HasColumnType("varchar(20) CHARACTER SET utf8mb4") - .HasComment("创建者名称"); - - b.Property("IsDeleted") - .HasColumnType("bit") - .HasColumnName("IsDeleted") - .HasComment("软删除标记"); - - b.Property("Name") - .IsRequired() - .HasMaxLength(100) - .HasColumnType("varchar(100) CHARACTER SET utf8mb4") - .HasComment("名称"); - - b.Property("Note") - .HasMaxLength(1000) - .HasColumnType("varchar(1000) CHARACTER SET utf8mb4") - .HasComment("备注"); - - b.Property("Sort") - .HasColumnType("int") - .HasComment("排序"); - - b.Property("Type") - .HasColumnType("int") - .HasComment("类型"); - - b.Property("UpdatedTime") - .HasColumnType("datetime") - .HasComment("更新时间"); - - b.Property("UpdatedUserId") - .HasColumnType("varchar(36)") - .HasColumnName("UpdatedUserId") - .HasComment("修改者Id"); - - b.Property("UpdatedUserName") - .HasMaxLength(20) - .HasColumnType("varchar(20) CHARACTER SET utf8mb4") - .HasComment("修改者名称"); - - b.HasKey("Id"); - - b.ToTable("bs_house_projectinfo"); - - b - .HasComment("项目表"); - }); + .HasAnnotation("ProductVersion", "5.0.15"); modelBuilder.Entity("Ewide.Core.SysApp", b => { @@ -962,6 +884,10 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("创建者名称"); + b.Property("ExtCode") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("扩展编码,以json形式存储"); + b.Property("IsDeleted") .HasColumnType("bit") .HasColumnName("IsDeleted") @@ -2078,50 +2004,6 @@ namespace Ewide.Database.Migrations.Migrations Status = 0, TypeId = "0f1b8660-d932-4a53-a681-a38bebae91e0", Value = "停止" - }, - new - { - Id = "6a01e89a-6bbb-4822-b862-8e566b6dde74", - Code = "1", - IsDeleted = 0ul, - Remark = "市级编号", - Sort = 1, - Status = 0, - TypeId = "2815b28b-e51d-4dfb-b549-2eaa27d8c23d", - Value = "市级编号" - }, - new - { - Id = "fc843478-1e98-47e8-aaf3-12442fd4cbfc", - Code = "2", - IsDeleted = 0ul, - Remark = "区县编号", - Sort = 2, - Status = 0, - TypeId = "2815b28b-e51d-4dfb-b549-2eaa27d8c23d", - Value = "区县编号" - }, - new - { - Id = "dad01f31-bb7f-4696-9e53-ad6d58b366a7", - Code = "3", - IsDeleted = 0ul, - Remark = "乡镇街道编号", - Sort = 3, - Status = 0, - TypeId = "2815b28b-e51d-4dfb-b549-2eaa27d8c23d", - Value = "乡镇街道编号" - }, - new - { - Id = "514dbb46-ae79-4c07-96fa-496983765609", - Code = "4", - IsDeleted = 0ul, - Remark = "社区/村委会编号", - Sort = 4, - Status = 0, - TypeId = "2815b28b-e51d-4dfb-b549-2eaa27d8c23d", - Value = "社区/村委会编号" }); }); @@ -2159,6 +2041,15 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("名称"); + b.Property("Pid") + .HasColumnType("varchar(36)") + .HasColumnName("Pid") + .HasComment("父Id"); + + b.Property("Pids") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("父Ids"); + b.Property("Remark") .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("备注"); @@ -2193,16 +2084,6 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("字典类型表"); b.HasData( - new - { - Id = "2815b28b-e51d-4dfb-b549-2eaa27d8c23d", - Code = "dic_areacode_type", - IsDeleted = 0ul, - Name = "区域编码类型", - Remark = "区域编码类型", - Sort = 0, - Status = 0 - }, new { Id = "b0cfa91c-1189-4f39-bc5a-f035885d0604", @@ -3647,115 +3528,6 @@ namespace Ewide.Database.Migrations.Migrations Weight = 1 }, new - { - Id = "235d9a5f-2469-4f17-a98c-45824513d5ae", - Application = "system", - Code = "org_areaManage", - Component = "system/area/index", - IsDeleted = 0ul, - Name = "区域管理", - OpenType = 1, - Pid = "f7d60a3f-2de3-4dca-a1d6-385cee9638bc", - Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],", - Router = "/area", - Sort = 0, - Status = 0, - Type = 1, - Visible = 1ul, - VisibleParent = 0ul, - Weight = 1 - }, - new - { - Id = "d5130f78-5d8d-4c8d-b433-f8e6796f0d12", - Application = "system", - Code = "org_area_add", - IsDeleted = 0ul, - Name = "区域增加", - OpenType = 0, - Permission = "sysArea:add", - Pid = "235d9a5f-2469-4f17-a98c-45824513d5ae", - Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[235d9a5f-2469-4f17-a98c-45824513d5ae],", - Sort = 100, - Status = 0, - Type = 2, - Visible = 1ul, - VisibleParent = 0ul, - Weight = 1 - }, - new - { - Id = "4f44d697-5421-487e-9d31-3161aee4b7cc", - Application = "system", - Code = "org_area_edit", - IsDeleted = 0ul, - Name = "区域编辑", - OpenType = 0, - Permission = "sysArea:edit", - Pid = "235d9a5f-2469-4f17-a98c-45824513d5ae", - Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[235d9a5f-2469-4f17-a98c-45824513d5ae],", - Sort = 100, - Status = 0, - Type = 2, - Visible = 1ul, - VisibleParent = 0ul, - Weight = 1 - }, - new - { - Id = "142803a5-63de-48be-afa9-3bde8640d580", - Application = "system", - Code = "org_area_delete", - IsDeleted = 0ul, - Name = "区域删除", - OpenType = 0, - Permission = "sysArea:delete", - Pid = "235d9a5f-2469-4f17-a98c-45824513d5ae", - Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[235d9a5f-2469-4f17-a98c-45824513d5ae],", - Sort = 100, - Status = 0, - Type = 2, - Visible = 1ul, - VisibleParent = 0ul, - Weight = 1 - }, - new - { - Id = "e7f28efd-2ac4-45c6-a73b-57ef7c5b8c8b", - Application = "system", - Code = "org_area_page", - IsDeleted = 0ul, - Name = "区域查询", - OpenType = 0, - Permission = "sysArea:page", - Pid = "235d9a5f-2469-4f17-a98c-45824513d5ae", - Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[235d9a5f-2469-4f17-a98c-45824513d5ae],", - Sort = 100, - Status = 0, - Type = 2, - Visible = 1ul, - VisibleParent = 0ul, - Weight = 1 - }, - new - { - Id = "8645a374-6939-4dd8-a827-c6a39771f33d", - Application = "system", - Code = "org_area_tree", - IsDeleted = 0ul, - Name = "区域树", - OpenType = 0, - Permission = "sysArea:tree", - Pid = "235d9a5f-2469-4f17-a98c-45824513d5ae", - Pids = "[00000000-0000-0000-0000-000000000000],[f7d60a3f-2de3-4dca-a1d6-385cee9638bc],[235d9a5f-2469-4f17-a98c-45824513d5ae],", - Sort = 100, - Status = 0, - Type = 2, - Visible = 1ul, - VisibleParent = 0ul, - Weight = 1 - }, - new { Id = "4c00d8c1-e871-4231-8b46-a3e3f3fd400c", Application = "system", @@ -5874,7 +5646,11 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnName("Id") .HasComment("Id主键"); - b.Property("CancelTime") + b.Property("Attachments") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("上传文件id集合"); + + b.Property("CancelTime") .HasColumnType("datetime") .HasComment("撤回时间"); @@ -5910,7 +5686,7 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("发布机构名称"); - b.Property("PublicTime") + b.Property("PublicTime") .HasColumnType("datetime") .HasComment("发布时间"); @@ -5959,6 +5735,30 @@ namespace Ewide.Database.Migrations.Migrations modelBuilder.Entity("Ewide.Core.SysNoticeUser", b => { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + b.Property("NoticeId") .HasColumnType("varchar(36)") .HasColumnName("NoticeId") @@ -5968,15 +5768,31 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("int") .HasComment("状态"); - b.Property("ReadTime") + b.Property("ReadTime") .HasColumnType("datetime") .HasComment("阅读时间"); + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + b.Property("UserId") .HasColumnType("varchar(36)") .HasColumnName("UserId") .HasComment("用户Id"); + b.HasKey("Id"); + b.ToTable("sys_notice_user"); b @@ -6117,7 +5933,8 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("软删除标记"); b.Property("Name") - .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") .HasComment("名称"); b.Property("Pid") @@ -6145,6 +5962,10 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("电话"); + b.Property("Type") + .HasColumnType("int") + .HasComment("机构类型"); + b.Property("UpdatedTime") .HasColumnType("datetime") .HasComment("更新时间"); @@ -6179,7 +6000,8 @@ namespace Ewide.Database.Migrations.Migrations Pids = "[00000000-0000-0000-0000-000000000000],", Remark = "华夏集团", Sort = 100, - Status = 0 + Status = 0, + Type = 0 }, new { @@ -6191,7 +6013,8 @@ namespace Ewide.Database.Migrations.Migrations Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", Remark = "华夏集团北京分公司", Sort = 100, - Status = 0 + Status = 0, + Type = 0 }, new { @@ -6203,7 +6026,8 @@ namespace Ewide.Database.Migrations.Migrations Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],", Remark = "华夏集团成都分公司", Sort = 100, - Status = 0 + Status = 0, + Type = 0 }, new { @@ -6215,7 +6039,8 @@ namespace Ewide.Database.Migrations.Migrations Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[8a2271d6-5bda-4544-bdd3-27e53a8b418e],", Remark = "华夏集团北京分公司研发部", Sort = 100, - Status = 0 + Status = 0, + Type = 0 }, new { @@ -6227,7 +6052,8 @@ namespace Ewide.Database.Migrations.Migrations Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[8a2271d6-5bda-4544-bdd3-27e53a8b418e],", Remark = "华夏集团北京分公司企划部", Sort = 100, - Status = 0 + Status = 0, + Type = 0 }, new { @@ -6239,7 +6065,8 @@ namespace Ewide.Database.Migrations.Migrations Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[127c0a5d-43ac-4370-b313-082361885aca],", Remark = "华夏集团成都分公司市场部", Sort = 100, - Status = 0 + Status = 0, + Type = 0 }, new { @@ -6251,7 +6078,8 @@ namespace Ewide.Database.Migrations.Migrations Pids = "[00000000-0000-0000-0000-000000000000],[12d888de-f55d-4c88-b0a0-7c3510664d97],[127c0a5d-43ac-4370-b313-082361885aca],", Remark = "华夏集团成都分公司财务部", Sort = 100, - Status = 0 + Status = 0, + Type = 0 }, new { @@ -6263,7 +6091,8 @@ namespace Ewide.Database.Migrations.Migrations 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 + Status = 0, + Type = 0 }); }); @@ -6611,6 +6440,28 @@ namespace Ewide.Database.Migrations.Migrations b .HasComment("租户表"); + + b.HasData( + new + { + Id = "506a14b7-882d-4548-96fa-a55dbe79bfa1", + Connection = "Data Source=./Ewide.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Email = "zuohuaijun@163.com", + Host = "localhost:5566", + IsDeleted = 0ul, + Name = "默认租户", + Phone = "18020030720" + }, + new + { + Id = "eed8c4a6-70d8-49fd-9566-21a6966bb702", + Connection = "Data Source=./Dilon_1.db", + CreatedTime = new DateTime(2021, 4, 3, 0, 0, 0, 0, DateTimeKind.Unspecified), + Host = "localhost:5588", + IsDeleted = 0ul, + Name = "其他租户" + }); }); modelBuilder.Entity("Ewide.Core.SysTimer", b => @@ -6642,10 +6493,18 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("Cron表达式"); + b.Property("DoOnce") + .HasColumnType("tinyint(1)") + .HasComment("只执行一次"); + b.Property("EndTime") .HasColumnType("datetime") .HasComment("结束时间"); + b.Property("ExecuteType") + .HasColumnType("int") + .HasComment("执行类型"); + b.Property("Headers") .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("Headers"); @@ -6659,10 +6518,6 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnName("IsDeleted") .HasComment("软删除标记"); - b.Property("JobGroup") - .HasColumnType("longtext CHARACTER SET utf8mb4") - .HasComment("任务分组"); - b.Property("JobName") .HasColumnType("longtext CHARACTER SET utf8mb4") .HasComment("任务名称"); @@ -6687,9 +6542,13 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("int") .HasComment("执行次数"); - b.Property("TriggerType") + b.Property("StartNow") + .HasColumnType("tinyint(1)") + .HasComment("立即执行"); + + b.Property("TimerType") .HasColumnType("int") - .HasComment("触发器类型"); + .HasComment("定时器类型"); b.Property("UpdatedTime") .HasColumnType("datetime") @@ -6717,13 +6576,15 @@ namespace Ewide.Database.Migrations.Migrations { Id = "971bc338-0c03-46d4-8113-c7738d54ea18", BeginTime = new DateTime(2021, 3, 21, 0, 0, 0, 0, DateTimeKind.Local), + DoOnce = false, + ExecuteType = 0, Interval = 30, IsDeleted = 0ul, - JobGroup = "默认分组", JobName = "百度api", RequestType = 2, RequestUrl = "https://www.baidu.com", - TriggerType = 1 + StartNow = false, + TimerType = 0 }); }); @@ -6805,6 +6666,10 @@ namespace Ewide.Database.Migrations.Migrations .HasColumnType("varchar(30) CHARACTER SET utf8mb4") .HasComment("手机"); + b.Property("SecurityLevel") + .HasColumnType("int") + .HasComment("密码安全级别"); + b.Property("Sex") .HasColumnType("int") .HasComment("性别-男_1、女_2"); @@ -6851,6 +6716,7 @@ namespace Ewide.Database.Migrations.Migrations Name = "superAdmin", Password = "e10adc3949ba59abbe56e057f20f883e", Phone = "18020030720", + SecurityLevel = 1, Sex = 1, Status = 0 }, @@ -6865,6 +6731,7 @@ namespace Ewide.Database.Migrations.Migrations Name = "admin", Password = "e10adc3949ba59abbe56e057f20f883e", Phone = "18020030720", + SecurityLevel = 1, Sex = 2, Status = 0 }, @@ -6879,6 +6746,7 @@ namespace Ewide.Database.Migrations.Migrations Name = "zuohuaijun", Password = "e10adc3949ba59abbe56e057f20f883e", Phone = "18020030720", + SecurityLevel = 1, Sex = 1, Status = 0 }); @@ -6950,6 +6818,1100 @@ namespace Ewide.Database.Migrations.Migrations .HasComment("用户角色表"); }); + modelBuilder.Entity("Vote.Services.Entities.Experts", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("login_code") + .HasMaxLength(36) + .HasColumnType("varchar(36) CHARACTER SET utf8mb4") + .HasComment("登录码"); + + b.HasKey("Id"); + + b.ToTable("Experts"); + + b.HasData( + new + { + Id = "08c8ad90-b44f-4270-890c-8447f086d579", + IsDeleted = 0ul, + login_code = "8YCDD9" + }, + new + { + Id = "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0", + IsDeleted = 0ul, + login_code = "SMBG3Q" + }, + new + { + Id = "0eae9b66-e00d-42cf-b41f-d6b7ebdff800", + IsDeleted = 0ul, + login_code = "XV8U1U" + }, + new + { + Id = "1b4f9504-f486-4f8f-9588-24357b9ad0e0", + IsDeleted = 0ul, + login_code = "C6FSMT" + }, + new + { + Id = "355563e6-615d-443a-bec6-d6247f4dbaf7", + IsDeleted = 0ul, + login_code = "K8H9PW" + }, + new + { + Id = "36a50b18-b513-4f89-9dab-a0a10031ec48", + IsDeleted = 0ul, + login_code = "JL022B" + }, + new + { + Id = "3d135a79-97bf-4f10-bba5-7bed90e911a3", + IsDeleted = 0ul, + login_code = "5MJQY7" + }, + new + { + Id = "439260c8-54de-48c3-977d-fe2c11ae7fe6", + IsDeleted = 0ul, + login_code = "ZFD5VL" + }, + new + { + Id = "510e42da-856e-4d93-a099-d7e998dfbd7a", + IsDeleted = 0ul, + login_code = "3GZDEW" + }, + new + { + Id = "63e8a280-90c4-4c9b-9572-74f9d4278cd4", + IsDeleted = 0ul, + login_code = "WHM9CF" + }, + new + { + Id = "86c1a965-3229-46d6-a034-de4a06655d55", + IsDeleted = 0ul, + login_code = "CWYB3P" + }, + new + { + Id = "8db1378a-2deb-4d13-b49f-9490dd1ffd1d", + IsDeleted = 0ul, + login_code = "2154MF" + }, + new + { + Id = "90234cce-2f80-40cd-922e-d9d5ccd4a3c2", + IsDeleted = 0ul, + login_code = "A4P3RZ" + }, + new + { + Id = "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d", + IsDeleted = 0ul, + login_code = "FNNUA9" + }, + new + { + Id = "9a21e83c-06ae-44bc-9b9b-cecd92a0d606", + IsDeleted = 0ul, + login_code = "97GFZQ" + }, + new + { + Id = "c5401037-33b6-433f-9dd2-054dfb93a09e", + IsDeleted = 0ul, + login_code = "TYVWMZ" + }, + new + { + Id = "d3674cdd-142f-4549-9766-4d2d3991cd76", + IsDeleted = 0ul, + login_code = "DH1HCC" + }, + new + { + Id = "e7f6f049-6bff-4479-b7fb-845c4db9bd01", + IsDeleted = 0ul, + login_code = "HCY26V" + }, + new + { + Id = "eb83bc26-e942-4b98-8adc-02688bf1a32d", + IsDeleted = 0ul, + login_code = "KZS4WS" + }, + new + { + Id = "f6afc724-1b88-4a70-8714-d047c20928a4", + IsDeleted = 0ul, + login_code = "XQLGQ8" + }); + }); + + modelBuilder.Entity("Vote.Services.Entities.Projects", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("name") + .HasColumnType("longtext CHARACTER SET utf8mb4") + .HasComment("工程名称"); + + b.Property("serial_number") + .HasColumnType("int") + .HasComment("项目序号"); + + b.Property("type") + .HasColumnType("int") + .HasComment("项目类型"); + + b.HasKey("Id"); + + b.ToTable("Projects"); + + b.HasData( + new + { + Id = "5921ad9e-7027-446d-aae3-899ad388404b", + IsDeleted = 0ul, + name = "浙江纺织服装职业技术学院中英时尚设计学院综合楼项目", + serial_number = 1, + type = 0 + }, + new + { + Id = "3e458131-6318-4e27-935e-2e4a85c877b1", + IsDeleted = 0ul, + name = "宁波诺丁汉大学图书馆及学习中心项目", + serial_number = 2, + type = 0 + }, + new + { + Id = "03d59313-3e30-4345-920e-e21455c11228", + IsDeleted = 0ul, + name = "高新区滨江绿带整治工程五期(翔海路—大东江)I标段", + serial_number = 3, + type = 0 + }, + new + { + Id = "94e3b06e-2fa6-4830-8432-383305b237b8", + IsDeleted = 0ul, + name = "太平鸟高新区男装办公楼项目", + serial_number = 4, + type = 0 + }, + new + { + Id = "26f148e5-a44e-47d5-90aa-49136b1efb6d", + IsDeleted = 0ul, + name = "慈城新城高中项目", + serial_number = 5, + type = 0 + }, + new + { + Id = "686d2b36-30a8-47c4-9050-db601d8dcb8c", + IsDeleted = 0ul, + name = "宁海县妇幼保健院保健大楼工程", + serial_number = 6, + type = 0 + }, + new + { + Id = "8118f5fd-8082-4186-a5b4-32490cbadb19", + IsDeleted = 0ul, + name = "宁波市职业技术教育中心学校(荷池校区) 改扩建项目", + serial_number = 7, + type = 0 + }, + new + { + Id = "ecaf4b26-b27e-4eed-bbf2-0deaf52495fa", + IsDeleted = 0ul, + name = "大庆北路地段配套学校(二期)", + serial_number = 8, + type = 0 + }, + new + { + Id = "bb3eee7a-4846-4177-b377-fd2804d4db72", + IsDeleted = 0ul, + name = "鄞州区钟公庙第二初级中学工程", + serial_number = 9, + type = 0 + }, + new + { + Id = "21a336c4-f730-4244-ae5a-66d4e0f8f356", + IsDeleted = 0ul, + name = "北京航空航天大学宁波创新研究院(研究生院和国际交流中心)一期(实验用房)", + serial_number = 10, + type = 0 + }, + new + { + Id = "5c504c5d-9d69-4cf8-a483-c8699f0b517e", + IsDeleted = 0ul, + name = "余姚市人民医院肿瘤治疗中心项目", + serial_number = 11, + type = 0 + }, + new + { + Id = "2b257857-4905-4176-bebe-bc8b99eef73b", + IsDeleted = 0ul, + name = "庄市中心学校迁建工程", + serial_number = 12, + type = 0 + }, + new + { + Id = "9c16ca23-f3d8-44c9-92d7-d08d6b64e4f9", + IsDeleted = 0ul, + name = "镇海区中心学校新城校区项目", + serial_number = 13, + type = 0 + }, + new + { + Id = "62696ca2-719e-41df-8bad-e182efe84963", + IsDeleted = 0ul, + name = "宁波市海曙区段塘学校扩建工程", + serial_number = 14, + type = 0 + }, + new + { + Id = "ef61f197-b194-4190-ab74-f5f78c160bd3", + IsDeleted = 0ul, + name = "慈溪市明月湖幼儿园", + serial_number = 15, + type = 0 + }, + new + { + Id = "056e05e3-2ae5-4db5-b976-f4a1809a4d1a", + IsDeleted = 0ul, + name = "北仑外国语学校工程", + serial_number = 16, + type = 0 + }, + new + { + Id = "4c9d4677-539c-45c8-8885-45f9d2c1c15e", + IsDeleted = 0ul, + name = "宁波市残疾人康复中心(宁波市康复医院)扩建工程", + serial_number = 17, + type = 0 + }, + new + { + Id = "f640a90e-71c1-4142-afb4-b9d68f9ac08f", + IsDeleted = 0ul, + name = "宁波海关宁海办事处检测报关代理服务中心项目", + serial_number = 18, + type = 0 + }, + new + { + Id = "62eb67a1-2584-4b9e-b663-9c6c1b700d42", + IsDeleted = 0ul, + name = "新能源技术与材料综合研发平台- 核用碳化硅纤维及复合材料研发及应用平台项目", + serial_number = 19, + type = 0 + }, + new + { + Id = "23a38e3e-a77c-463c-902e-02088707d1ca", + IsDeleted = 0ul, + name = "东部新城核心区以东片区C1-6#地块邱隘镇九年一贯制学校工程", + serial_number = 20, + type = 0 + }, + new + { + Id = "1e9371d1-8b01-4c55-9431-000a3fffc0b4", + IsDeleted = 0ul, + name = "宁波大红鹰学院象山影视学院工程(二期)", + serial_number = 21, + type = 0 + }, + new + { + Id = "1f9ae2cf-c7c2-4a57-b678-b0fca4bf4959", + IsDeleted = 0ul, + name = "中国·浙江海洋运动中心(亚帆中心)工程", + serial_number = 22, + type = 0 + }, + new + { + Id = "c0e62c16-bf78-4d82-8dc6-442c1f0c0adc", + IsDeleted = 0ul, + name = "宁波市黄湖监狱迁建项目I标段、Ⅱ标段、Ⅲ标段、装修工程", + serial_number = 23, + type = 0 + }, + new + { + Id = "8be3e94f-0b17-4c97-9b9d-021b922fc6a2", + IsDeleted = 0ul, + name = "新潮塘区块九年一贯制学校新建工程", + serial_number = 24, + type = 0 + }, + new + { + Id = "fad24cde-bd7c-40cf-a7e2-ce46e396f489", + IsDeleted = 0ul, + name = "顾国和中学(爱国中学)工程(门卫、教学楼A-C、教学楼D、综合楼、食堂)", + serial_number = 25, + type = 0 + }, + new + { + Id = "6e52bfbf-4095-4189-b2f7-37eb1ced0ec9", + IsDeleted = 0ul, + name = "庄市街道同心湖幼儿园(暂名)工程", + serial_number = 26, + type = 0 + }, + new + { + Id = "dc22af65-c261-4245-b319-8908fc2e77f6", + IsDeleted = 0ul, + name = "中科院上海药物所宁波临床前研究中心", + serial_number = 27, + type = 0 + }, + new + { + Id = "09955588-0f17-479b-ba4b-c1f90ca58a85", + IsDeleted = 0ul, + name = "宁波科学中学新建项目", + serial_number = 28, + type = 0 + }, + new + { + Id = "39d80b14-8735-4710-bacb-432fd12dc309", + IsDeleted = 0ul, + name = "白沙路街道后油车股份经济合作社综合服务楼", + serial_number = 29, + type = 0 + }, + new + { + Id = "aa0e4017-2304-431a-b5ed-b725a77cb810", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅴ标段", + serial_number = 30, + type = 1 + }, + new + { + Id = "0c3672ab-23f4-4a8d-9de3-97fe401f3aee", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅵ标段", + serial_number = 31, + type = 1 + }, + new + { + Id = "e7ccba65-414f-4501-af69-4d6722e21d86", + IsDeleted = 0ul, + name = "三官堂大桥及接线(江南路至中官西路)工程(主桥)", + serial_number = 32, + type = 1 + }, + new + { + Id = "68f25778-4b2f-4a91-a2dc-640a0622f389", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅳ标段", + serial_number = 33, + type = 1 + }, + new + { + Id = "03265409-52b0-43dc-85b5-0698a0367211", + IsDeleted = 0ul, + name = "杭甬复线威海互通连接线一期工程(施工)Ⅲ标段", + serial_number = 34, + type = 1 + }, + new + { + Id = "c12f36c4-6887-4beb-8b90-1c5b68006af1", + IsDeleted = 0ul, + name = "甬江北岸大庆北路(湖东路-怡西街)道路工程I标段", + serial_number = 35, + type = 1 + }, + new + { + Id = "1d6aafe6-457e-4143-82fe-b1334bdabc45", + IsDeleted = 0ul, + name = "机场快速路南延(鄞州大道-绕城高速)工程施工Ⅰ标段", + serial_number = 36, + type = 1 + }, + new + { + Id = "54e26c4e-ffc4-4493-bb4c-3f3f66f46019", + IsDeleted = 0ul, + name = "永泰公园", + serial_number = 37, + type = 1 + }, + new + { + Id = "2bc85650-b86d-44de-a152-970928376305", + IsDeleted = 0ul, + name = "三官堂大桥及接线(江南路至中官西路)工程I标", + serial_number = 38, + type = 1 + }, + new + { + Id = "5a5dffca-ad94-476a-a25d-b68df2fd4908", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅷ标段", + serial_number = 39, + type = 1 + }, + new + { + Id = "c970ff56-ff36-4c64-a8a4-832c92e2f4bf", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅶ标段", + serial_number = 40, + type = 1 + }, + new + { + Id = "9742d735-e769-4355-8b26-5067a35b75bf", + IsDeleted = 0ul, + name = "西二环北延工程(明州路-中横线)", + serial_number = 41, + type = 1 + }, + new + { + Id = "35870caf-f7f5-4302-95d9-fb0c05462c40", + IsDeleted = 0ul, + name = "鄞奉路(新典路-三孔碶桥)道路工程", + serial_number = 42, + type = 1 + }, + new + { + Id = "b9690320-4839-40bb-8703-3b2724ce0578", + IsDeleted = 0ul, + name = "会展路(盛梅路-沙洲路)及南侧河道绿地工程", + serial_number = 43, + type = 1 + }, + new + { + Id = "7e1989e6-bf05-4fbc-b397-dc74069d301d", + IsDeleted = 0ul, + name = "宁波杭州湾新区南部新城海泉湾规划三路市政工程", + serial_number = 44, + type = 1 + }, + new + { + Id = "016e39e3-6fb9-4d8f-a5f8-2478b4e389e1", + IsDeleted = 0ul, + name = "杭州湾新区滨海新城启动区银滩路等六条路市政工程", + serial_number = 45, + type = 1 + }, + new + { + Id = "b38cedeb-f524-44ef-be8f-6cd1f7c54b59", + IsDeleted = 0ul, + name = "杭甬复线威海互通连接线一期工程(施工)Ⅰ标段", + serial_number = 46, + type = 1 + }, + new + { + Id = "8a5fc13a-d5aa-44b2-99dd-c2834ac00520", + IsDeleted = 0ul, + name = "杭甬复线威海互通连接线一期工程(施工)Ⅱ标段", + serial_number = 47, + type = 1 + }, + new + { + Id = "49dd82e4-b9b9-4d26-ae87-9f9092f367d1", + IsDeleted = 0ul, + name = "慈溪市北部污水处理厂提标改造工程", + serial_number = 48, + type = 1 + }, + new + { + Id = "a4d7196d-b9f3-439f-8258-4da4c04b177a", + IsDeleted = 0ul, + name = "通途路(世纪大道~东外环)综合管廊工程施工Ⅱ标段", + serial_number = 49, + type = 1 + }, + new + { + Id = "7f046001-a58d-400e-b97d-d4b55f79b6eb", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅲ标段", + serial_number = 50, + type = 1 + }, + new + { + Id = "bddeb30e-59bb-462b-bb69-5fe557b20614", + IsDeleted = 0ul, + name = "梅山保税港区港湾路(二期)工程", + serial_number = 51, + type = 1 + }, + new + { + Id = "cb5725b1-06cd-42da-abc4-c4412cecb627", + IsDeleted = 0ul, + name = "三官堂大桥及接线(江南路至中官西路)工程接线部分II标段", + serial_number = 52, + type = 1 + }, + new + { + Id = "19a78c25-d576-4fa0-872e-ae431a27f1fe", + IsDeleted = 0ul, + name = "霞浦污水泵站污水压力管工程", + serial_number = 53, + type = 1 + }, + new + { + Id = "92d860ce-94f5-4468-976d-6f4bc6d3a005", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅱ标段", + serial_number = 54, + type = 1 + }, + new + { + Id = "320907e0-5092-467c-ad38-9883af7e7694", + IsDeleted = 0ul, + name = "新长邱线拓宽改造工程(施工)2标段", + serial_number = 55, + type = 1 + }, + new + { + Id = "9f9d3b0f-0a9d-48cf-98a3-9ec2d805e8a9", + IsDeleted = 0ul, + name = "姚江东路(环城北路-机场路)工程I标段", + serial_number = 56, + type = 1 + }, + new + { + Id = "74c4cf12-880d-49f1-bd53-047bd7f858ac", + IsDeleted = 0ul, + name = "铁路平改立新大路(329国道 -金牌公路)工程", + serial_number = 57, + type = 1 + }, + new + { + Id = "37a5cc48-fe51-4493-b5bd-2dd0b42088b3", + IsDeleted = 0ul, + name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅸ标段", + serial_number = 58, + type = 1 + }, + new + { + Id = "9ef49c31-8224-4c03-91e8-821d7b36b377", + IsDeleted = 0ul, + name = "姚江南岸滨江休闲带(机场路-青林渡路)工程", + serial_number = 59, + type = 1 + }, + new + { + Id = "8424686e-6e8a-49ca-b1db-8635ebda2157", + IsDeleted = 0ul, + name = "宁波北仑柴桥净化水厂EPC总承包项目", + serial_number = 60, + type = 1 + }, + new + { + Id = "44eebc4d-b467-477b-8c01-65931593722a", + IsDeleted = 0ul, + name = "沿山干河、陈渡界北三河周边剩余地块绿带工程", + serial_number = 61, + type = 1 + }, + new + { + Id = "5c4796db-5b4a-4259-b8b1-d89846d984ee", + IsDeleted = 0ul, + name = "铸锋路(康庄北路-通园路)拓宽改建工程Ⅱ标段", + serial_number = 62, + type = 1 + }, + new + { + Id = "a4054e2d-7f81-411e-8673-7b05938654f7", + IsDeleted = 0ul, + name = "柴桥临港产业园横二路(纬中路-环区路)工程", + serial_number = 63, + type = 1 + }, + new + { + Id = "85f873b8-ae62-4e5a-bab8-92332304368a", + IsDeleted = 0ul, + name = "机场快速路南延工程(绕城高速至岳林东路南)施工Ⅰ标段", + serial_number = 64, + type = 1 + }, + new + { + Id = "5e0e10fa-a4cc-4a7f-b5a5-9b0ca0e0a9af", + IsDeleted = 0ul, + name = "宁波杭州湾新区南部新城海泉湾博华路市政工程项目/宁波杭州湾新区南部新城海泉湾规划二路市政工程项目", + serial_number = 65, + type = 1 + }, + new + { + Id = "562be9ce-e9fd-4d81-b8a2-636fbc25d9c1", + IsDeleted = 0ul, + name = "宁波杭州湾新区海川大道(七塘公路—滨海一路)市政工程标段Ⅰ", + serial_number = 66, + type = 1 + }, + new + { + Id = "d52f2db9-07a5-4b77-add5-65c3b0a021e1", + IsDeleted = 0ul, + name = "梅景路改造(冬青路-渡驾桥江)工程", + serial_number = 67, + type = 1 + }, + new + { + Id = "a9be40e3-99b3-4d94-aaaa-92711f853075", + IsDeleted = 0ul, + name = "云飞路三期(康庄南路-长岛花园东侧路)工 程", + serial_number = 68, + type = 1 + }, + new + { + Id = "9b654b10-36d8-4530-8390-1406dc38bd84", + IsDeleted = 0ul, + name = "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)一标段", + serial_number = 69, + type = 1 + }, + new + { + Id = "594b2558-3c4d-4af5-a79e-17c74886b0b9", + IsDeleted = 0ul, + name = "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)二标段", + serial_number = 70, + type = 1 + }, + new + { + Id = "a3667aa7-9403-4cc6-a85e-42b96815ac32", + IsDeleted = 0ul, + name = "灵岩山路东延及沿山河南路延伸段工程一期", + serial_number = 71, + type = 1 + }, + new + { + Id = "6e8d85df-e9ed-4386-9b15-7c19eaccb199", + IsDeleted = 0ul, + name = "慈溪高新区基础设施建设四期", + serial_number = 72, + type = 1 + }, + new + { + Id = "996d15ac-467d-4ff8-8935-76517cc84fb7", + IsDeleted = 0ul, + name = "慈溪滨海经济开发区龙山滨海新城蓬苑路(横五路-横四路)工程", + serial_number = 73, + type = 1 + }, + new + { + Id = "91fd6b72-a524-480d-aadf-6e3bae73fbcb", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4001标段(翠柏里站)施工", + serial_number = 74, + type = 2 + }, + new + { + Id = "051a42c4-d157-47db-9887-12d5ea917922", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4011标段施工", + serial_number = 75, + type = 2 + }, + new + { + Id = "a25b1db3-23a2-4ea5-b10c-f020325c292f", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程供电系统安装施工Ⅱ标段", + serial_number = 76, + type = 2 + }, + new + { + Id = "5a9e2016-1c56-4435-8aed-4221bff231da", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第一批)TJ4015标段施工", + serial_number = 77, + type = 2 + }, + new + { + Id = "9c670713-7d5f-4372-ab7c-246e8e6dd3cf", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4013标段施工", + serial_number = 78, + type = 2 + }, + new + { + Id = "e4f7391b-a0a4-48d0-a803-4be81e52bbb9", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程JDSG4006标段车站机电安装施工", + serial_number = 79, + type = 2 + }, + new + { + Id = "d7c8a941-e37a-4889-b862-2b4c2fb8a992", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第四批)TJ4008标段施工", + serial_number = 80, + type = 2 + }, + new + { + Id = "1ed52273-3c72-4f79-919c-0c4020e4cdf3", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第四批)TJ4017标段施工", + serial_number = 81, + type = 2 + }, + new + { + Id = "aa28f286-cc5d-4051-978d-43ef4014cf5e", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4016标", + serial_number = 82, + type = 2 + }, + new + { + Id = "a3f6eea4-0349-4ddd-bfa7-33c0427bc90a", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程地下段轨道工程施工Ⅱ标段", + serial_number = 83, + type = 2 + }, + new + { + Id = "c04fa383-a9b0-47e4-a91c-9f1b657ac55b", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第二批)TJ4004标段施工", + serial_number = 84, + type = 2 + }, + new + { + Id = "40b27864-99c0-4d04-889c-5f9ff17cf726", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4018标", + serial_number = 85, + type = 2 + }, + new + { + Id = "b05f4d26-1b04-4a23-a295-8848ce4aa73e", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程TJ4012标段施工", + serial_number = 86, + type = 2 + }, + new + { + Id = "424b6a6a-8e16-4e5e-936b-25a73a3c244b", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第五批)TJ4007标段施工", + serial_number = 87, + type = 2 + }, + new + { + Id = "1a317eb0-a5fd-420a-b273-ca9d6a006921", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程地下段轨道工程施工I标段", + serial_number = 88, + type = 2 + }, + new + { + Id = "8fce8773-1eb4-4031-b9bd-60ce0fab8c18", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线工程JDSG4004标段车站机电安装施工", + serial_number = 89, + type = 2 + }, + new + { + Id = "d25f90c3-8125-4821-86cf-fbd3b879dd4b", + IsDeleted = 0ul, + name = "宁波市轨道交通4号线土建工程(第四批)TJ4003标段施工", + serial_number = 90, + type = 2 + }, + new + { + Id = "25d0bc9e-30db-4768-9996-624312a0450c", + IsDeleted = 0ul, + name = "协丰220千伏变电站工程", + serial_number = 91, + type = 3 + }, + new + { + Id = "1d3333dd-ed50-4dcc-b210-2d44190febde", + IsDeleted = 0ul, + name = "新乐220千伏变电站整体改造工程", + serial_number = 92, + type = 3 + }, + new + { + Id = "b23702d5-9c73-4c79-aa63-fe2245f4d65d", + IsDeleted = 0ul, + name = "38省道宁海桥头胡至深甽段改建工程", + serial_number = 93, + type = 4 + }, + new + { + Id = "88909223-8273-4b3d-9b56-ba32e038ed35", + IsDeleted = 0ul, + name = "71省道盛宁线东陈至茅洋段改建工程", + serial_number = 94, + type = 4 + }, + new + { + Id = "f3ed2aeb-ac40-4580-bb37-008bea343731", + IsDeleted = 0ul, + name = "明州大道(洞桥至云龙段)工程第IV-2合同段", + serial_number = 95, + type = 4 + }, + new + { + Id = "4743c1eb-7135-4ea9-81f8-cf6d825e0ad5", + IsDeleted = 0ul, + name = "沿海中线北仑郭巨段(郭巨互通-北堤互通)拓宽工程", + serial_number = 96, + type = 4 + }, + new + { + Id = "4dcf10bd-93e6-43aa-8e18-9410392a8701", + IsDeleted = 0ul, + name = "梅山磨头碶移位及配套河道工程", + serial_number = 97, + type = 5 + }, + new + { + Id = "88b56348-6d04-45b4-8dc5-ba4c3b5303a7", + IsDeleted = 0ul, + name = "余姚市海塘除险治江围涂四期工程--临海北顺堤堤顶道路、堤岸防护及河道配套工程", + serial_number = 98, + type = 5 + }, + new + { + Id = "f2dc17f8-7bd1-4f6e-b16a-674e1ec34ed0", + IsDeleted = 0ul, + name = "庄桥机场周边区域水环境治理工程(江北大河整治工程二期庄桥段)", + serial_number = 99, + type = 5 + }, + new + { + Id = "64d400e2-0247-4c74-a02e-f32753292095", + IsDeleted = 0ul, + name = "掌起镇任佳溪村防洪分流(小流域治理)工程", + serial_number = 100, + type = 5 + }); + }); + + modelBuilder.Entity("Vote.Services.Entities.VoteRecords", b => + { + b.Property("Id") + .HasColumnType("varchar(36)") + .HasColumnName("Id") + .HasComment("Id主键"); + + b.Property("CreatedTime") + .HasColumnType("datetime") + .HasComment("创建时间"); + + b.Property("CreatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("CreatedUserId") + .HasComment("创建者Id"); + + b.Property("CreatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("创建者名称"); + + b.Property("IsDeleted") + .HasColumnType("bit") + .HasColumnName("IsDeleted") + .HasComment("软删除标记"); + + b.Property("UpdatedTime") + .HasColumnType("datetime") + .HasComment("更新时间"); + + b.Property("UpdatedUserId") + .HasColumnType("varchar(36)") + .HasColumnName("UpdatedUserId") + .HasComment("修改者Id"); + + b.Property("UpdatedUserName") + .HasMaxLength(20) + .HasColumnType("varchar(20) CHARACTER SET utf8mb4") + .HasComment("修改者名称"); + + b.Property("expert_login_code") + .HasMaxLength(36) + .HasColumnType("varchar(36) CHARACTER SET utf8mb4") + .HasComment("专家"); + + b.Property("is_agree") + .HasColumnType("tinyint(1)") + .HasComment("是否同意"); + + b.Property("project_id") + .HasMaxLength(36) + .HasColumnType("varchar(36) CHARACTER SET utf8mb4") + .HasComment("项目Id"); + + b.Property("vote_time") + .HasColumnType("datetime") + .HasComment("投票时间"); + + b.HasKey("Id"); + + b.ToTable("VoteRecords"); + }); + modelBuilder.Entity("Ewide.Core.SysDictData", b => { b.HasOne("Ewide.Core.SysDictType", "SysDictType") diff --git a/20220330_Vote/Ewide.EntityFramework.Core/DbContexts/DefaultDbContext.cs b/20220330_Vote/Ewide.EntityFramework.Core/DbContexts/DefaultDbContext.cs index bcc43f1..9a79cd3 100644 --- a/20220330_Vote/Ewide.EntityFramework.Core/DbContexts/DefaultDbContext.cs +++ b/20220330_Vote/Ewide.EntityFramework.Core/DbContexts/DefaultDbContext.cs @@ -34,8 +34,7 @@ namespace Ewide.EntityFramework.Core public string GetDatabaseConnectionString() { - var connList = App.GetConfig>("ConnectionStrings")?.Where(p => p.Enabled).ToList(); - var defaultConnection = connList.Find(a => a.Id == "118_3310_ewide")?.ConnectionString;// App.Configuration["ConnectionStrings:DefaultConnection"]; + var defaultConnection = App.Configuration["DefaultConnection"]; // 如果没有实现多租户方式,则无需查询 if (!typeof(IPrivateMultiTenant).IsAssignableFrom(GetType())) return defaultConnection; diff --git a/20220330_Vote/Ewide.EntityFramework.Core/Ewide.EntityFramework.Core.csproj b/20220330_Vote/Ewide.EntityFramework.Core/Ewide.EntityFramework.Core.csproj index 76b8fef..49af81d 100644 --- a/20220330_Vote/Ewide.EntityFramework.Core/Ewide.EntityFramework.Core.csproj +++ b/20220330_Vote/Ewide.EntityFramework.Core/Ewide.EntityFramework.Core.csproj @@ -6,7 +6,6 @@ - @@ -17,9 +16,6 @@ PreserveNewest - - - PreserveNewest diff --git a/20220330_Vote/Ewide.EntityFramework.Core/Startup.cs b/20220330_Vote/Ewide.EntityFramework.Core/Startup.cs index bd55546..25b25ac 100644 --- a/20220330_Vote/Ewide.EntityFramework.Core/Startup.cs +++ b/20220330_Vote/Ewide.EntityFramework.Core/Startup.cs @@ -19,12 +19,10 @@ namespace Ewide.EntityFramework.Core options.CustomizeMultiTenants(); // 自定义租户 options.AddDb(); - options.AddDb(); + //options.AddDb(); }, "Ewide.Database.Migrations"); - var connList = App.GetConfig>("ConnectionStrings")?.Where(p => p.Enabled).ToList(); - // 注册dapper, 目前只能强行写死连接字符串和数据库程序集 - services.AddDapper(connList.Find(a => a.Id == "118_3310_ewide")?.ConnectionString, SqlProvider.MySql); - + // 注册dapper, 目前只能强行写死连接字符串和数据库程序集 + services.AddDapper(App.Configuration["DefaultConnection"], SqlProvider.MySql); //sqlsugar的注册代码放到了SqlSugar文件夹里 services.AddSqlsugarSetup(); //List connectConfigList = new() diff --git a/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.Development.json b/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.Development.json index 580ea7a..cfe7ace 100644 --- a/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.Development.json +++ b/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.Development.json @@ -1,6 +1,6 @@ { //DefaultConnectionڵ㲻ɾ - "DefaultConnection": "", + "DefaultConnection": "Data Source=118.178.224.202;Port=3310;Database=yongjiangbei_vote;User ID=root;Password=root.Ewide;pooling=true;sslmode=none;CharSet=utf8;", "ConnectionStrings": [ /* MySql = 0, @@ -18,25 +18,11 @@ "Connection": "WMBlog.db" // ַ }, { - //Ŀǰʹõݿ + //Ŀǰʹõݿ Ewide. "Id": "118_3310_ewide", "DBType": 0, "Enabled": true, - "ConnectionString": "Data Source=118.178.224.202;Port=3310;Database=ewide;User ID=root;Password=root.Ewide;pooling=true;sslmode=none;CharSet=utf8;" - }, - { - //֣ܵϲݿ - "Id": "zhengzong_testdb", - "DBType": 0, - "Enabled": true, - "ConnectionString": "Data Source=42.192.248.196;Port=3306;Database=roadflow;User ID=joy;Password=db2202;pooling=true;sslmode=none;CharSet=utf8;" - }, - { - //118Ϻϲroadflow֮ǰݿ - "Id": "118_3306_old_ewide", - "DBType": 0, - "Enabled": true, - "ConnectionString": "Data Source=118.178.224.202;Port=3306;Database=ewide;User ID=root;Password=root;pooling=true;sslmode=none;CharSet=utf8;" + "ConnectionString": ";" }, { //֪ʲôõ diff --git a/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.Development.json~Stashed changes b/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.Development.json~Stashed changes deleted file mode 100644 index 5ae1580..0000000 --- a/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.Development.json~Stashed changes +++ /dev/null @@ -1,56 +0,0 @@ -{ - //DefaultConnectionڵ㲻ɾ - "DefaultConnection": "", - "ConnectionStrings": [ - /* - MySql = 0, - SqlServer = 1, - Sqlite = 2, - Oracle = 3, - PostgreSQL = 4, - Dm = 5, - Kdbndp = 6 - */ - { - "Id": 1, // idõݿ - "DBType": 2, // dbͣö٣Ŀϱ - "Enabled": false, // Ƿǰݿdb - "Connection": "WMBlog.db" // ַ - }, - { - //Ŀǰʹõݿ - "Id": "118_3310_ewide", - "DBType": 0, - "Enabled": true, - "ConnectionString": "Data Source=118.178.224.202;Port=3310;Database=ewide;User ID=root;Password=root.Ewide;pooling=true;sslmode=none;CharSet=utf8;" - }, - { - //֣ܵϲݿ - "Id": "zhengzong_testdb", - "DBType": 0, - "Enabled": true, - "ConnectionString": "Data Source=42.192.248.196;Port=3306;Database=roadflow;User ID=joy;Password=db2202;pooling=true;sslmode=none;CharSet=utf8;" - }, - { - //118Ϻϲroadflow֮ǰݿ - "Id": "118_3306_old_ewide", - "DBType": 0, - "Enabled": true, - "ConnectionString": "Data Source=118.178.224.202;Port=3306;Database=ewide;User ID=root;Password=root;pooling=true;sslmode=none;CharSet=utf8;" - }, - { - //֪ʲôõ - "Id": "PgSqlConnection", - "DBType": 4, - "Enabled": true, - "ConnectionString": "HOST=127.0.0.1;PORT=5432;DATABASE=ewide;PASSWORD=postgres;USER ID=postgres;" - }, - { - - "Id": "MultiTenantConnection", - "DBType": 2, - "Enabled": true, - "ConnectionString": "Data Source=./Dilon_SaaS.db" - } - ] -} \ No newline at end of file diff --git a/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.Production.json b/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.Production.json index 580ea7a..7aad0d2 100644 --- a/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.Production.json +++ b/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.Production.json @@ -1,6 +1,6 @@ { //DefaultConnectionڵ㲻ɾ - "DefaultConnection": "", + "DefaultConnection": "Data Source=localhost;Port=3310;Database=yongjiangbei_vote;User ID=root;Password=Ewide.;pooling=true;sslmode=none;CharSet=utf8;", "ConnectionStrings": [ /* MySql = 0, @@ -18,25 +18,11 @@ "Connection": "WMBlog.db" // ַ }, { - //Ŀǰʹõݿ + //Ŀǰʹõݿ Ewide. "Id": "118_3310_ewide", "DBType": 0, "Enabled": true, - "ConnectionString": "Data Source=118.178.224.202;Port=3310;Database=ewide;User ID=root;Password=root.Ewide;pooling=true;sslmode=none;CharSet=utf8;" - }, - { - //֣ܵϲݿ - "Id": "zhengzong_testdb", - "DBType": 0, - "Enabled": true, - "ConnectionString": "Data Source=42.192.248.196;Port=3306;Database=roadflow;User ID=joy;Password=db2202;pooling=true;sslmode=none;CharSet=utf8;" - }, - { - //118Ϻϲroadflow֮ǰݿ - "Id": "118_3306_old_ewide", - "DBType": 0, - "Enabled": true, - "ConnectionString": "Data Source=118.178.224.202;Port=3306;Database=ewide;User ID=root;Password=root;pooling=true;sslmode=none;CharSet=utf8;" + "ConnectionString": "" }, { //֪ʲôõ diff --git a/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.json b/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.json deleted file mode 100644 index 580ea7a..0000000 --- a/20220330_Vote/Ewide.EntityFramework.Core/dbsettings.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - //DefaultConnectionڵ㲻ɾ - "DefaultConnection": "", - "ConnectionStrings": [ - /* - MySql = 0, - SqlServer = 1, - Sqlite = 2, - Oracle = 3, - PostgreSQL = 4, - Dm = 5, - Kdbndp = 6 - */ - { - "Id": 1, // idõݿ - "DBType": 2, // dbͣö٣Ŀϱ - "Enabled": false, // Ƿǰݿdb - "Connection": "WMBlog.db" // ַ - }, - { - //Ŀǰʹõݿ - "Id": "118_3310_ewide", - "DBType": 0, - "Enabled": true, - "ConnectionString": "Data Source=118.178.224.202;Port=3310;Database=ewide;User ID=root;Password=root.Ewide;pooling=true;sslmode=none;CharSet=utf8;" - }, - { - //֣ܵϲݿ - "Id": "zhengzong_testdb", - "DBType": 0, - "Enabled": true, - "ConnectionString": "Data Source=42.192.248.196;Port=3306;Database=roadflow;User ID=joy;Password=db2202;pooling=true;sslmode=none;CharSet=utf8;" - }, - { - //118Ϻϲroadflow֮ǰݿ - "Id": "118_3306_old_ewide", - "DBType": 0, - "Enabled": true, - "ConnectionString": "Data Source=118.178.224.202;Port=3306;Database=ewide;User ID=root;Password=root;pooling=true;sslmode=none;CharSet=utf8;" - }, - { - //֪ʲôõ - "Id": "PgSqlConnection", - "DBType": 4, - "Enabled": true, - "ConnectionString": "HOST=127.0.0.1;PORT=5432;DATABASE=ewide;PASSWORD=postgres;USER ID=postgres;" - }, - { - - "Id": "MultiTenantConnection", - "DBType": 2, - "Enabled": true, - "ConnectionString": "Data Source=./Dilon_SaaS.db" - } - ] -} \ No newline at end of file diff --git a/20220330_Vote/Ewide.Web.Core/Service/DBqueryService.cs b/20220330_Vote/Ewide.Web.Core/Service/DBqueryService.cs index 7b5b618..e9aaa99 100644 --- a/20220330_Vote/Ewide.Web.Core/Service/DBqueryService.cs +++ b/20220330_Vote/Ewide.Web.Core/Service/DBqueryService.cs @@ -49,8 +49,7 @@ namespace Ewide.Web.Core.Service private async Task> GetDataBase() { Dictionary dicDataBase = new Dictionary(); - var connList = App.GetConfig>("ConnectionStrings")?.Where(p => p.Enabled).ToList(); - var defaultConnection = connList.Find(a => a.Id == "118_3310_ewide")?.ConnectionString; + var defaultConnection = App.Configuration["DefaultConnection"]; //获取 所有继承 IEntity 接口的表 IEnumerable entityTypedb = _db.Model.GetEntityTypes().Where(x => typeof(IEntity).IsAssignableFrom(x.ClrType)).ToList(); diff --git a/20220330_Vote/Ewide.Web.Core/Startup.cs b/20220330_Vote/Ewide.Web.Core/Startup.cs index 8219e77..872875c 100644 --- a/20220330_Vote/Ewide.Web.Core/Startup.cs +++ b/20220330_Vote/Ewide.Web.Core/Startup.cs @@ -1,8 +1,11 @@ using Ewide.Core; +using Ewide.EntityFramework.Core; using Furion; +using Furion.DependencyInjection; using Microsoft.AspNetCore.Authentication.JwtBearer; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; +using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Serilog; @@ -71,6 +74,8 @@ namespace Ewide.Web.Core if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); + + } else { @@ -96,7 +101,7 @@ namespace Ewide.Web.Core app.UseAuthentication(); app.UseAuthorization(); - app.UseInject(string.Empty); + app.UseInject(); app.UseEndpoints(endpoints => { diff --git a/20220330_Vote/Ewide.Web.Entry/Controllers/VoteController.cs b/20220330_Vote/Ewide.Web.Entry/Controllers/VoteController.cs new file mode 100644 index 0000000..1d3bb32 --- /dev/null +++ b/20220330_Vote/Ewide.Web.Entry/Controllers/VoteController.cs @@ -0,0 +1,16 @@ +using Microsoft.AspNetCore.Mvc; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Ewide.Web.Entry.Controllers +{ + public class VoteController : Controller + { + public IActionResult Index() + { + return View(); + } + } +} diff --git a/20220330_Vote/Ewide.Web.Entry/Ewide.Web.Entry.csproj b/20220330_Vote/Ewide.Web.Entry/Ewide.Web.Entry.csproj index 5bcb787..968bca3 100644 --- a/20220330_Vote/Ewide.Web.Entry/Ewide.Web.Entry.csproj +++ b/20220330_Vote/Ewide.Web.Entry/Ewide.Web.Entry.csproj @@ -18,7 +18,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive @@ -26,6 +26,7 @@ + diff --git a/20220330_Vote/Ewide.Web.Entry/Views/Home/Index.cshtml b/20220330_Vote/Ewide.Web.Entry/Views/Home/Index.cshtml index 6c88686..f465a03 100644 --- a/20220330_Vote/Ewide.Web.Entry/Views/Home/Index.cshtml +++ b/20220330_Vote/Ewide.Web.Entry/Views/Home/Index.cshtml @@ -2,11 +2,3 @@ ViewData["Title"] = ViewBag.Description; } -
- -
-

star fork GitHub stars GitHub forks GitHub license nuget

-
-

@ViewBag.Description

-

API 接口      源码地址

-
\ No newline at end of file diff --git a/20220330_Vote/Ewide.Web.Entry/Views/Vote/Index.cshtml b/20220330_Vote/Ewide.Web.Entry/Views/Vote/Index.cshtml new file mode 100644 index 0000000..e1dd794 --- /dev/null +++ b/20220330_Vote/Ewide.Web.Entry/Views/Vote/Index.cshtml @@ -0,0 +1,5 @@ +@* + For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 +*@ +@{ +} diff --git a/20220330_Vote/Vote.Services/ApiController/ProjectsService.cs b/20220330_Vote/Vote.Services/ApiController/ProjectsService.cs new file mode 100644 index 0000000..c037927 --- /dev/null +++ b/20220330_Vote/Vote.Services/ApiController/ProjectsService.cs @@ -0,0 +1,41 @@ +using Furion.DatabaseAccessor; +using Furion.DynamicApiController; +using Mapster; +using Microsoft.AspNetCore.Mvc; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Vote.Services.Dto; + +namespace Vote.Services.ApiController +{ + /// + /// 项目 + /// + [ApiDescriptionSettings("Vote", Order = 0)] + public class ProjectsService : IDynamicApiController + { + private readonly IRepository rep_Projects; + public ProjectsService(IRepository _rep_Projects) + { + rep_Projects = _rep_Projects; + } + /// + /// 列表 + /// + /// + [HttpPost] + [Microsoft.AspNetCore.Authorization.AllowAnonymous] + public async Task List() + { + var data = await rep_Projects.DetachedEntities.Where(p => !p.IsDeleted) + //.ProjectToType() + .OrderBy(a => a.serial_number) + .ToPagedListAsync(); + + return data; + } + } +} diff --git a/20220330_Vote/Vote.Services/Dto/ProjectsInput.cs b/20220330_Vote/Vote.Services/Dto/ProjectsInput.cs new file mode 100644 index 0000000..eaf48b9 --- /dev/null +++ b/20220330_Vote/Vote.Services/Dto/ProjectsInput.cs @@ -0,0 +1,39 @@ +using Ewide.Core.Util; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Vote.Services.Entities; + +namespace Vote.Services.Dto +{ + public class ProjectsInput + { + } + public class ProjectsOutput + { + /// + /// 项目序号 + /// + public int serial_number { get; set; } + /// + /// 工程名称 + /// + public string name { get; set; } + /// + /// 项目类型 + /// + public EnumProjectType type { get; set; } + /// + /// 项目类型 + /// + public string type_title + { + get + { + return type.GetEnumDescription(); + } + } + } +} diff --git a/20220330_Vote/Vote.Services/Entities/Experts.cs b/20220330_Vote/Vote.Services/Entities/Experts.cs new file mode 100644 index 0000000..0014cb6 --- /dev/null +++ b/20220330_Vote/Vote.Services/Entities/Experts.cs @@ -0,0 +1,66 @@ +using Ewide.Core; +using Ewide.Core.Util; +using Furion; +using Furion.DatabaseAccessor; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Vote.Services.Entities +{ + /// + /// 专家表 + /// + public class Experts : DEntityBase, IEntitySeedData + { + /// + /// 登录码 + /// + [Comment("登录码")] + [MaxLength(36)] + public string login_code { get; set; } + + public IEnumerable HasData(DbContext dbContext, Type dbContextLocator) + { + //var list = new List(); + //for (int i = 1; i <= 20; i++) + //{ + // list.Add(new Experts + // { + // Id = Guid.NewGuid().ToString(), + // login_code = RandomHelper.GenerateRandomCode(6) + // }); ; + //} + //return list; + + + return new List + { + new Experts { Id = "08c8ad90-b44f-4270-890c-8447f086d579", login_code="8YCDD9" }, + new Experts { Id = "08f9b6c0-d6ac-454d-bd0e-cc749aba10d0", login_code="SMBG3Q" }, + new Experts { Id = "0eae9b66-e00d-42cf-b41f-d6b7ebdff800", login_code="XV8U1U" }, + new Experts { Id = "1b4f9504-f486-4f8f-9588-24357b9ad0e0", login_code="C6FSMT" }, + new Experts { Id = "355563e6-615d-443a-bec6-d6247f4dbaf7", login_code="K8H9PW" }, + new Experts { Id = "36a50b18-b513-4f89-9dab-a0a10031ec48", login_code="JL022B" }, + new Experts { Id = "3d135a79-97bf-4f10-bba5-7bed90e911a3", login_code="5MJQY7" }, + new Experts { Id = "439260c8-54de-48c3-977d-fe2c11ae7fe6", login_code="ZFD5VL" }, + new Experts { Id = "510e42da-856e-4d93-a099-d7e998dfbd7a", login_code="3GZDEW" }, + new Experts { Id = "63e8a280-90c4-4c9b-9572-74f9d4278cd4", login_code="WHM9CF" }, + new Experts { Id = "86c1a965-3229-46d6-a034-de4a06655d55", login_code="CWYB3P" }, + new Experts { Id = "8db1378a-2deb-4d13-b49f-9490dd1ffd1d", login_code="2154MF" }, + new Experts { Id = "90234cce-2f80-40cd-922e-d9d5ccd4a3c2", login_code="A4P3RZ" }, + new Experts { Id = "98fd5b30-1b14-4d64-a619-efbf2ec0ca0d", login_code="FNNUA9" }, + new Experts { Id = "9a21e83c-06ae-44bc-9b9b-cecd92a0d606", login_code="97GFZQ" }, + new Experts { Id = "c5401037-33b6-433f-9dd2-054dfb93a09e", login_code="TYVWMZ" }, + new Experts { Id = "d3674cdd-142f-4549-9766-4d2d3991cd76", login_code="DH1HCC" }, + new Experts { Id = "e7f6f049-6bff-4479-b7fb-845c4db9bd01", login_code="HCY26V" }, + new Experts { Id = "eb83bc26-e942-4b98-8adc-02688bf1a32d", login_code="KZS4WS" }, + new Experts { Id = "f6afc724-1b88-4a70-8714-d047c20928a4", login_code="XQLGQ8" }, + }; + } + } +} diff --git a/20220330_Vote/Vote.Services/Entities/Projects.cs b/20220330_Vote/Vote.Services/Entities/Projects.cs new file mode 100644 index 0000000..2b2c7ff --- /dev/null +++ b/20220330_Vote/Vote.Services/Entities/Projects.cs @@ -0,0 +1,192 @@ +using Ewide.Core; +using Ewide.Core.Util; +using Furion; +using Furion.DatabaseAccessor; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Vote.Services.Entities +{ + /// + /// 项目表 + /// + public class Projects : DEntityBase, IEntitySeedData + { + /// + /// 项目序号 + /// + [Comment("项目序号")] + public int serial_number { get; set; } + /// + /// 工程名称 + /// + [Comment("工程名称")] + public string name { get; set; } + /// + /// 项目类型 + /// + [Comment("项目类型")] + public EnumProjectType type { get; set; } + /// + /// + /// + [NotMapped] + public string type_title + { + get + { + return type.GetEnumDescription(); + } + } + public IEnumerable HasData(DbContext dbContext, Type dbContextLocator) + { + return new List + { + new Projects { Id = "5921ad9e-7027-446d-aae3-899ad388404b", serial_number = 1, name = "浙江纺织服装职业技术学院中英时尚设计学院综合楼项目",type= EnumProjectType.FangJian }, + new Projects { Id = "3e458131-6318-4e27-935e-2e4a85c877b1", serial_number = 2, name = "宁波诺丁汉大学图书馆及学习中心项目",type= EnumProjectType.FangJian }, + new Projects { Id = "03d59313-3e30-4345-920e-e21455c11228", serial_number = 3, name = "高新区滨江绿带整治工程五期(翔海路—大东江)I标段",type= EnumProjectType.FangJian }, + new Projects { Id = "94e3b06e-2fa6-4830-8432-383305b237b8", serial_number = 4, name = "太平鸟高新区男装办公楼项目",type= EnumProjectType.FangJian }, + new Projects { Id = "26f148e5-a44e-47d5-90aa-49136b1efb6d", serial_number = 5, name = "慈城新城高中项目",type= EnumProjectType.FangJian }, + new Projects { Id = "686d2b36-30a8-47c4-9050-db601d8dcb8c", serial_number = 6, name = "宁海县妇幼保健院保健大楼工程",type= EnumProjectType.FangJian }, + new Projects { Id = "8118f5fd-8082-4186-a5b4-32490cbadb19", serial_number = 7, name = "宁波市职业技术教育中心学校(荷池校区) 改扩建项目",type= EnumProjectType.FangJian }, + new Projects { Id = "ecaf4b26-b27e-4eed-bbf2-0deaf52495fa", serial_number = 8, name = "大庆北路地段配套学校(二期)",type= EnumProjectType.FangJian }, + new Projects { Id = "bb3eee7a-4846-4177-b377-fd2804d4db72", serial_number = 9, name = "鄞州区钟公庙第二初级中学工程",type= EnumProjectType.FangJian }, + new Projects { Id = "21a336c4-f730-4244-ae5a-66d4e0f8f356", serial_number = 10, name = "北京航空航天大学宁波创新研究院(研究生院和国际交流中心)一期(实验用房)",type= EnumProjectType.FangJian }, + new Projects { Id = "5c504c5d-9d69-4cf8-a483-c8699f0b517e", serial_number = 11, name = "余姚市人民医院肿瘤治疗中心项目",type= EnumProjectType.FangJian }, + new Projects { Id = "2b257857-4905-4176-bebe-bc8b99eef73b", serial_number = 12, name = "庄市中心学校迁建工程",type= EnumProjectType.FangJian }, + new Projects { Id = "9c16ca23-f3d8-44c9-92d7-d08d6b64e4f9", serial_number = 13, name = "镇海区中心学校新城校区项目",type= EnumProjectType.FangJian }, + new Projects { Id = "62696ca2-719e-41df-8bad-e182efe84963", serial_number = 14, name = "宁波市海曙区段塘学校扩建工程",type= EnumProjectType.FangJian }, + new Projects { Id = "ef61f197-b194-4190-ab74-f5f78c160bd3", serial_number = 15, name = "慈溪市明月湖幼儿园",type= EnumProjectType.FangJian }, + new Projects { Id = "056e05e3-2ae5-4db5-b976-f4a1809a4d1a", serial_number = 16, name = "北仑外国语学校工程",type= EnumProjectType.FangJian }, + new Projects { Id = "4c9d4677-539c-45c8-8885-45f9d2c1c15e", serial_number = 17, name = "宁波市残疾人康复中心(宁波市康复医院)扩建工程",type= EnumProjectType.FangJian }, + new Projects { Id = "f640a90e-71c1-4142-afb4-b9d68f9ac08f", serial_number = 18, name = "宁波海关宁海办事处检测报关代理服务中心项目",type= EnumProjectType.FangJian }, + new Projects { Id = "62eb67a1-2584-4b9e-b663-9c6c1b700d42", serial_number = 19, name = "新能源技术与材料综合研发平台- 核用碳化硅纤维及复合材料研发及应用平台项目",type= EnumProjectType.FangJian }, + new Projects { Id = "23a38e3e-a77c-463c-902e-02088707d1ca", serial_number = 20, name = "东部新城核心区以东片区C1-6#地块邱隘镇九年一贯制学校工程",type= EnumProjectType.FangJian }, + new Projects { Id = "1e9371d1-8b01-4c55-9431-000a3fffc0b4", serial_number = 21, name = "宁波大红鹰学院象山影视学院工程(二期)",type= EnumProjectType.FangJian }, + new Projects { Id = "1f9ae2cf-c7c2-4a57-b678-b0fca4bf4959", serial_number = 22, name = "中国·浙江海洋运动中心(亚帆中心)工程",type= EnumProjectType.FangJian }, + new Projects { Id = "c0e62c16-bf78-4d82-8dc6-442c1f0c0adc", serial_number = 23, name = "宁波市黄湖监狱迁建项目I标段、Ⅱ标段、Ⅲ标段、装修工程",type= EnumProjectType.FangJian }, + new Projects { Id = "8be3e94f-0b17-4c97-9b9d-021b922fc6a2", serial_number = 24, name = "新潮塘区块九年一贯制学校新建工程",type= EnumProjectType.FangJian }, + new Projects { Id = "fad24cde-bd7c-40cf-a7e2-ce46e396f489", serial_number = 25, name = "顾国和中学(爱国中学)工程(门卫、教学楼A-C、教学楼D、综合楼、食堂)",type= EnumProjectType.FangJian }, + new Projects { Id = "6e52bfbf-4095-4189-b2f7-37eb1ced0ec9", serial_number = 26, name = "庄市街道同心湖幼儿园(暂名)工程",type= EnumProjectType.FangJian }, + new Projects { Id = "dc22af65-c261-4245-b319-8908fc2e77f6", serial_number = 27, name = "中科院上海药物所宁波临床前研究中心",type= EnumProjectType.FangJian }, + new Projects { Id = "09955588-0f17-479b-ba4b-c1f90ca58a85", serial_number = 28, name = "宁波科学中学新建项目",type= EnumProjectType.FangJian }, + new Projects { Id = "39d80b14-8735-4710-bacb-432fd12dc309", serial_number = 29, name = "白沙路街道后油车股份经济合作社综合服务楼",type= EnumProjectType.FangJian }, + new Projects { Id = "aa0e4017-2304-431a-b5ed-b725a77cb810", serial_number = 30, name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅴ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "0c3672ab-23f4-4a8d-9de3-97fe401f3aee", serial_number = 31, name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅵ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "e7ccba65-414f-4501-af69-4d6722e21d86", serial_number = 32, name = "三官堂大桥及接线(江南路至中官西路)工程(主桥)",type= EnumProjectType.ShiZheng }, + new Projects { Id = "68f25778-4b2f-4a91-a2dc-640a0622f389", serial_number = 33, name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅳ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "03265409-52b0-43dc-85b5-0698a0367211", serial_number = 34, name = "杭甬复线威海互通连接线一期工程(施工)Ⅲ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "c12f36c4-6887-4beb-8b90-1c5b68006af1", serial_number = 35, name = "甬江北岸大庆北路(湖东路-怡西街)道路工程I标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "1d6aafe6-457e-4143-82fe-b1334bdabc45", serial_number = 36, name = "机场快速路南延(鄞州大道-绕城高速)工程施工Ⅰ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "54e26c4e-ffc4-4493-bb4c-3f3f66f46019", serial_number = 37, name = "永泰公园",type= EnumProjectType.ShiZheng }, + new Projects { Id = "2bc85650-b86d-44de-a152-970928376305", serial_number = 38, name = "三官堂大桥及接线(江南路至中官西路)工程I标",type= EnumProjectType.ShiZheng }, + new Projects { Id = "5a5dffca-ad94-476a-a25d-b68df2fd4908", serial_number = 39, name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅷ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "c970ff56-ff36-4c64-a8a4-832c92e2f4bf", serial_number = 40, name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅶ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "9742d735-e769-4355-8b26-5067a35b75bf", serial_number = 41, name = "西二环北延工程(明州路-中横线)",type= EnumProjectType.ShiZheng }, + new Projects { Id = "35870caf-f7f5-4302-95d9-fb0c05462c40", serial_number = 42, name = "鄞奉路(新典路-三孔碶桥)道路工程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "b9690320-4839-40bb-8703-3b2724ce0578", serial_number = 43, name = "会展路(盛梅路-沙洲路)及南侧河道绿地工程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "7e1989e6-bf05-4fbc-b397-dc74069d301d", serial_number = 44, name = "宁波杭州湾新区南部新城海泉湾规划三路市政工程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "016e39e3-6fb9-4d8f-a5f8-2478b4e389e1", serial_number = 45, name = "杭州湾新区滨海新城启动区银滩路等六条路市政工程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "b38cedeb-f524-44ef-be8f-6cd1f7c54b59", serial_number = 46, name = "杭甬复线威海互通连接线一期工程(施工)Ⅰ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "8a5fc13a-d5aa-44b2-99dd-c2834ac00520", serial_number = 47, name = "杭甬复线威海互通连接线一期工程(施工)Ⅱ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "49dd82e4-b9b9-4d26-ae87-9f9092f367d1", serial_number = 48, name = "慈溪市北部污水处理厂提标改造工程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "a4d7196d-b9f3-439f-8258-4da4c04b177a", serial_number = 49, name = "通途路(世纪大道~东外环)综合管廊工程施工Ⅱ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "7f046001-a58d-400e-b97d-d4b55f79b6eb", serial_number = 50, name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅲ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "bddeb30e-59bb-462b-bb69-5fe557b20614", serial_number = 51, name = "梅山保税港区港湾路(二期)工程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "cb5725b1-06cd-42da-abc4-c4412cecb627", serial_number = 52, name = "三官堂大桥及接线(江南路至中官西路)工程接线部分II标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "19a78c25-d576-4fa0-872e-ae431a27f1fe", serial_number = 53, name = "霞浦污水泵站污水压力管工程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "92d860ce-94f5-4468-976d-6f4bc6d3a005", serial_number = 54, name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅱ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "320907e0-5092-467c-ad38-9883af7e7694", serial_number = 55, name = "新长邱线拓宽改造工程(施工)2标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "9f9d3b0f-0a9d-48cf-98a3-9ec2d805e8a9", serial_number = 56, name = "姚江东路(环城北路-机场路)工程I标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "74c4cf12-880d-49f1-bd53-047bd7f858ac", serial_number = 57, name = "铁路平改立新大路(329国道 -金牌公路)工程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "37a5cc48-fe51-4493-b5bd-2dd0b42088b3", serial_number = 58, name = "机场快速路南延南段(绕城高速-岳林东路)工程施工Ⅸ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "9ef49c31-8224-4c03-91e8-821d7b36b377", serial_number = 59, name = "姚江南岸滨江休闲带(机场路-青林渡路)工程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "8424686e-6e8a-49ca-b1db-8635ebda2157", serial_number = 60, name = "宁波北仑柴桥净化水厂EPC总承包项目",type= EnumProjectType.ShiZheng }, + new Projects { Id = "44eebc4d-b467-477b-8c01-65931593722a", serial_number = 61, name = "沿山干河、陈渡界北三河周边剩余地块绿带工程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "5c4796db-5b4a-4259-b8b1-d89846d984ee", serial_number = 62, name = "铸锋路(康庄北路-通园路)拓宽改建工程Ⅱ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "a4054e2d-7f81-411e-8673-7b05938654f7", serial_number = 63, name = "柴桥临港产业园横二路(纬中路-环区路)工程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "85f873b8-ae62-4e5a-bab8-92332304368a", serial_number = 64, name = "机场快速路南延工程(绕城高速至岳林东路南)施工Ⅰ标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "5e0e10fa-a4cc-4a7f-b5a5-9b0ca0e0a9af", serial_number = 65, name = "宁波杭州湾新区南部新城海泉湾博华路市政工程项目/宁波杭州湾新区南部新城海泉湾规划二路市政工程项目",type= EnumProjectType.ShiZheng }, + new Projects { Id = "562be9ce-e9fd-4d81-b8a2-636fbc25d9c1", serial_number = 66, name = "宁波杭州湾新区海川大道(七塘公路—滨海一路)市政工程标段Ⅰ",type= EnumProjectType.ShiZheng }, + new Projects { Id = "d52f2db9-07a5-4b77-add5-65c3b0a021e1", serial_number = 67, name = "梅景路改造(冬青路-渡驾桥江)工程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "a9be40e3-99b3-4d94-aaaa-92711f853075", serial_number = 68, name = "云飞路三期(康庄南路-长岛花园东侧路)工 程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "9b654b10-36d8-4530-8390-1406dc38bd84", serial_number = 69, name = "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)一标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "594b2558-3c4d-4af5-a79e-17c74886b0b9", serial_number = 70, name = "应家经济适用房东侧保障性住房区块3#-1、4#地块项目景观绿化及市政附属工程(施工)二标段",type= EnumProjectType.ShiZheng }, + new Projects { Id = "a3667aa7-9403-4cc6-a85e-42b96815ac32", serial_number = 71, name = "灵岩山路东延及沿山河南路延伸段工程一期",type= EnumProjectType.ShiZheng }, + new Projects { Id = "6e8d85df-e9ed-4386-9b15-7c19eaccb199", serial_number = 72, name = "慈溪高新区基础设施建设四期",type= EnumProjectType.ShiZheng }, + new Projects { Id = "996d15ac-467d-4ff8-8935-76517cc84fb7", serial_number = 73, name = "慈溪滨海经济开发区龙山滨海新城蓬苑路(横五路-横四路)工程",type= EnumProjectType.ShiZheng }, + new Projects { Id = "91fd6b72-a524-480d-aadf-6e3bae73fbcb", serial_number = 74, name = "宁波市轨道交通4号线土建工程TJ4001标段(翠柏里站)施工",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "051a42c4-d157-47db-9887-12d5ea917922", serial_number = 75, name = "宁波市轨道交通4号线土建工程TJ4011标段施工",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "a25b1db3-23a2-4ea5-b10c-f020325c292f", serial_number = 76, name = "宁波市轨道交通4号线工程供电系统安装施工Ⅱ标段",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "5a9e2016-1c56-4435-8aed-4221bff231da", serial_number = 77, name = "宁波市轨道交通4号线土建工程(第一批)TJ4015标段施工",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "9c670713-7d5f-4372-ab7c-246e8e6dd3cf", serial_number = 78, name = "宁波市轨道交通4号线土建工程TJ4013标段施工",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "e4f7391b-a0a4-48d0-a803-4be81e52bbb9", serial_number = 79, name = "宁波市轨道交通4号线工程JDSG4006标段车站机电安装施工",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "d7c8a941-e37a-4889-b862-2b4c2fb8a992", serial_number = 80, name = "宁波市轨道交通4号线土建工程(第四批)TJ4008标段施工",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "1ed52273-3c72-4f79-919c-0c4020e4cdf3", serial_number = 81, name = "宁波市轨道交通4号线土建工程(第四批)TJ4017标段施工",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "aa28f286-cc5d-4051-978d-43ef4014cf5e", serial_number = 82, name = "宁波市轨道交通4号线土建工程TJ4016标",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "a3f6eea4-0349-4ddd-bfa7-33c0427bc90a", serial_number = 83, name = "宁波市轨道交通4号线工程地下段轨道工程施工Ⅱ标段",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "c04fa383-a9b0-47e4-a91c-9f1b657ac55b", serial_number = 84, name = "宁波市轨道交通4号线土建工程(第二批)TJ4004标段施工",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "40b27864-99c0-4d04-889c-5f9ff17cf726", serial_number = 85, name = "宁波市轨道交通4号线土建工程TJ4018标",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "b05f4d26-1b04-4a23-a295-8848ce4aa73e", serial_number = 86, name = "宁波市轨道交通4号线土建工程TJ4012标段施工",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "424b6a6a-8e16-4e5e-936b-25a73a3c244b", serial_number = 87, name = "宁波市轨道交通4号线土建工程(第五批)TJ4007标段施工",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "1a317eb0-a5fd-420a-b273-ca9d6a006921", serial_number = 88, name = "宁波市轨道交通4号线工程地下段轨道工程施工I标段",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "8fce8773-1eb4-4031-b9bd-60ce0fab8c18", serial_number = 89, name = "宁波市轨道交通4号线工程JDSG4004标段车站机电安装施工",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "d25f90c3-8125-4821-86cf-fbd3b879dd4b", serial_number = 90, name = "宁波市轨道交通4号线土建工程(第四批)TJ4003标段施工",type= EnumProjectType.GuiDaoGongCheng }, + new Projects { Id = "25d0bc9e-30db-4768-9996-624312a0450c", serial_number = 91, name = "协丰220千伏变电站工程",type= EnumProjectType.DianLiGongCheng }, + new Projects { Id = "1d3333dd-ed50-4dcc-b210-2d44190febde", serial_number = 92, name = "新乐220千伏变电站整体改造工程",type= EnumProjectType.DianLiGongCheng }, + new Projects { Id = "b23702d5-9c73-4c79-aa63-fe2245f4d65d", serial_number = 93, name = "38省道宁海桥头胡至深甽段改建工程",type= EnumProjectType.JiaoTongGongCheng }, + new Projects { Id = "88909223-8273-4b3d-9b56-ba32e038ed35", serial_number = 94, name = "71省道盛宁线东陈至茅洋段改建工程",type= EnumProjectType.JiaoTongGongCheng }, + new Projects { Id = "f3ed2aeb-ac40-4580-bb37-008bea343731", serial_number = 95, name = "明州大道(洞桥至云龙段)工程第IV-2合同段",type= EnumProjectType.JiaoTongGongCheng }, + new Projects { Id = "4743c1eb-7135-4ea9-81f8-cf6d825e0ad5", serial_number = 96, name = "沿海中线北仑郭巨段(郭巨互通-北堤互通)拓宽工程",type= EnumProjectType.JiaoTongGongCheng }, + new Projects { Id = "4dcf10bd-93e6-43aa-8e18-9410392a8701", serial_number = 97, name = "梅山磨头碶移位及配套河道工程",type= EnumProjectType.ShuiLiGongCheng }, + new Projects { Id = "88b56348-6d04-45b4-8dc5-ba4c3b5303a7", serial_number = 98, name = "余姚市海塘除险治江围涂四期工程--临海北顺堤堤顶道路、堤岸防护及河道配套工程",type= EnumProjectType.ShuiLiGongCheng }, + new Projects { Id = "f2dc17f8-7bd1-4f6e-b16a-674e1ec34ed0", serial_number = 99, name = "庄桥机场周边区域水环境治理工程(江北大河整治工程二期庄桥段)",type= EnumProjectType.ShuiLiGongCheng }, + new Projects { Id = "64d400e2-0247-4c74-a02e-f32753292095", serial_number = 100, name = "掌起镇任佳溪村防洪分流(小流域治理)工程",type= EnumProjectType.ShuiLiGongCheng }, + }; + } + } + + /// + /// 项目类型 + /// + public enum EnumProjectType + { + /// + /// 房建 + /// + [Description("房建工程")] + FangJian, + /// + /// 市政 + /// + [Description("市政工程")] + ShiZheng, + /// + /// 轨道工程 + /// + [Description("轨道工程")] + GuiDaoGongCheng, + /// + /// 电子工程 + /// + [Description("电子工程")] + DianLiGongCheng, + /// + /// 交通工程 + /// + [Description("交通工程")] + JiaoTongGongCheng, + /// + /// 水利工程 + /// + [Description("水利工程")] + ShuiLiGongCheng, + } +} diff --git a/20220330_Vote/Vote.Services/Entities/VoteRecords.cs b/20220330_Vote/Vote.Services/Entities/VoteRecords.cs new file mode 100644 index 0000000..54d6cf1 --- /dev/null +++ b/20220330_Vote/Vote.Services/Entities/VoteRecords.cs @@ -0,0 +1,42 @@ +using Ewide.Core; +using Furion.DatabaseAccessor; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Vote.Services.Entities +{ + /// + /// 投票记录 + /// + public class VoteRecords : DEntityBase + { + /// + /// 专家 + /// + [Comment("专家")] + [MaxLength(36)] + public string expert_login_code { get; set; } + /// + /// 项目Id + /// + [Comment("项目Id")] + [MaxLength(36)] + public string project_id { get; set; } + /// + /// 是否同意 + /// + [Comment("是否同意")] + public bool is_agree { get; set; } + /// + /// 投票时间 + /// + [Comment("投票时间")] + public DateTime vote_time { get; set; } + } + +} diff --git a/20220330_Vote/Vote.Services/Vote.Services.csproj b/20220330_Vote/Vote.Services/Vote.Services.csproj new file mode 100644 index 0000000..863ec06 --- /dev/null +++ b/20220330_Vote/Vote.Services/Vote.Services.csproj @@ -0,0 +1,15 @@ + + + + net5.0 + + + + D:\temp_task\20220313\gitcode\number_zj\20220330_Vote\Vote.Services\Vote.Services.xml + + + + + + + diff --git a/20220330_Vote/Vote.Services/Vote.Services.xml b/20220330_Vote/Vote.Services/Vote.Services.xml new file mode 100644 index 0000000..401b9b8 --- /dev/null +++ b/20220330_Vote/Vote.Services/Vote.Services.xml @@ -0,0 +1,134 @@ + + + + Vote.Services + + + + + 项目 + + + + + 列表 + + + + + + 项目序号 + + + + + 工程名称 + + + + + 项目类型 + + + + + 项目类型 + + + + + 专家表 + + + + + 登录码 + + + + + 项目表 + + + + + 项目序号 + + + + + 工程名称 + + + + + 项目类型 + + + + + + + + + + 项目类型 + + + + + 房建 + + + + + 市政 + + + + + 轨道工程 + + + + + 电子工程 + + + + + 交通工程 + + + + + 水利工程 + + + + + 投票记录 + + + + + 专家 + + + + + 项目Id + + + + + 是否同意 + + + + + 投票时间 + + + + diff --git a/20220330_Vote/Yongjiangbei_Vote.sln b/20220330_Vote/Yongjiangbei_Vote.sln index 07def89..9f338ce 100644 --- a/20220330_Vote/Yongjiangbei_Vote.sln +++ b/20220330_Vote/Yongjiangbei_Vote.sln @@ -21,6 +21,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RoadFlow.Pinyin", "RoadFlow EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ewide.Application", "Ewide.Application\Ewide.Application.csproj", "{52AE2AA4-084D-4776-A8EC-885B7924DF73}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Vote.Services", "Vote.Services\Vote.Services.csproj", "{A526F736-B539-4DD2-B88A-217824F6528A}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -59,6 +61,10 @@ Global {52AE2AA4-084D-4776-A8EC-885B7924DF73}.Debug|Any CPU.Build.0 = Debug|Any CPU {52AE2AA4-084D-4776-A8EC-885B7924DF73}.Release|Any CPU.ActiveCfg = Release|Any CPU {52AE2AA4-084D-4776-A8EC-885B7924DF73}.Release|Any CPU.Build.0 = Release|Any CPU + {A526F736-B539-4DD2-B88A-217824F6528A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A526F736-B539-4DD2-B88A-217824F6528A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A526F736-B539-4DD2-B88A-217824F6528A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A526F736-B539-4DD2-B88A-217824F6528A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE