1234567891011121314151617181920 |
- using SqlSugar;
- using XF.Domain.Repository;
- using System.ComponentModel;
- using Hotline.Exams.Questions;
- using Hotline.Repository.SqlSugar.Exam.Interface;
- namespace Hotline.Repository.SqlSugar.Exam.Interfaces.Questions
- {
- /// <summary>
- /// 试题参考答案仓储接口
- /// </summary>
- [Description("试题参考答案仓储接口")]
- public interface IQuestionAnswerRepository:IRepository<ExamQuestionAnswer>,IExamRepository<ExamQuestionAnswer,HotlineDbContext>
- {
-
- }
- }
|