From 809cd3966929f4c4f190ed8aa604d137227fe641 Mon Sep 17 00:00:00 2001
From: sunpengfei <i@angelzzz.com>
Date: 星期三, 13 八月 2025 15:39:38 +0800
Subject: [PATCH] feat:开发

---
 FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs |   32 +++++++++++++++++++++++++++++---
 1 files changed, 29 insertions(+), 3 deletions(-)

diff --git a/FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs b/FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs
index bb7a897..57c5542 100644
--- a/FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs
+++ b/FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs
@@ -1039,6 +1039,9 @@
                     b.Property<int?>("CheckReceiveStatus")
                         .HasColumnType("int");
 
+                    b.Property<DateTime?>("CheckReceiveTime")
+                        .HasColumnType("datetime2");
+
                     b.Property<string>("CityCode")
                         .HasColumnType("nvarchar(128)");
 
@@ -1065,6 +1068,12 @@
 
                     b.Property<bool>("IsDeleted")
                         .HasColumnType("bit");
+
+                    b.Property<DateTime?>("LastCheckReceiveTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<DateTime?>("LastSubmitTime")
+                        .HasColumnType("datetime2");
 
                     b.Property<decimal?>("Latitude")
                         .HasColumnType("decimal(18,6)");
@@ -1245,6 +1254,12 @@
                     b.Property<bool>("IsDeleted")
                         .HasColumnType("bit");
 
+                    b.Property<DateTime?>("LastCheckReceiveTime")
+                        .HasColumnType("datetime2");
+
+                    b.Property<DateTime?>("LastSubmitTime")
+                        .HasColumnType("datetime2");
+
                     b.Property<int>("Sort")
                         .HasColumnType("int");
 
@@ -1278,6 +1293,9 @@
                     b.Property<int>("CheckReceiveStatus")
                         .HasColumnType("int");
 
+                    b.Property<DateTime?>("CheckReceiveTime")
+                        .HasColumnType("datetime2");
+
                     b.Property<Guid?>("CreatedEnterpriseId")
                         .HasColumnType("uniqueidentifier");
 
@@ -1286,6 +1304,9 @@
 
                     b.Property<Guid?>("CreatedUserId")
                         .HasColumnType("uniqueidentifier");
+
+                    b.Property<DateTime>("Date")
+                        .HasColumnType("datetime2");
 
                     b.Property<bool>("IsDeleted")
                         .HasColumnType("bit");
@@ -1654,7 +1675,7 @@
                     b.Property<Guid?>("CreatedUserId")
                         .HasColumnType("uniqueidentifier");
 
-                    b.Property<DateTime>("EndDate")
+                    b.Property<DateTime?>("EndDate")
                         .HasColumnType("datetime2");
 
                     b.Property<string>("Img")
@@ -1672,7 +1693,7 @@
                     b.Property<int>("Sort")
                         .HasColumnType("int");
 
-                    b.Property<DateTime>("StartDate")
+                    b.Property<DateTime?>("StartDate")
                         .HasColumnType("datetime2");
 
                     b.Property<string>("TraceId")
@@ -2149,7 +2170,7 @@
             modelBuilder.Entity("FlexJobApi.Core.TaskInfoUserSubmit", b =>
                 {
                     b.HasOne("FlexJobApi.Core.TaskInfoUser", "TaskInfoUser")
-                        .WithMany()
+                        .WithMany("Submits")
                         .HasForeignKey("TaskInfoUserId")
                         .OnDelete(DeleteBehavior.Cascade)
                         .IsRequired();
@@ -2386,6 +2407,11 @@
                     b.Navigation("TaskInfoUsers");
                 });
 
+            modelBuilder.Entity("FlexJobApi.Core.TaskInfoUser", b =>
+                {
+                    b.Navigation("Submits");
+                });
+
             modelBuilder.Entity("FlexJobApi.Core.TaskInfoUserSubmit", b =>
                 {
                     b.Navigation("Files");

--
Gitblit v1.9.1