DualEntity.cs 403 B

123456789101112131415161718
  1. using FreeSql.DataAnnotations;
  2. using System;
  3. namespace Admin.Core.Model.Admin
  4. {
  5. /// <summary>
  6. /// 系统表,用于查询系统函数
  7. /// </summary>
  8. [Table(Name = "ad_dual")]
  9. public class DualEntity
  10. {
  11. /// <summary>
  12. /// 主键Id
  13. /// </summary>
  14. [Column(Position = 1, IsPrimary = true, IsNullable = false)]
  15. public Guid Id { get; set; }
  16. }
  17. }