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