| | |
| | | .ValueGeneratedOnAdd() |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<string>("Address") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<string>("BankBranchName") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | |
| | | .IsRequired() |
| | | .HasMaxLength(128) |
| | | .HasColumnType("nvarchar(128)"); |
| | | |
| | | b.Property<string>("EnterpriseType") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<string>("EstablishmentDate") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<string>("IndustryTypeCode") |
| | | .HasColumnType("nvarchar(128)"); |
| | |
| | | |
| | | b.Property<decimal?>("RealVerifyCost") |
| | | .HasColumnType("decimal(18,2)"); |
| | | |
| | | b.Property<string>("RegisteredCapital") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<decimal?>("SignCost") |
| | | .HasColumnType("decimal(18,2)"); |
| | |
| | | |
| | | 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<Guid>("EnterpriseEmployeeId") |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<int>("HireStatus") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<DateTime?>("HireTime") |
| | | .HasColumnType("datetime2"); |
| | | |
| | | b.Property<bool>("IsDeleted") |
| | | .HasColumnType("bit"); |
| | | |
| | |
| | | b.Property<Guid?>("CreatedUserId") |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<int?>("DataSource") |
| | | .HasColumnType("int"); |
| | | |
| | | b.Property<Guid?>("DataSourceId") |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<string>("EducationalBackgroundCode") |
| | | .HasColumnType("nvarchar(128)"); |
| | | |