using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Auth; using GxPress.Common.Page; using GxPress.Repository.Interface.Attach; using GxPress.Request.Attach; using GxPress.Service.Interface.Attach; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace GxPress.Api.AdminControllers { /// /// 名栏 公众号 期刊 /// [Route("/api/admin/attach")] [ApiController] [Authorize] public class AdminAttachController : Controller { private readonly IAttachRepository repository; private readonly IAttachService service; private readonly ILoginContext _loginContext; public AdminAttachController(IAttachRepository repository, ILoginContext _loginContext, IAttachService service) { this.repository = repository; this._loginContext = _loginContext; this.service = service; } /// /// 删除 /// /// /// [HttpDelete("{id}")] public async Task DeleteAsync(int id) { return await repository.DeleteAsync(id); } /// /// 获取所有 /// /// [HttpPost("list")] public async Task> GetAllAsync(AttachRequest request) { return await repository.GetAllAsync(request); } /// /// 获取详情 /// /// /// [HttpGet("{id}")] public async Task GetAsync(int id) { return await repository.GetAsync(id); } /// /// 添加 /// /// /// [HttpPost] public async Task InsertAsync(Entity.tede2.Attach.Attach note) { note.AdminId = _loginContext.AccountId; note.Creator = _loginContext.Name; return await service.InsertAsync(note); } /// /// 修改 /// /// /// [HttpPut] public async Task UpdateAsync(Entity.tede2.Attach.Attach note) { note.AdminId = _loginContext.AccountId; note.Creator = _loginContext.Name; return await service.UpdateAsync(note); } } }