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

32 lines
800 B
C#
Raw Normal View History

2023-12-11 09:55:12 +08:00
using SqlSugar;
using Volo.Abp.Domain.Entities;
using Volo.Abp;
2023-12-11 22:14:13 +08:00
using Volo.Abp.Auditing;
2023-12-11 09:55:12 +08:00
namespace Yi.Framework.Bbs.Domain.Entities
{
[SugarTable("Plate")]
2023-12-11 22:14:13 +08:00
public class PlateEntity : Entity<Guid>, ISoftDelete,IAuditedObject
2023-12-11 09:55:12 +08:00
{
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
public override Guid Id { get; protected set; }
2023-12-11 22:14:13 +08:00
public string Code { get; set; }
2023-12-11 09:55:12 +08:00
public string Name { get; set; }
public string? Logo { get; set; }
public string? Introduction { get; set; }
public bool IsDeleted { get; set; }
2023-12-11 22:14:13 +08:00
public DateTime CreationTime { get; set; }
public Guid? CreatorId { get; set; }
public Guid? LastModifierId { get; set; }
public DateTime? LastModificationTime { get; set; }
2023-12-11 09:55:12 +08:00
}
}