feat: 添加 GwDestination 租户代码属性并更新版本至 1.0.1
Some checks are pending
Publish Platform NuGet Packages / build (push) Waiting to run

- 在 GwDestination 实体添加 TenantCode 属性,用于区分租户专属目标
  - null 或空字符串表示默认目标(所有租户共享)
  - 有值表示该目标专属于指定租户
- 更新 Fengling.Platform.Domain 版本号从 1.0.0 到 1.0.1
This commit is contained in:
movingsam 2026-03-08 00:43:21 +08:00
parent b9bf925c45
commit 021f464c0d
2 changed files with 9 additions and 0 deletions

View File

@ -34,4 +34,11 @@ public class GwDestination
/// 状态 /// 状态
/// </summary> /// </summary>
public int Status { get; set; } = 1; public int Status { get; set; } = 1;
/// <summary>
/// 租户代码,用于区分租户专属目标
/// null 或空字符串表示默认目标(所有租户共享)
/// 有值表示该目标专属于指定租户
/// </summary>
public string? TenantCode { get; set; }
} }

View File

@ -6,6 +6,8 @@
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems> <EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
<Version>1.0.1</Version>
<PackageVersion>1.0.1</PackageVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>