using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; namespace Myshipping.Core.Service; public interface ISysOauthService { Task GetWechatUserInfo([FromQuery] string token, [FromQuery] string openId); Task WechatLogin(); Task WechatLoginCallback([FromQuery] string code, [FromQuery] string state, [FromQuery] string error_description = ""); }