From a59e5d99a77fcb152e6fe49df78f69cb5fd6c5a0 Mon Sep 17 00:00:00 2001
From: sunpengfei <i@angelzzz.com>
Date: 星期二, 19 八月 2025 15:58:10 +0800
Subject: [PATCH] feat:开发

---
 FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs |   65 ++++++++++++++++++++++++++++++++
 1 files changed, 65 insertions(+), 0 deletions(-)

diff --git a/FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs b/FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs
index 8b505c3..984d87c 100644
--- a/FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs
+++ b/FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs
@@ -265,6 +265,9 @@
                     b.Property<string>("EstablishmentDate")
                         .HasColumnType("nvarchar(max)");
 
+                    b.Property<Guid?>("IndustrialParkId")
+                        .HasColumnType("uniqueidentifier");
+
                     b.Property<string>("IndustryTypeCode")
                         .HasColumnType("nvarchar(128)");
 
@@ -1160,6 +1163,9 @@
                     b.Property<int>("RecommendStatus")
                         .HasColumnType("int");
 
+                    b.Property<DateTime?>("RecommendTime")
+                        .HasColumnType("datetime2");
+
                     b.Property<int>("ReleaseStatus")
                         .HasColumnType("int");
 
@@ -1171,6 +1177,9 @@
 
                     b.Property<int?>("SettlementStatus")
                         .HasColumnType("int");
+
+                    b.Property<DateTime?>("SettlementTime")
+                        .HasColumnType("datetime2");
 
                     b.Property<int>("Sort")
                         .HasColumnType("int");
@@ -1938,6 +1947,49 @@
                     b.ToTable("UserExpectJob");
                 });
 
+            modelBuilder.Entity("FlexJobApi.Core.UserManageIndustrialPark", b =>
+                {
+                    b.Property<Guid>("Id")
+                        .ValueGeneratedOnAdd()
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<Guid?>("CreatedEnterpriseId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<DateTimeOffset>("CreatedTime")
+                        .HasColumnType("datetimeoffset");
+
+                    b.Property<Guid?>("CreatedUserId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<Guid>("IndustrialParkId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<bool>("IsDeleted")
+                        .HasColumnType("bit");
+
+                    b.Property<int>("Sort")
+                        .HasColumnType("int");
+
+                    b.Property<string>("TraceId")
+                        .HasColumnType("nvarchar(max)");
+
+                    b.Property<DateTimeOffset?>("UpdatedTime")
+                        .HasColumnType("datetimeoffset");
+
+                    b.Property<Guid?>("UpdatedUserId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.Property<Guid>("UserId")
+                        .HasColumnType("uniqueidentifier");
+
+                    b.HasKey("Id");
+
+                    b.HasIndex("UserId");
+
+                    b.ToTable("UserManageIndustrialPark");
+                });
+
             modelBuilder.Entity("FlexJobApi.Core.UserPhoto", b =>
                 {
                     b.Property<Guid>("Id")
@@ -2430,6 +2482,17 @@
                     b.Navigation("User");
                 });
 
+            modelBuilder.Entity("FlexJobApi.Core.UserManageIndustrialPark", b =>
+                {
+                    b.HasOne("FlexJobApi.Core.User", "User")
+                        .WithMany("UserManageIndustrialParks")
+                        .HasForeignKey("UserId")
+                        .OnDelete(DeleteBehavior.Cascade)
+                        .IsRequired();
+
+                    b.Navigation("User");
+                });
+
             modelBuilder.Entity("FlexJobApi.Core.UserPhoto", b =>
                 {
                     b.HasOne("FlexJobApi.Core.User", "User")
@@ -2537,6 +2600,8 @@
 
                     b.Navigation("UserExpectJobs");
 
+                    b.Navigation("UserManageIndustrialParks");
+
                     b.Navigation("UserRoles");
                 });
 #pragma warning restore 612, 618

--
Gitblit v1.9.1