12345678910111213 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Bowin.Common.ServiceToken
- {
- public interface IJwtUserService<T1,T2>
- {
- List<string> GetFunctionCodeMethod(T1 userId);
- T2 refreshUser(T1 userId);
- BowinToken<T2> GetToken(string logId, string logPwd);
- }
- }
|