using Microsoft.AspNetCore.Mvc; using QYZH.InteractiveMagazine.IService; using QYZH.InteractiveMagazine.Models.Dto; using QYZH.InteractiveMagazine.Models.Dto.Material; namespace QYZH.InteractiveMagazine.WeChatApi.Controllers; /// /// 小程序资料控制器 /// public class MaterialController(IMaterialService materialService) : WeChatBaseController { /// /// 获取可见资料列表 /// /// 资料列表 [HttpGet] public async Task>> GetListAsync() { var result = await materialService.GetEnabledListAsync(); return Success(result); } }