SGGL_JT/SUBQHSE/BLL/Oauth/IOauthService.cs

12 lines
155 B
C#
Raw Normal View History

2025-04-07 17:43:30 +08:00
using Model;
namespace BLL.Oauth
{
public interface IOauthService
{
Sys_User GetLoginInfo(string token, ref string message);
}
}