namespace CloudGaming.Repository.Admin.Entities.Systems; /// /// 功能 /// [EntityDescription(NameRuleMode = NameRuleMode.TableName)] public class SysFunction : DefaultEntity { /// /// 编号 /// public int? Number { get; set; } /// /// 功能名称 /// public string? Name { get; set; } /// /// 功能标识 /// public string? ByName { get; set; } /// /// 备注 /// public string? Remark { get; set; } }