mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
14 lines
293 B
C#
14 lines
293 B
C#
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Yi.Framework.Rbac.Domain.Entities
|
|
{
|
|
public class StudentEntity : Entity<Guid>
|
|
{
|
|
|
|
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
|
|
public override Guid Id { get; protected set; }
|
|
public string Name { get; set; }
|
|
|
|
}
|
|
}
|