34 lines
956 B
C#
34 lines
956 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using TGJ.NetworkFreight.SeckillAggregateServices.Pos.UserService;
|
|
using YD_WeChatApplet.Api;
|
|
using YD_WeChatApplet.Api.Entitys;
|
|
using YD_WeChatApplet.Commons;
|
|
using YD_WeChatApplet.Commons.Dto.HomeWork;
|
|
using YD_WeChatApplet.Commons.Dto.Resource;
|
|
using YD_WeChatApplet.Commons.Dto.School;
|
|
|
|
namespace YD_WeChatApplet.Services
|
|
{
|
|
public interface IResourceService
|
|
{
|
|
/// <summary>
|
|
/// 获取资源类型列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<List<ComboBoxDto>> ResourceTypes();
|
|
|
|
/// <summary>
|
|
/// 获取资源详情列表
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
Task<List<ResourceTypeTreeDto>> ResourceDetails(int id);
|
|
|
|
/// <summary>
|
|
/// 获取教学资源
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<List<SpecialDto>> SpecialLevelList();
|
|
}
|
|
}
|