namespace ZhiYi.Core.Repository { /// /// 实体类主键 /// /// public class SugarEntity where T : struct { [SugarColumn(IsPrimaryKey = true)] public T Id { get; set; } } }