| | |
| | | b.Property<int?>("Age") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<DateTime?>("Birthday") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<string>("ContactPhoneNumber") |
| | | .HasMaxLength(11) |
| | | .HasColumnType("nvarchar(11)"); |
| | |
| | | |
| | | b.Property<int?>("Gender") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<int>("HireStatus") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<DateTime?>("HireTime") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<string>("Identity") |
| | | .HasColumnType("nvarchar(max)"); |
| | |
| | | |
| | | b.Property<string>("DynamicAssemblyName") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<bool>("FileUpload") |
| | | .HasColumnType("bit"); |
| | | |
| | | b.Property<bool>("IsDeleted") |
| | | .HasColumnType("bit"); |
| | |
| | | |
| | | b.Property<Guid>("EnterpriseEmployeeId") |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<int>("HireStatus") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<DateTime?>("HireTime") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<bool>("IsDeleted") |
| | | .HasColumnType("bit"); |
| | |
| | | .IsRequired(); |
| | | |
| | | b.HasOne("FlexJobApi.Core.User", "User") |
| | | .WithMany() |
| | | .WithMany("EnterpriseUserCollects") |
| | | .HasForeignKey("UserId") |
| | | .OnDelete(DeleteBehavior.Cascade) |
| | | .IsRequired(); |
| | |
| | | modelBuilder.Entity("FlexJobApi.Core.TaskUserCollect", b => |
| | | { |
| | | b.HasOne("FlexJobApi.Core.TaskInfo", "TaskInfo") |
| | | .WithMany() |
| | | .WithMany("TaskUserCollects") |
| | | .HasForeignKey("TaskInfoId") |
| | | .OnDelete(DeleteBehavior.Cascade) |
| | | .IsRequired(); |
| | |
| | | b.Navigation("CredentialLimits"); |
| | | |
| | | b.Navigation("TaskInfoUsers"); |
| | | |
| | | b.Navigation("TaskUserCollects"); |
| | | }); |
| | | |
| | | modelBuilder.Entity("FlexJobApi.Core.TaskInfoUser", b => |
| | |
| | | |
| | | b.Navigation("EnterpriseEmployees"); |
| | | |
| | | b.Navigation("EnterpriseUserCollects"); |
| | | |
| | | b.Navigation("Photos"); |
| | | |
| | | b.Navigation("UserAuth"); |