This commit is contained in:
yxw
2026-01-04 18:53:19 +08:00
parent 948aa3d5b2
commit 41a939176e
11 changed files with 178 additions and 26 deletions

View File

@@ -242,6 +242,9 @@ namespace Atomx.Data.Migrations
b.Property<long>("CountryId")
.HasColumnType("bigint");
b.Property<int>("Depth")
.HasColumnType("integer");
b.Property<int>("DisplayOrder")
.HasColumnType("integer");
@@ -259,6 +262,10 @@ namespace Atomx.Data.Migrations
b.Property<long>("ParentId")
.HasColumnType("bigint");
b.Property<string>("Path")
.IsRequired()
.HasColumnType("varchar(100)");
b.Property<long>("StateProvinceId")
.HasColumnType("bigint");