13 lines
279 B
C#
13 lines
279 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|