ITestPaperRuleRepository.cs 492 B

12345678910111213141516171819
  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 ITestPaperRuleRepository:IRepository<ExamTestPaperRule>,IExamRepository<ExamTestPaperRule,HotlineDbContext>
  13. {
  14. }
  15. }