Files
Yi.Framework/Yi.Furion.Net6/Yi.Furion.Core/Bbs/Entities/PlateEntity.cs
2023-04-15 22:44:33 +08:00

19 lines
511 B
C#

using SqlSugar;
using Yi.Framework.Infrastructure.Data.Entities;
using Yi.Framework.Infrastructure.Ddd.Entities;
namespace Yi.Furion.Core.Bbs.Entities
{
[SugarTable("Plate")]
public class PlateEntity : IEntity<long>, ISoftDelete
{
[SugarColumn(IsPrimaryKey = true)]
public long Id { get; set; }
public string Name { get; set; }
public string Logo { get; set; }
public string Introduction { get; set; }
public bool IsDeleted { get; set; }
}
}