25 lines
667 B
C#
25 lines
667 B
C#
|
|
|
||
|
|
|
||
|
|
namespace YY.Admin.Core;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 系统租户配置参数值表
|
||
|
|
/// </summary>
|
||
|
|
[SugarTable("sys_tenant_config_data", "系统租户配置参数值表")]
|
||
|
|
[SysTable]
|
||
|
|
[SugarIndex("index_{table}_TC", nameof(TenantId), OrderByType.Asc, nameof(ConfigId), OrderByType.Asc)]
|
||
|
|
public class SysTenantConfigData : EntityBaseTenantId
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 配置项Id
|
||
|
|
/// </summary>
|
||
|
|
[SugarColumn(ColumnDescription = "配置项Id")]
|
||
|
|
public long ConfigId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 参数值
|
||
|
|
/// </summary>
|
||
|
|
[SugarColumn(ColumnDescription = "参数值", Length = 512)]
|
||
|
|
[MaxLength(512)]
|
||
|
|
public string? Value { get; set; }
|
||
|
|
}
|