using Microsoft.AspNetCore.Http; using VOL.Model; using VOL.Model.School.Request; namespace VOL.Business.IServices.School { public interface IFaceDetectService { /// /// 人脸获取学生信息 /// /// Task GetStudentDetails(IFormFile file, int classId); Task Face(string base64); } }