基础服务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.

PlatformAuthorizationDto.cs 589 B

10 months ago
10 months ago
10 months ago
123456789101112131415161718192021222324252627
  1. using BPA.SAAS.Manage.Core.DataBase;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.SAAS.Manage.Application.Auth.Dtos
  8. {
  9. public class PlatformAuthorizationDto: BPA_PlatformAuthorization
  10. {
  11. }
  12. public class CreateOrUpDatePlatformAuthorizationDto
  13. {
  14. public string Id { get; set; }
  15. public string Key { get; set; }
  16. /// <summary>
  17. /// 有效期 长期有效为空
  18. /// </summary>
  19. public DateTime? PeriodValidity { get; set;}
  20. }
  21. }