feat: 提交配送中心点与门店地址映射全量变更
All checks were successful
Build and Deploy TenantApi / build-and-deploy (push) Successful in 42s

This commit is contained in:
2026-02-19 16:12:36 +08:00
parent d5b22a8d85
commit ad245078a2
10 changed files with 7899 additions and 0 deletions

View File

@@ -5274,6 +5274,16 @@ namespace TakeoutSaaS.Infrastructure.Migrations
.HasColumnType("integer")
.HasComment("配送模式。");
b.Property<decimal?>("RadiusCenterLatitude")
.HasPrecision(10, 7)
.HasColumnType("numeric(10,7)")
.HasComment("半径配送中心点纬度。");
b.Property<decimal?>("RadiusCenterLongitude")
.HasPrecision(10, 7)
.HasColumnType("numeric(10,7)")
.HasComment("半径配送中心点经度。");
b.Property<string>("RadiusTiersJson")
.HasColumnType("text")
.HasComment("半径梯度配置 JSON。");