2025-06-06 16:00:39 +08:00

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);
}
}