IPracticeAnswerRepository.cs 494 B

1234567891011121314151617181920
  1. using SqlSugar;
  2. using XF.Domain.Repository;
  3. using System.ComponentModel;
  4. using Hotline.Exams.Practices;
  5. using Hotline.Repository.SqlSugar.Exam.Interface;
  6. namespace Hotline.Repository.SqlSugar.Exam.Interfaces.Practices
  7. {
  8. /// <summary>
  9. /// 练习答案仓储接口
  10. /// </summary>
  11. [Description("练习答案仓储接口")]
  12. public interface IPracticeAnswerRepository:IRepository<ExamPracticeAnswer>,IExamRepository<ExamPracticeAnswer,HotlineDbContext>
  13. {
  14. }
  15. }