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

17 lines
389 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_user_config", "系统用户配置参数表")]
[SysTable]
public partial class SysUserConfig : SysConfig
{
/// <summary>
/// 无效字段用于忽略实体类的Value字段
/// </summary>
[SugarColumn(IsIgnore = true)]
private new string? Value { get; set; }
}