1234567891011121314151617181920 |
- using SqlSugar;
- using XF.Domain.Repository;
- using System.ComponentModel;
- using Hotline.Exams.Practices;
- using Hotline.Repository.SqlSugar.Exam.Interface;
- namespace Hotline.Repository.SqlSugar.Exam.Interfaces.Practices
- {
- /// <summary>
- /// 练习答案仓储接口
- /// </summary>
- [Description("练习答案仓储接口")]
- public interface IPracticeAnswerRepository:IRepository<ExamPracticeAnswer>,IExamRepository<ExamPracticeAnswer,HotlineDbContext>
- {
-
- }
- }
|