- using YBEE.EQM.Core;
- namespace YBEE.EQM.Application;
- /// <summary>
- /// 分数段服务
- /// </summary>
- public interface IExamScoreRangeService
- {
- /// <summary>
- /// 获取分数段列表
- /// </summary>
- /// <param name="type"></param>
- /// <returns></returns>
- Task<List<ExamScoreRangeOutput>> GetList(ExamScoreRangeType? type = null);
- }
|