From 209c09c20a7737094b660f4f35857e8e989a24c5 Mon Sep 17 00:00:00 2001
From: sunpengfei <i@angelzzz.com>
Date: 星期二, 12 八月 2025 18:19:23 +0800
Subject: [PATCH] feat:开发

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

diff --git a/FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs b/FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs
index bb7a897..03f805a 100644
--- a/FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs
+++ b/FlexJobApi.Database.Migrations/Migrations/DefaultDbContextModelSnapshot.cs
@@ -1245,6 +1245,9 @@
                     b.Property<bool>("IsDeleted")
                         .HasColumnType("bit");
 
+                    b.Property<DateTime?>("LastSubmitTime")
+                        .HasColumnType("datetime2");
+
                     b.Property<int>("Sort")
                         .HasColumnType("int");
 
@@ -1278,6 +1281,9 @@
                     b.Property<int>("CheckReceiveStatus")
                         .HasColumnType("int");
 
+                    b.Property<DateTime?>("CheckReceiveTime")
+                        .HasColumnType("datetime2");
+
                     b.Property<Guid?>("CreatedEnterpriseId")
                         .HasColumnType("uniqueidentifier");
 
@@ -1286,6 +1292,9 @@
 
                     b.Property<Guid?>("CreatedUserId")
                         .HasColumnType("uniqueidentifier");
+
+                    b.Property<DateTime>("Date")
+                        .HasColumnType("datetime2");
 
                     b.Property<bool>("IsDeleted")
                         .HasColumnType("bit");
@@ -2149,7 +2158,7 @@
             modelBuilder.Entity("FlexJobApi.Core.TaskInfoUserSubmit", b =>
                 {
                     b.HasOne("FlexJobApi.Core.TaskInfoUser", "TaskInfoUser")
-                        .WithMany()
+                        .WithMany("Submits")
                         .HasForeignKey("TaskInfoUserId")
                         .OnDelete(DeleteBehavior.Cascade)
                         .IsRequired();
@@ -2386,6 +2395,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