Files
Yi.Admin/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Domain/Entities/SettingAggregateRoot.cs

19 lines
552 B
C#
Raw Normal View History

2023-04-15 22:44:33 +08:00
using SqlSugar;
2023-12-11 09:55:12 +08:00
using Volo.Abp.Domain.Entities;
2023-04-15 22:44:33 +08:00
2023-12-11 09:55:12 +08:00
namespace Yi.Framework.Bbs.Domain.Entities
2023-04-15 22:44:33 +08:00
{
[SugarTable("Setting")]
2024-05-22 14:35:08 +08:00
public class SettingAggregateRoot : AggregateRoot<Guid>
2023-04-15 22:44:33 +08:00
{
2023-12-11 09:55:12 +08:00
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
public override Guid Id { get; protected set; }
2023-04-15 22:44:33 +08:00
public int CommentPage { get; set; }
public int DiscussPage { get; set; }
public int CommentExperience { get; set; }
public int DiscussExperience { get; set; }
public string Title { get; set; }
}
}