using GDZZ.Core.OAuth; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GDZZ.Application.Service.Auth { /// /// 业务权限控制 /// public interface IAuthService { /// /// /// /// /// Task SignInAsync(PhoneModel phoneModel); Task GetLoginUserAsync(); } }