16 lines
368 B
C#
16 lines
368 B
C#
namespace YD_WeChatApplet.Api.Services.Interface
|
|
{
|
|
/// <summary>
|
|
/// 公共接口
|
|
/// </summary>
|
|
public interface IFrameworkService
|
|
{
|
|
/// <summary>
|
|
/// Ai一体机扫描那登录
|
|
/// </summary>
|
|
/// <param name="code"></param>
|
|
/// <returns></returns>
|
|
Task<bool> ScanCodeLogin(string code);
|
|
}
|
|
}
|