IQuestionAnswerService.cs 613 B

12345678910111213141516171819
  1. using System.ComponentModel;
  2. using Exam.Share;
  3. using Hotline.Exams.Questions;
  4. using Hotline.Repository.SqlSugar.Exam.Interface;
  5. using Hotline.Share.Dtos.Questions;
  6. using Hotline.Share.Requests.Question;
  7. namespace Hotline.Application.Exam.Interface.Questions
  8. {
  9. /// <summary>
  10. /// 试题参考答案服务接口
  11. /// </summary>
  12. [Description("试题参考答案服务接口")]
  13. public interface IQuestionAnswerService:IQueryService<QuestionAnswerViewResponse,QuestionAnswerDto,QuestionAnswerPagedRequest>,IApiService<AddQuestionAnswerDto,UpdateQuestionAnswerDto,ExamQuestionAnswer>
  14. {
  15. }
  16. }