ITestPaperRepository.cs 469 B

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