17 lines
435 B
C#
17 lines
435 B
C#
![]() |
using Microsoft.AspNetCore.Http;
|
|||
|
using VOL.Model;
|
|||
|
using VOL.Model.School.Request;
|
|||
|
|
|||
|
namespace VOL.Business.IServices.School
|
|||
|
{
|
|||
|
public interface IFaceDetectService
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 人脸获取学生信息
|
|||
|
/// </summary>
|
|||
|
/// <returns></returns>
|
|||
|
Task<StudentPageListModel> GetStudentDetails(IFormFile file, int classId);
|
|||
|
Task<StudentPageListModel> Face(string base64);
|
|||
|
}
|
|||
|
}
|