From 021f464c0d97873e2f8d8a588d59816b7c71bdbb Mon Sep 17 00:00:00 2001 From: movingsam Date: Sun, 8 Mar 2026 00:43:21 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=20GwDestination=20?= =?UTF-8?q?=E7=A7=9F=E6=88=B7=E4=BB=A3=E7=A0=81=E5=B1=9E=E6=80=A7=E5=B9=B6?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC=E8=87=B3=201.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 GwDestination 实体添加 TenantCode 属性,用于区分租户专属目标 - null 或空字符串表示默认目标(所有租户共享) - 有值表示该目标专属于指定租户 - 更新 Fengling.Platform.Domain 版本号从 1.0.0 到 1.0.1 --- .../AggregatesModel/GatewayAggregate/GwDestination.cs | 7 +++++++ Fengling.Platform.Domain/Fengling.Platform.Domain.csproj | 2 ++ 2 files changed, 9 insertions(+) diff --git a/Fengling.Platform.Domain/AggregatesModel/GatewayAggregate/GwDestination.cs b/Fengling.Platform.Domain/AggregatesModel/GatewayAggregate/GwDestination.cs index c4a85bf..3335798 100644 --- a/Fengling.Platform.Domain/AggregatesModel/GatewayAggregate/GwDestination.cs +++ b/Fengling.Platform.Domain/AggregatesModel/GatewayAggregate/GwDestination.cs @@ -34,4 +34,11 @@ public class GwDestination /// 状态 /// public int Status { get; set; } = 1; + + /// + /// 租户代码,用于区分租户专属目标 + /// null 或空字符串表示默认目标(所有租户共享) + /// 有值表示该目标专属于指定租户 + /// + public string? TenantCode { get; set; } } diff --git a/Fengling.Platform.Domain/Fengling.Platform.Domain.csproj b/Fengling.Platform.Domain/Fengling.Platform.Domain.csproj index 279d7c9..61ad637 100644 --- a/Fengling.Platform.Domain/Fengling.Platform.Domain.csproj +++ b/Fengling.Platform.Domain/Fengling.Platform.Domain.csproj @@ -6,6 +6,8 @@ enable true false + 1.0.1 + 1.0.1