using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Auth; using GxPress.Repository.Interface.AppStartPage; using GxPress.Request.AppStartPage; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace GxPress.Api.AdminControllers { /// /// app启动页管理 /// [Route("api/admin/app-start-page")] [ApiController] [Authorize] public class AdminAppStartPageController : Controller { private readonly ILoginContext _loginContext; private readonly IAppStartPageRepository appStartPageRepository; public AdminAppStartPageController(IAppStartPageRepository appStartPageRepository, ILoginContext _loginContext) { this.appStartPageRepository = appStartPageRepository; this._loginContext = _loginContext; } /// /// 查询 /// /// [HttpGet("list")] public async Task> GetAllAsync() { var result = await appStartPageRepository.GetAllAsync(); return result; } /// /// 删除 /// /// /// [HttpDelete("{id}")] public async Task DeleteAsync(int id) { return await appStartPageRepository.DeleteAsync(id); } /// /// 修改 /// /// /// [HttpPut("")] public async Task UpdateAsync(AppStartPageUpdateRequest request) { return await appStartPageRepository.UpdateAsync(request); } /// /// 添加 /// /// /// [HttpPost] public async Task InsertAsync(Entity.tede2.AppStartPage.AppStartPage model) { model.Creator = _loginContext.Name; model.AdminId = _loginContext.AccountId; return await appStartPageRepository.InsertAsync(model); } } }