基础服务api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

31 lines
672 B

  1. using BPA.SAAS.Manage.Core.Base;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.SAAS.Manage.Core.DataBase
  9. {
  10. /// <summary>
  11. /// 平台授权
  12. /// </summary>
  13. [SugarTable("bpa_platformauthorization")]
  14. public class BPA_PlatformAuthorization : IBaseEntity, IGroupId
  15. {
  16. public string Key { get; set; }
  17. public string GroupId { get; set; }
  18. /// <summary>
  19. /// 有效期 长期有效为空
  20. /// </summary>
  21. public DateTime? PeriodValidity { get; set; }
  22. public DateTime UpdateAt { get; set; }
  23. }
  24. }