ITestPaperItemAnswerRepository.cs 492 B

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