feat: 添加 GwDestination 租户代码属性并更新版本至 1.0.1
Some checks are pending
Publish Platform NuGet Packages / build (push) Waiting to run
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:
parent
b9bf925c45
commit
021f464c0d
@ -34,4 +34,11 @@ public class GwDestination
|
||||
/// 状态
|
||||
/// </summary>
|
||||
public int Status { get; set; } = 1;
|
||||
|
||||
/// <summary>
|
||||
/// 租户代码,用于区分租户专属目标
|
||||
/// null 或空字符串表示默认目标(所有租户共享)
|
||||
/// 有值表示该目标专属于指定租户
|
||||
/// </summary>
|
||||
public string? TenantCode { get; set; }
|
||||
}
|
||||
|
||||
@ -6,6 +6,8 @@
|
||||
<Nullable>enable</Nullable>
|
||||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
||||
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
|
||||
<Version>1.0.1</Version>
|
||||
<PackageVersion>1.0.1</PackageVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user