ZhiYi/ZhiYi.Core.Repository/SugarEntity.cs

13 lines
279 B
C#
Raw Normal View History

2025-02-21 01:14:39 +00:00
namespace ZhiYi.Core.Repository
{
/// <summary>
/// 实体类主键
/// </summary>
/// <typeparam name="T"></typeparam>
public class SugarEntity<T> where T : struct
{
[SugarColumn(IsPrimaryKey = true)]
public T Id { get; set; }
}
}