Entity.cs 373 B

12345678910111213141516171819202122
  1. using FreeSql.DataAnnotations;
  2. namespace Admin.Core.Model
  3. {
  4. public interface IEntity
  5. {
  6. }
  7. public class Entity<TKey> : IEntity
  8. {
  9. /// <summary>
  10. /// 主键Id
  11. /// </summary>
  12. [Column(Position = 1,IsIdentity = true)]
  13. public virtual TKey Id { get; set; }
  14. }
  15. public class Entity : Entity<long>
  16. {
  17. }
  18. }