IJwtUserService.cs 319 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Bowin.Common.ServiceToken
  5. {
  6. public interface IJwtUserService<T1,T2>
  7. {
  8. List<string> GetFunctionCodeMethod(T1 userId);
  9. T2 refreshUser(T1 userId);
  10. BowinToken<T2> GetToken(string logId, string logPwd);
  11. }
  12. }