12345678910 |
- using Hotline.Exams.ExamManages;
- using Hotline.Repository.SqlSugar.Exam.Interface;
- using XF.Domain.Repository;
- namespace Hotline.Repository.SqlSugar.Exam.Interfaces.ExamManages
- {
- public interface IUserExamItemOptionRepository:IRepository<ExamUserExamItemOptions>,IExamRepository<ExamUserExamItemOptions, HotlineDbContext>
- {
- }
- }
|