1234567891011121314151617181920 |
- using SqlSugar;
- using XF.Domain.Repository;
- using System.ComponentModel;
- using Hotline.Exams.TestPapers;
- using Hotline.Repository.SqlSugar.Exam.Interface;
- namespace Hotline.Repository.SqlSugar.Exam.Interfaces.TestPapers
- {
- /// <summary>
- /// 试卷仓储接口
- /// </summary>
- [Description("试卷仓储接口")]
- public interface ITestPaperRepository:IRepository<ExamTestPaper>,IExamRepository<ExamTestPaper,HotlineDbContext>
- {
-
- }
- }
|