PrimaryKey.cs 223 B

1234567891011121314
  1. using System.Security.Principal;
  2. namespace gpt_api.Core.Dtos.Entity
  3. {
  4. public class PrimaryKey
  5. {
  6. /// <summary>
  7. /// 主建ID
  8. /// </summary>
  9. [SugarColumn(IsPrimaryKey = true)]
  10. public int Id { get; set; }
  11. }
  12. }