1234567891011121314151617181920 |
- using SqlSugar;
- using XF.Domain.Repository;
- using System.ComponentModel;
- using Hotline.Exams.ExamManages;
- using Hotline.Repository.SqlSugar.Exam.Interface;
- namespace Hotline.Repository.SqlSugar.Exam.Interfaces.ExamManages
- {
- /// <summary>
- /// 关联课件仓储接口
- /// </summary>
- [Description("关联课件仓储接口")]
- public interface IExamQuestionSourcewareRepository:IRepository<ExamQuestionSourcewareBak>,IExamRepository<ExamQuestionSourcewareBak, HotlineDbContext>
- {
-
- }
- }
|