//
using System;
using JiShe.IoT.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Volo.Abp.EntityFrameworkCore;
#nullable disable
namespace JiShe.IoT.Migrations
{
[DbContext(typeof(IoTDbContext))]
partial class IoTDbContextModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.MySql)
.HasAnnotation("ProductVersion", "9.0.0")
.HasAnnotation("Relational:MaxIdentifierLength", 64);
MySqlModelBuilderExtensions.AutoIncrementColumns(modelBuilder);
modelBuilder.Entity("JiShe.ServicePro.BasicManagement.UserRefreshTokens.UserRefreshToken", b =>
{
b.Property("Id")
.HasColumnType("char(36)");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("char(36)")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("char(36)")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("datetime(6)")
.HasColumnName("DeletionTime");
b.Property("ExpirationTime")
.HasColumnType("datetime(6)")
.HasComment("过期时间");
b.Property("ExtraProperties")
.IsRequired()
.HasColumnType("longtext")
.HasColumnName("ExtraProperties");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("tinyint(1)")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("IsUsed")
.HasColumnType("tinyint(1)")
.HasComment("是否使用");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("char(36)")
.HasColumnName("LastModifierId");
b.Property("RefreshToken")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("刷新token");
b.Property("TenantId")
.HasColumnType("char(36)")
.HasColumnName("TenantId");
b.Property("Token")
.IsRequired()
.HasMaxLength(1024)
.HasColumnType("varchar(1024)")
.HasComment("Token");
b.Property("UserId")
.HasColumnType("char(36)")
.HasComment("用户id");
b.HasKey("Id");
b.HasIndex("RefreshToken");
b.ToTable("ServiceProUserRefreshTokens", (string)null);
});
modelBuilder.Entity("JiShe.ServicePro.DataDictionaryManagement.DataDictionaries.Aggregates.DataDictionary", b =>
{
b.Property("Id")
.HasColumnType("char(36)");
b.Property("Code")
.IsRequired()
.HasMaxLength(64)
.HasColumnType("varchar(64)");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("char(36)")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("char(36)")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("datetime(6)")
.HasColumnName("DeletionTime");
b.Property("Description")
.IsRequired()
.HasMaxLength(1024)
.HasColumnType("varchar(1024)");
b.Property("DisplayText")
.IsRequired()
.HasMaxLength(64)
.HasColumnType("varchar(64)");
b.Property("ExtraProperties")
.IsRequired()
.HasColumnType("longtext")
.HasColumnName("ExtraProperties");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("tinyint(1)")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("char(36)")
.HasColumnName("LastModifierId");
b.Property("TenantId")
.HasColumnType("char(36)")
.HasColumnName("TenantId");
b.HasKey("Id");
b.ToTable("AbpDataDictionaries", (string)null);
});
modelBuilder.Entity("JiShe.ServicePro.DataDictionaryManagement.DataDictionaries.Aggregates.DataDictionaryDetail", b =>
{
b.Property("Id")
.HasColumnType("char(36)");
b.Property("Code")
.HasColumnType("longtext");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("char(36)")
.HasColumnName("CreatorId");
b.Property("DataDictionaryId")
.HasColumnType("char(36)");
b.Property("Description")
.HasColumnType("longtext");
b.Property("DisplayText")
.HasColumnType("longtext");
b.Property("IsEnabled")
.HasColumnType("tinyint(1)");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("char(36)")
.HasColumnName("LastModifierId");
b.Property("Order")
.HasColumnType("int");
b.HasKey("Id");
b.HasIndex("DataDictionaryId");
b.ToTable("AbpDataDictionaryDetails", (string)null);
});
modelBuilder.Entity("JiShe.ServicePro.DeviceManagement.Focuses.FocusInfo", b =>
{
b.Property("Id")
.HasColumnType("char(36)");
b.Property("APN")
.HasMaxLength(20)
.HasColumnType("varchar(20)")
.HasComment("APN");
b.Property("BusinessSystem")
.HasColumnType("int")
.HasComment("业务系统");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("char(36)")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("char(36)")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("datetime(6)")
.HasColumnName("DeletionTime");
b.Property("DeviceNo")
.HasMaxLength(80)
.HasColumnType("varchar(80)")
.HasComment("设备编号");
b.Property("Enabled")
.HasColumnType("tinyint(1)")
.HasComment("是否启用");
b.Property("ExtraProperties")
.HasColumnType("longtext")
.HasColumnName("ExtraProperties")
.HasComment("扩展属性,用于存储自定义字段,JSON格式");
b.Property("FocusAddress")
.IsRequired()
.HasMaxLength(20)
.HasColumnType("varchar(20)")
.HasComment("集中器地址");
b.Property("FocusCode")
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("集中器型号");
b.Property("FocusId")
.HasColumnType("bigint")
.HasComment("集中器ID");
b.Property("HardwareReleaseDate")
.HasMaxLength(80)
.HasColumnType("varchar(80)")
.HasComment("硬件软件发布日期:日月年");
b.Property("HardwareVersion")
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasComment("硬件软件版本号");
b.Property("HeartbeatInterval")
.HasColumnType("int")
.HasComment("心跳间隔");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("tinyint(1)")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("char(36)")
.HasColumnName("LastModifierId");
b.Property("LastRefreshTime")
.HasColumnType("datetime(6)")
.HasComment("最后刷新时间");
b.Property("MakerNo")
.HasMaxLength(80)
.HasColumnType("varchar(80)")
.HasComment("厂商代号");
b.Property("MasterStation")
.HasMaxLength(80)
.HasColumnType("varchar(80)")
.HasComment("主站");
b.Property("Name")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("集中器名称");
b.Property("OSACreatorId")
.HasColumnType("int")
.HasComment("旧系统授权创建者Id");
b.Property("OSADeleterId")
.HasColumnType("int")
.HasComment("旧系统授权最后删除者Id");
b.Property("OSALastModifierId")
.HasColumnType("int")
.HasComment("旧系统授权最后修改者Id");
b.Property("Remark")
.HasColumnType("longtext")
.HasComment("备注");
b.Property("SelfDevelop")
.HasColumnType("tinyint(1)")
.HasComment("是否自研");
b.Property("SoftwareReleaseDate")
.HasMaxLength(80)
.HasColumnType("varchar(80)")
.HasComment("终端软件发布日期:日月年");
b.Property("SoftwareVersion")
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasComment("终端软件版本号");
b.Property("Status")
.HasColumnType("tinyint(1)")
.HasComment("是否在线状态");
b.Property("TenantId")
.HasColumnType("char(36)")
.HasColumnName("TenantId")
.HasComment("租户ID");
b.Property("UpLink")
.HasMaxLength(20)
.HasColumnType("int")
.HasComment("上行链路");
b.HasKey("Id");
b.HasIndex("FocusAddress");
b.ToTable("ServiceProFocusInfo", (string)null);
});
modelBuilder.Entity("JiShe.ServicePro.DeviceManagement.Meters.MeterInfo", b =>
{
b.Property("Id")
.HasColumnType("char(36)");
b.Property("ArchiveStatus")
.HasColumnType("tinyint(1)")
.HasComment("归档状态");
b.Property("Baudrate")
.HasColumnType("int")
.HasComment("波特率");
b.Property("BrandType")
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("品牌类型");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("char(36)")
.HasColumnName("CreatorId");
b.Property("DatabaseBusiID")
.HasColumnType("int")
.HasComment("业务库ID");
b.Property("DeleterId")
.HasColumnType("char(36)")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("datetime(6)")
.HasColumnName("DeletionTime");
b.Property("DynamicPassword")
.HasColumnType("tinyint(1)")
.HasComment("是否动态密码");
b.Property("Enabled")
.HasColumnType("tinyint(1)")
.HasComment("是否启用");
b.Property("ExtraProperties")
.HasColumnType("longtext")
.HasColumnName("ExtraProperties")
.HasComment("扩展属性,用于存储自定义字段,JSON格式");
b.Property("FocusId")
.HasColumnType("int")
.HasComment("集中器ID");
b.Property("FunctionCount")
.HasColumnType("int")
.HasComment("功能数量(包含采集项和阀控等)");
b.Property("GatherCount")
.HasColumnType("int")
.HasComment("采集项数量");
b.Property("HaveValve")
.HasColumnType("tinyint(1)")
.HasComment("是否带阀控");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("tinyint(1)")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("char(36)")
.HasColumnName("LastModifierId");
b.Property("MeterAddress")
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasComment("表计地址");
b.Property("MeterId")
.HasColumnType("int")
.HasComment("表计ID");
b.Property("MeterName")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("表计名称");
b.Property("MeterType")
.HasColumnType("int")
.HasComment("表计类型");
b.Property("MeteringCode")
.HasColumnType("int")
.HasComment("表计编码");
b.Property("MeteringPort")
.HasColumnType("int")
.HasComment("表计端口");
b.Property("OSACreatorId")
.HasColumnType("int")
.HasComment("旧系统授权创建者Id");
b.Property("OSADeleterId")
.HasColumnType("int")
.HasComment("旧系统授权最后删除者Id");
b.Property("OSALastModifierId")
.HasColumnType("int")
.HasComment("旧系统授权最后修改者Id");
b.Property("Password")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("密码");
b.Property("ProjectID")
.HasColumnType("int");
b.Property("Protocol")
.HasColumnType("int")
.HasComment("协议类型");
b.Property("Remark")
.HasColumnType("longtext")
.HasComment("备注");
b.Property("SelfDevelop")
.HasColumnType("tinyint(1)")
.HasComment("是否自研");
b.Property("SingleRate")
.HasColumnType("tinyint(1)")
.HasComment("是否单倍率");
b.Property("TenantId")
.HasColumnType("char(36)")
.HasColumnName("TenantId")
.HasComment("租户ID");
b.Property("TimesA")
.HasColumnType("decimal(65,30)")
.HasComment("倍率A");
b.Property("Timev")
.HasColumnType("decimal(65,30)")
.HasComment("倍率V");
b.Property("TripState")
.HasColumnType("tinyint(1)")
.HasComment("是否跳闸");
b.Property("TypeName")
.HasMaxLength(128)
.HasColumnType("int")
.HasComment("表计类型名称");
b.HasKey("Id");
b.HasIndex("MeterAddress");
b.HasIndex("MeterId");
b.ToTable("ServiceProMeterInfo", (string)null);
});
modelBuilder.Entity("JiShe.ServicePro.DynamicMenuManagement.Menus.Menu", b =>
{
b.Property("Id")
.HasColumnType("char(36)");
b.Property("Component")
.HasMaxLength(512)
.HasColumnType("varchar(512)")
.HasComment("组件地址");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("char(36)")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("char(36)")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("datetime(6)")
.HasColumnName("DeletionTime");
b.Property("DisplayTitle")
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("标准多语言");
b.Property("Enabled")
.HasColumnType("tinyint(1)");
b.Property("ExtraProperties")
.IsRequired()
.HasColumnType("longtext")
.HasColumnName("ExtraProperties");
b.Property("HideInMenu")
.HasColumnType("tinyint(1)")
.HasComment("是否显示");
b.Property("Icon")
.HasColumnType("longtext")
.HasComment("图标");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("tinyint(1)")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("KeepAlive")
.HasColumnType("tinyint(1)")
.HasComment("是否缓存");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("char(36)")
.HasColumnName("LastModifierId");
b.Property("MenuType")
.HasColumnType("int")
.HasComment("菜单类型");
b.Property("Name")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("唯一编码");
b.Property("OpenType")
.HasColumnType("int")
.HasComment("打开类型");
b.Property("Order")
.HasColumnType("int")
.HasComment("排序");
b.Property("ParentId")
.HasColumnType("char(36)");
b.Property("Path")
.IsRequired()
.HasMaxLength(512)
.HasColumnType("varchar(512)")
.HasComment("路由/接口地址");
b.Property("Policy")
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("授权策略名称");
b.Property("TenantId")
.HasColumnType("char(36)")
.HasColumnName("TenantId");
b.Property("Title")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("标题");
b.Property("Url")
.HasColumnType("longtext")
.HasComment("内外链地址");
b.HasKey("Id");
b.ToTable("ServiceProMenus", (string)null);
});
modelBuilder.Entity("JiShe.ServicePro.FileManagement.Files.FileObject", b =>
{
b.Property("Id")
.HasColumnType("char(36)");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("ContentType")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("文件名称");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("char(36)")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("char(36)")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("datetime(6)")
.HasColumnName("DeletionTime");
b.Property("ExtraProperties")
.IsRequired()
.HasColumnType("longtext")
.HasColumnName("ExtraProperties");
b.Property("FileName")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("文件名称");
b.Property("FileSize")
.HasColumnType("bigint")
.HasComment("文件大小");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("tinyint(1)")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("char(36)")
.HasColumnName("LastModifierId");
b.Property("TenantId")
.HasColumnType("char(36)")
.HasColumnName("TenantId");
b.HasKey("Id");
b.HasIndex("FileName");
b.ToTable("AbpFileObjects", (string)null);
});
modelBuilder.Entity("JiShe.ServicePro.LanguageManagement.LanguageTexts.Aggregates.LanguageText", b =>
{
b.Property("Id")
.HasColumnType("char(36)");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("char(36)")
.HasColumnName("CreatorId");
b.Property("CultureName")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("语言名称");
b.Property("DeleterId")
.HasColumnType("char(36)")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("datetime(6)")
.HasColumnName("DeletionTime");
b.Property("ExtraProperties")
.IsRequired()
.HasColumnType("longtext")
.HasColumnName("ExtraProperties");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("tinyint(1)")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("char(36)")
.HasColumnName("LastModifierId");
b.Property("Name")
.IsRequired()
.HasMaxLength(256)
.HasColumnType("varchar(256)")
.HasComment("名称");
b.Property("ResourceName")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("资源名称");
b.Property("TenantId")
.HasColumnType("char(36)")
.HasColumnName("TenantId");
b.Property("Value")
.IsRequired()
.HasMaxLength(256)
.HasColumnType("varchar(256)")
.HasComment("值");
b.HasKey("Id");
b.HasIndex("TenantId", "ResourceName", "CultureName");
b.ToTable("AbpLanguageTexts", (string)null);
});
modelBuilder.Entity("JiShe.ServicePro.LanguageManagement.Languages.Aggregates.Language", b =>
{
b.Property("Id")
.HasColumnType("char(36)");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("char(36)")
.HasColumnName("CreatorId");
b.Property("CultureName")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("语言名称");
b.Property("DeleterId")
.HasColumnType("char(36)")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("datetime(6)")
.HasColumnName("DeletionTime");
b.Property("DisplayName")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("显示名称");
b.Property("ExtraProperties")
.IsRequired()
.HasColumnType("longtext")
.HasColumnName("ExtraProperties");
b.Property("FlagIcon")
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("图标");
b.Property("IsDefault")
.HasColumnType("tinyint(1)");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("tinyint(1)")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("IsEnabled")
.HasColumnType("tinyint(1)");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("char(36)")
.HasColumnName("LastModifierId");
b.Property("TenantId")
.HasColumnType("char(36)")
.HasColumnName("TenantId");
b.Property("UiCultureName")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("Ui语言名称");
b.HasKey("Id");
b.HasIndex("CultureName");
b.ToTable("AbpLanguages", (string)null);
});
modelBuilder.Entity("JiShe.ServicePro.NotificationManagement.Notifications.Aggregates.Notification", b =>
{
b.Property("Id")
.HasColumnType("char(36)");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("Content")
.IsRequired()
.HasMaxLength(1024)
.HasColumnType("varchar(1024)");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("char(36)")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("char(36)")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("datetime(6)")
.HasColumnName("DeletionTime");
b.Property("ExtraProperties")
.IsRequired()
.HasColumnType("longtext")
.HasColumnName("ExtraProperties");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("tinyint(1)")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("char(36)")
.HasColumnName("LastModifierId");
b.Property("MessageLevel")
.HasColumnType("int");
b.Property("MessageType")
.HasColumnType("int");
b.Property("Read")
.HasColumnType("tinyint(1)");
b.Property("ReadTime")
.HasColumnType("datetime(6)");
b.Property("ReceiveUserId")
.HasColumnType("char(36)");
b.Property("ReceiveUserName")
.HasMaxLength(128)
.HasColumnType("varchar(128)");
b.Property("SenderUserId")
.HasColumnType("char(36)");
b.Property("SenderUserName")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)");
b.Property("TenantId")
.HasColumnType("char(36)")
.HasColumnName("TenantId");
b.Property("Title")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)");
b.HasKey("Id");
b.ToTable("AbpNotifications", (string)null);
});
modelBuilder.Entity("JiShe.ServicePro.NotificationManagement.Notifications.Aggregates.NotificationSubscription", b =>
{
b.Property("Id")
.HasColumnType("char(36)");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("char(36)")
.HasColumnName("CreatorId");
b.Property("DeleterId")
.HasColumnType("char(36)")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("datetime(6)")
.HasColumnName("DeletionTime");
b.Property("ExtraProperties")
.IsRequired()
.HasColumnType("longtext")
.HasColumnName("ExtraProperties");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("tinyint(1)")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("char(36)")
.HasColumnName("LastModifierId");
b.Property("NotificationId")
.HasColumnType("char(36)");
b.Property("Read")
.HasColumnType("tinyint(1)");
b.Property("ReadTime")
.HasColumnType("datetime(6)");
b.Property("ReceiveUserId")
.HasColumnType("char(36)");
b.Property("ReceiveUserName")
.HasMaxLength(128)
.HasColumnType("varchar(128)");
b.Property("TenantId")
.HasColumnType("char(36)")
.HasColumnName("TenantId");
b.HasKey("Id");
b.HasIndex("NotificationId");
b.HasIndex("ReceiveUserId");
b.ToTable("AbpNotificationSubscriptions", (string)null);
});
modelBuilder.Entity("JiShe.ServicePro.TemplateManagement.TextTemplates.TextTemplate", b =>
{
b.Property("Id")
.HasColumnType("char(36)");
b.Property("Code")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("编码");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("Content")
.IsRequired()
.HasMaxLength(1024)
.HasColumnType("varchar(1024)")
.HasComment("内容");
b.Property("CreationTime")
.HasColumnType("datetime(6)")
.HasColumnName("CreationTime");
b.Property("CreatorId")
.HasColumnType("char(36)")
.HasColumnName("CreatorId");
b.Property("CultureName")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("语言");
b.Property("DeleterId")
.HasColumnType("char(36)")
.HasColumnName("DeleterId");
b.Property("DeletionTime")
.HasColumnType("datetime(6)")
.HasColumnName("DeletionTime");
b.Property("ExtraProperties")
.IsRequired()
.HasColumnType("longtext")
.HasColumnName("ExtraProperties");
b.Property("IsDeleted")
.ValueGeneratedOnAdd()
.HasColumnType("tinyint(1)")
.HasDefaultValue(false)
.HasColumnName("IsDeleted");
b.Property("LastModificationTime")
.HasColumnType("datetime(6)")
.HasColumnName("LastModificationTime");
b.Property("LastModifierId")
.HasColumnType("char(36)")
.HasColumnName("LastModifierId");
b.Property("Name")
.IsRequired()
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasComment("名称");
b.Property("TenantId")
.HasColumnType("char(36)")
.HasColumnName("TenantId");
b.HasKey("Id");
b.HasIndex("Code");
b.ToTable("ServiceProTextTemplates", (string)null);
});
modelBuilder.Entity("Volo.Abp.AuditLogging.AuditLog", b =>
{
b.Property("Id")
.HasColumnType("char(36)");
b.Property("ApplicationName")
.HasMaxLength(96)
.HasColumnType("varchar(96)")
.HasColumnName("ApplicationName");
b.Property("BrowserInfo")
.HasMaxLength(512)
.HasColumnType("varchar(512)")
.HasColumnName("BrowserInfo");
b.Property("ClientId")
.HasMaxLength(64)
.HasColumnType("varchar(64)")
.HasColumnName("ClientId");
b.Property("ClientIpAddress")
.HasMaxLength(64)
.HasColumnType("varchar(64)")
.HasColumnName("ClientIpAddress");
b.Property("ClientName")
.HasMaxLength(128)
.HasColumnType("varchar(128)")
.HasColumnName("ClientName");
b.Property("Comments")
.HasMaxLength(256)
.HasColumnType("varchar(256)")
.HasColumnName("Comments");
b.Property("ConcurrencyStamp")
.IsConcurrencyToken()
.IsRequired()
.HasMaxLength(40)
.HasColumnType("varchar(40)")
.HasColumnName("ConcurrencyStamp");
b.Property("CorrelationId")
.HasMaxLength(64)
.HasColumnType("varchar(64)")
.HasColumnName("CorrelationId");
b.Property("Exceptions")
.HasColumnType("longtext");
b.Property("ExecutionDuration")
.HasColumnType("int")
.HasColumnName("ExecutionDuration");
b.Property("ExecutionTime")
.HasColumnType("datetime(6)");
b.Property("ExtraProperties")
.IsRequired()
.HasColumnType("longtext")
.HasColumnName("ExtraProperties");
b.Property("HttpMethod")
.HasMaxLength(16)
.HasColumnType("varchar(16)")
.HasColumnName("HttpMethod");
b.Property("HttpStatusCode")
.HasColumnType("int")
.HasColumnName("HttpStatusCode");
b.Property