| | |
| | | .HasColumnType("nvarchar(128)") |
| | | .HasComment("名称"); |
| | | |
| | | b.Property<string>("Remark") |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("备注"); |
| | | |
| | | b.Property<int>("Sort") |
| | | .HasColumnType("int") |
| | | .HasComment("排序"); |
| | |
| | | .HasColumnType("bit") |
| | | .HasComment("是否删除"); |
| | | |
| | | b.Property<bool>("IsDisabled") |
| | | .HasColumnType("bit") |
| | | .HasComment("是否禁用"); |
| | | |
| | | b.Property<Guid?>("ParentId") |
| | | .HasColumnType("uniqueidentifier") |
| | | .HasComment("上级Id"); |
| | |
| | | b.Property<Guid?>("BankCardImgId") |
| | | .HasColumnType("uniqueidentifier") |
| | | .HasComment("法人或经办人银行卡照片Id"); |
| | | |
| | | b.Property<string>("ContactNumber") |
| | | .HasMaxLength(11) |
| | | .HasColumnType("nvarchar(11)") |
| | | .HasComment("联系电话"); |
| | | |
| | | b.Property<string>("Contacts") |
| | | .HasMaxLength(32) |
| | | .HasColumnType("nvarchar(32)") |
| | | .HasComment("联系人"); |
| | | |
| | | b.Property<DateTimeOffset>("CreatedTime") |
| | | .HasColumnType("datetimeoffset"); |
| | |
| | | .HasComment("创建操作人"); |
| | | |
| | | b.Property<int>("DataPower") |
| | | .HasColumnType("int"); |
| | | .HasColumnType("int") |
| | | .HasComment("数据权限"); |
| | | |
| | | b.Property<bool>("IsDeleted") |
| | | .HasColumnType("bit") |
| | | .HasComment("是否删除"); |
| | | |
| | | b.Property<bool>("IsDisabled") |
| | | .HasColumnType("bit") |
| | | .HasComment("是否禁用"); |
| | | |
| | | b.Property<int>("MinLevel") |
| | | .HasColumnType("int") |
| | |
| | | .HasComment("名称"); |
| | | |
| | | b.Property<string>("Remark") |
| | | .HasColumnType("nvarchar(max)"); |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("备注"); |
| | | |
| | | b.Property<int>("Sort") |
| | | .HasColumnType("int") |
| | |
| | | .HasColumnType("uniqueidentifier") |
| | | .HasComment("身份Id"); |
| | | |
| | | b.Property<string>("Remark") |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("备注"); |
| | | |
| | | b.Property<int>("Sort") |
| | | .HasColumnType("int") |
| | | .HasComment("排序"); |
| | | |
| | | b.Property<int>("Status") |
| | | .HasColumnType("int") |
| | | .HasComment("状态"); |
| | | |
| | | b.Property<string>("TraceId") |
| | | .HasColumnType("nvarchar(max)") |
| | |
| | | IsDeleted = false, |
| | | Level = 999, |
| | | Sort = 0, |
| | | Status = 0, |
| | | Type = 100, |
| | | UserAuthId = new Guid("11111111-1111-1111-1111-111111111111") |
| | | }); |
| | |
| | | modelBuilder.Entity("FlexJobApi.Core.UserInfoRole", b => |
| | | { |
| | | b.HasOne("FlexJobApi.Core.Role", "Role") |
| | | .WithMany() |
| | | .WithMany("UserInfoRoles") |
| | | .HasForeignKey("RoleId") |
| | | .OnDelete(DeleteBehavior.Cascade) |
| | | .IsRequired(); |
| | |
| | | b.Navigation("RoleMenus"); |
| | | |
| | | b.Navigation("RoleResources"); |
| | | |
| | | b.Navigation("UserInfoRoles"); |
| | | }); |
| | | |
| | | modelBuilder.Entity("FlexJobApi.Core.TaskInfo", b => |