Files
qhmes/yy-admin-master/YY.Admin.Core/Entity/SysTenantConfig.cs

17 lines
393 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace YY.Admin.Core;
/// <summary>
/// 系统租户配置参数表
/// </summary>
[SugarTable("sys_tenant_config", "系统租户配置参数表")]
[SysTable]
public partial class SysTenantConfig : SysConfig
{
/// <summary>
/// 无效字段用于忽略实体类的Value字段
/// </summary>
[SugarColumn(IsIgnore = true)]
private new string? Value { get; set; }
}