19 lines
538 B
C#
19 lines
538 B
C#
using SqlSugar;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Yi.Framework.Bbs.Domain.Entities
|
|
{
|
|
[SugarTable("Setting")]
|
|
public class SettingEntity : Entity<Guid>
|
|
{
|
|
|
|
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
|
|
public override Guid Id { get; protected set; }
|
|
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; }
|
|
}
|
|
}
|