20 lines
421 B
C#
20 lines
421 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VOL.Core.BaseProvider;
|
|
using VOL.Core.Extensions.AutofacManager;
|
|
using VOL.Entity.DomainModels;
|
|
|
|
namespace VOL.Ai.IRepositories
|
|
{
|
|
/// <summary>
|
|
/// Ai扫码登陆
|
|
/// </summary>
|
|
public interface IScanCodeLoginRepository : IDependency, IRepository<Ai_ScanCodeLogin>
|
|
{
|
|
|
|
}
|
|
}
|