IUserService.cs 465 B

123456789101112131415161718192021
  1. using Central.Control.WebApi.DbEntity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Central.Control.WebApi.Service.Interface
  8. {
  9. /// <summary>
  10. ///
  11. /// </summary>
  12. public interface IUserService
  13. {
  14. /// <summary>
  15. /// 获取当前登录session
  16. /// </summary>
  17. /// <returns></returns>
  18. SYS_LoginSession GetLoginSession();
  19. }
  20. }