21 lines
563 B
C#
Raw Normal View History

2025-06-06 16:00:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VOL.Model;
namespace VOL.Business.IServices.LevelExam
{
public interface ILevelExamService
{
/// <summary>
/// 获取考级测评列表
/// </summary>
/// <param name="paramDto"></param>
/// <returns></returns>
Task<PageDataDto<LevelExamListModel>> GetLevelExamPageList(LevelExamPageListParam paramDto);
Task<List<LevelExamSpecialModel>> GetLevelExamSpecialList();
}
}