using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model.Entities { public class RootEntityTkey where Tkey : IEquatable { /// /// ID /// 泛型主键Tkey /// //[SugarColumn(IsNullable = false, IsPrimaryKey = true)] [Key] public Tkey Id { get; set; } } }