feat(finance): add tenant settlement query backend

This commit is contained in:
2026-03-04 15:48:37 +08:00
parent 39e28c1a62
commit b0bb87d97c
25 changed files with 11599 additions and 0 deletions

View File

@@ -9711,6 +9711,11 @@ namespace TakeoutSaaS.Infrastructure.Migrations
.HasColumnType("text")
.HasComment("附加资料JSON。");
b.Property<string>("AlipayPid")
.HasMaxLength(64)
.HasColumnType("character varying(64)")
.HasComment("支付宝 PID。");
b.Property<string>("BankAccountName")
.HasMaxLength(128)
.HasColumnType("character varying(128)")
@@ -9810,6 +9815,11 @@ namespace TakeoutSaaS.Infrastructure.Migrations
.HasColumnType("bigint")
.HasComment("最后更新人用户标识,匿名或系统操作时为 null。");
b.Property<string>("WeChatMerchantNo")
.HasMaxLength(64)
.HasColumnType("character varying(64)")
.HasComment("微信商户号。");
b.HasKey("Id");
b.HasIndex("TenantId")