| | |
| | | .HasColumnType("uniqueidentifier") |
| | | .HasComment("上级Id"); |
| | | |
| | | b.Property<string>("Path") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<string>("Remark") |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("备注"); |
| | |
| | | b.Property<Guid?>("ParentId") |
| | | .HasColumnType("uniqueidentifier") |
| | | .HasComment("上级Id"); |
| | | |
| | | b.Property<string>("Path") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<int>("Sort") |
| | | .HasColumnType("int") |
| | |
| | | .ValueGeneratedOnAdd() |
| | | .HasColumnType("uniqueidentifier"); |
| | | |
| | | b.Property<string>("BindField") |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("绑定字段"); |
| | | |
| | | b.Property<string>("Code") |
| | | .IsRequired() |
| | | .HasColumnType("nvarchar(max)") |
| | |
| | | .HasColumnType("uniqueidentifier") |
| | | .HasComment("上级Id"); |
| | | |
| | | b.Property<string>("Path") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.Property<string>("Remark") |
| | | .HasColumnType("nvarchar(max)") |
| | | .HasComment("备注"); |
| | |
| | | b.Property<int>("VisitLevel") |
| | | .HasColumnType("int") |
| | | .HasComment("访问级别"); |
| | | |
| | | b.Property<string>("Width") |
| | | .HasColumnType("nvarchar(max)"); |
| | | |
| | | b.HasKey("Id"); |
| | | |
| | |
| | | .HasComment("最后更新操作人"); |
| | | |
| | | b.Property<Guid>("UserAuthId") |
| | | .HasColumnType("uniqueidentifier"); |
| | | .HasColumnType("uniqueidentifier") |
| | | .HasComment("用户Id"); |
| | | |
| | | b.Property<int?>("Weight") |
| | | .HasColumnType("int") |