You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
612 lines
23 KiB
612 lines
23 KiB
// <auto-generated />
|
|
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Volo.Abp.EntityFrameworkCore;
|
|
using Win_in.Sfs.Message.EntityFrameworkCore;
|
|
|
|
namespace Win_in.Sfs.Message.Migrations
|
|
{
|
|
[DbContext(typeof(MessageHttpApiHostMigrationsDbContext))]
|
|
[Migration("20220826060341_rebuild")]
|
|
partial class rebuild
|
|
{
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer)
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 128)
|
|
.HasAnnotation("ProductVersion", "5.0.17")
|
|
.HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
|
|
|
|
modelBuilder.Entity("Win_in.Sfs.Message.Domain.ChatMessage", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uniqueidentifier");
|
|
|
|
b.Property<string>("Company")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("nvarchar(64)")
|
|
.HasColumnName("Company");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("nvarchar(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<string>("Content")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<int>("EnumMessageLevel")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("EnumSendToType")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("From")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("nvarchar(64)");
|
|
|
|
b.Property<bool>("IsPush")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsRead")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsSendEmail")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsSendSms")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastModificationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("LastModificationTime");
|
|
|
|
b.Property<Guid?>("LastModifierId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("LastModifierId");
|
|
|
|
b.Property<string>("MessageContentType")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<DateTime>("ReadTime")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Remark")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("Remark");
|
|
|
|
b.Property<DateTime>("SendTime")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.Property<string>("Title")
|
|
.IsRequired()
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("To")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("nvarchar(64)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Company");
|
|
|
|
b.ToTable("MessageChatMessage");
|
|
});
|
|
|
|
modelBuilder.Entity("Win_in.Sfs.Message.Domain.MessageType", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("uniqueidentifier");
|
|
|
|
b.Property<string>("Company")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("nvarchar(64)")
|
|
.HasColumnName("Company");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("nvarchar(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<string>("EmailTemplateName")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<bool>("IsSendEmail")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsSendSms")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastModificationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("LastModificationTime");
|
|
|
|
b.Property<Guid?>("LastModifierId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("LastModifierId");
|
|
|
|
b.Property<int>("MessageCategory")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("MessageTypeName")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Remark")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("Remark");
|
|
|
|
b.Property<string>("SmsTemplateName")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Company");
|
|
|
|
b.ToTable("MessageMessageType");
|
|
});
|
|
|
|
modelBuilder.Entity("Win_in.Sfs.Message.Domain.MessageType__SubscribePeople", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("uniqueidentifier");
|
|
|
|
b.Property<string>("Company")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("nvarchar(64)")
|
|
.HasColumnName("Company");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("nvarchar(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<DateTime?>("LastModificationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("LastModificationTime");
|
|
|
|
b.Property<Guid?>("LastModifierId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("LastModifierId");
|
|
|
|
b.Property<Guid>("MessageTypeId")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("uniqueidentifier");
|
|
|
|
b.Property<Guid>("PeopleId")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("uniqueidentifier");
|
|
|
|
b.Property<string>("Remark")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("Remark");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Company");
|
|
|
|
b.ToTable("MessageMessageType__SubscribePeople");
|
|
});
|
|
|
|
modelBuilder.Entity("Win_in.Sfs.Message.Domain.SiteMessage", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uniqueidentifier");
|
|
|
|
b.Property<string>("Company")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("nvarchar(64)")
|
|
.HasColumnName("Company");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("nvarchar(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<string>("Content")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<int>("EnumMessageLevel")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("EnumMessageStats")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("EnumSendToType")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("From")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("nvarchar(64)");
|
|
|
|
b.Property<DateTime?>("LastModificationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("LastModificationTime");
|
|
|
|
b.Property<Guid?>("LastModifierId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("LastModifierId");
|
|
|
|
b.Property<string>("MessageContentType")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<Guid>("MessageTypeId")
|
|
.HasColumnType("uniqueidentifier");
|
|
|
|
b.Property<string>("Remark")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("Remark");
|
|
|
|
b.Property<DateTime>("SendTime")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.Property<string>("Title")
|
|
.IsRequired()
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Company");
|
|
|
|
b.ToTable("MessageSiteMessage");
|
|
});
|
|
|
|
modelBuilder.Entity("Win_in.Sfs.Message.Domain.SiteMessage__SubscribePeople", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("uniqueidentifier");
|
|
|
|
b.Property<string>("Company")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("nvarchar(64)")
|
|
.HasColumnName("Company");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("nvarchar(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<bool>("IsPush")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsRead")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsSenTEmail")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsSenTSms")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastModificationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("LastModificationTime");
|
|
|
|
b.Property<Guid?>("LastModifierId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("LastModifierId");
|
|
|
|
b.Property<Guid>("PeopleId")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("uniqueidentifier");
|
|
|
|
b.Property<DateTime>("PushDateTime")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<DateTime>("ReadDateTime")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Remark")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("Remark");
|
|
|
|
b.Property<Guid>("SiteMessageId")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("uniqueidentifier");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Company");
|
|
|
|
b.ToTable("MessageSiteMessage__SubscribePeople");
|
|
});
|
|
|
|
modelBuilder.Entity("Win_in.Sfs.Message.Domain.SubscribePeople", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("uniqueidentifier");
|
|
|
|
b.Property<string>("Company")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("nvarchar(64)")
|
|
.HasColumnName("Company");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("nvarchar(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<string>("Email")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<DateTime?>("LastModificationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("LastModificationTime");
|
|
|
|
b.Property<Guid?>("LastModifierId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("LastModifierId");
|
|
|
|
b.Property<string>("NickName")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("nvarchar(64)");
|
|
|
|
b.Property<Guid>("PeopleId")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("uniqueidentifier");
|
|
|
|
b.Property<string>("PhoneNumber")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Remark")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("Remark");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Company");
|
|
|
|
b.ToTable("MessageSubscribePeople");
|
|
});
|
|
|
|
modelBuilder.Entity("Win_in.Sfs.Message.Domain.SystemMessage", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uniqueidentifier");
|
|
|
|
b.Property<string>("Company")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("nvarchar(64)")
|
|
.HasColumnName("Company");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("nvarchar(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<string>("Content")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<int>("EnumMessageLevel")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("EnumSendToType")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("From")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("nvarchar(64)");
|
|
|
|
b.Property<bool>("IsPush")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsRead")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsSendEmail")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsSendSms")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastModificationTime")
|
|
.HasColumnType("datetime2")
|
|
.HasColumnName("LastModificationTime");
|
|
|
|
b.Property<Guid?>("LastModifierId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("LastModifierId");
|
|
|
|
b.Property<string>("MessageContentType")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<DateTime>("ReadTime")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Remark")
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("nvarchar(max)")
|
|
.HasColumnName("Remark");
|
|
|
|
b.Property<DateTime>("SendTime")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uniqueidentifier")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.Property<string>("Title")
|
|
.IsRequired()
|
|
.HasMaxLength(4096)
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("To")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("nvarchar(64)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Company");
|
|
|
|
b.ToTable("MessageSystemMessage");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|
|
|