IQuestionAnswerRepository.cs 506 B

1234567891011121314151617181920
  1. using SqlSugar;
  2. using XF.Domain.Repository;
  3. using System.ComponentModel;
  4. using Hotline.Exams.Questions;
  5. using Hotline.Repository.SqlSugar.Exam.Interface;
  6. namespace Hotline.Repository.SqlSugar.Exam.Interfaces.Questions
  7. {
  8. /// <summary>
  9. /// 试题参考答案仓储接口
  10. /// </summary>
  11. [Description("试题参考答案仓储接口")]
  12. public interface IQuestionAnswerRepository:IRepository<ExamQuestionAnswer>,IExamRepository<ExamQuestionAnswer,HotlineDbContext>
  13. {
  14. }
  15. }