| | |
| | | b.Property<int?>("CheckReceiveStatus") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<DateTime?>("CheckReceiveTime") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<string>("CityCode") |
| | | .HasColumnType("nvarchar(128)"); |
| | | |
| | |
| | | |
| | | 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)"); |
| | |
| | | b.Property<bool>("IsDeleted") |
| | | .HasColumnType("bit"); |
| | | |
| | | b.Property<DateTime?>("LastCheckReceiveTime") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<DateTime?>("LastSubmitTime") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<int>("Sort") |
| | | .HasColumnType("int"); |
| | | |
| | |
| | | b.Property<int>("CheckReceiveStatus") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<DateTime?>("CheckReceiveTime") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<Guid?>("CreatedEnterpriseId") |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | |
| | | |
| | | b.Property<Guid?>("CreatedUserId") |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<DateTime>("Date") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<bool>("IsDeleted") |
| | | .HasColumnType("bit"); |
| | |
| | | b.Property<Guid?>("CreatedUserId") |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<DateTime>("EndDate") |
| | | b.Property<DateTime?>("EndDate") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<string>("Img") |
| | |
| | | b.Property<int>("Sort") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<DateTime>("StartDate") |
| | | b.Property<DateTime?>("StartDate") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<string>("TraceId") |
| | |
| | | modelBuilder.Entity("FlexJobApi.Core.TaskInfoUserSubmit", b => |
| | | { |
| | | b.HasOne("FlexJobApi.Core.TaskInfoUser", "TaskInfoUser") |
| | | .WithMany() |
| | | .WithMany("Submits") |
| | | .HasForeignKey("TaskInfoUserId") |
| | | .OnDelete(DeleteBehavior.Cascade) |
| | | .IsRequired(); |
| | |
| | | b.Navigation("TaskInfoUsers"); |
| | | }); |
| | | |
| | | modelBuilder.Entity("FlexJobApi.Core.TaskInfoUser", b => |
| | | { |
| | | b.Navigation("Submits"); |
| | | }); |
| | | |
| | | modelBuilder.Entity("FlexJobApi.Core.TaskInfoUserSubmit", b => |
| | | { |
| | | b.Navigation("Files"); |