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