25 lines
810 B
C#
25 lines
810 B
C#
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using VOL.Model;
|
|
using VOL.Model.Ai;
|
|
using VOL.Model.Ai.Request;
|
|
using VOL.Model.IOT.Response;
|
|
|
|
namespace VOL.Ai.IServices
|
|
{
|
|
public interface IAiService
|
|
{
|
|
#region Old
|
|
Task<Ai_DeviceDto> AiDetail(Ai_DeviceRequest paramDto);
|
|
Task<Ai_SchoolDto> AiSchoolDetail(Ai_SchoolRequest paramDto);
|
|
Task<List<Ai_StudentListDto>> StudentList(Ai_StudentListRequest paramDto);
|
|
Task<Ai_StudentDetailsDto> StudentDetail(Ai_StudentDetailRequest paramDto);
|
|
Task ResultUpload(Ai_ResultUploadRequest paramDto);
|
|
Task<List<Ai_ItemTypeModel>> GetAiCategoryType();
|
|
Task<List<Grades>> AiGradesList(string deviceSn);
|
|
Task<List<Ai_RankingListDto>> AiScoreRanking(Ai_RankingListRequest paramDto);
|
|
#endregion
|
|
}
|
|
}
|