123456789101112131415161718192021 |
- using SqlSugar;
- using XF.Domain.Repository;
- using System.ComponentModel;
- using Hotline.Exams.ExamManages;
- using Hotline.Repository.SqlSugar;
- using Hotline.Repository.SqlSugar.Exam.Interface;
- namespace Hotline.Repository.SqlSugar.Exam.Interfaces.ExamManages
- {
- /// <summary>
- /// 用户考试仓储接口
- /// </summary>
- [Description("用户考试仓储接口")]
- public interface IUserExamRepository:IRepository<ExamUserExam>,IExamRepository<ExamUserExam,HotlineDbContext>
- {
-
- }
- }
|