AdminAttachController.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Auth;
  4. using GxPress.Common.Page;
  5. using GxPress.Repository.Interface.Attach;
  6. using GxPress.Request.Attach;
  7. using GxPress.Service.Interface.Attach;
  8. using Microsoft.AspNetCore.Authorization;
  9. using Microsoft.AspNetCore.Mvc;
  10. namespace GxPress.Api.AdminControllers
  11. {
  12. /// <summary>
  13. /// 名栏 公众号 期刊
  14. /// </summary>
  15. [Route("/api/admin/attach")]
  16. [ApiController]
  17. [Authorize]
  18. public class AdminAttachController : Controller
  19. {
  20. private readonly IAttachRepository repository;
  21. private readonly IAttachService service;
  22. private readonly ILoginContext _loginContext;
  23. public AdminAttachController(IAttachRepository repository, ILoginContext _loginContext, IAttachService service)
  24. {
  25. this.repository = repository;
  26. this._loginContext = _loginContext;
  27. this.service = service;
  28. }
  29. /// <summary>
  30. /// 删除
  31. /// </summary>
  32. /// <param name="id"></param>
  33. /// <returns></returns>
  34. [HttpDelete("{id}")]
  35. public async Task<bool> DeleteAsync(int id)
  36. {
  37. return await repository.DeleteAsync(id);
  38. }
  39. /// <summary>
  40. /// 获取所有
  41. /// </summary>
  42. /// <returns></returns>
  43. [HttpPost("list")]
  44. public async Task<PagedList<Entity.tede2.Attach.Attach>> GetAllAsync(AttachRequest request)
  45. {
  46. return await repository.GetAllAsync(request);
  47. }
  48. /// <summary>
  49. /// 获取详情
  50. /// </summary>
  51. /// <param name="id"></param>
  52. /// <returns></returns>
  53. [HttpGet("{id}")]
  54. public async Task<Entity.tede2.Attach.Attach> GetAsync(int id)
  55. {
  56. return await repository.GetAsync(id);
  57. }
  58. /// <summary>
  59. /// 添加
  60. /// </summary>
  61. /// <param name="note"></param>
  62. /// <returns></returns>
  63. [HttpPost]
  64. public async Task<int> InsertAsync(Entity.tede2.Attach.Attach note)
  65. {
  66. note.AdminId = _loginContext.AccountId;
  67. note.Creator = _loginContext.Name;
  68. return await service.InsertAsync(note);
  69. }
  70. /// <summary>
  71. /// 修改
  72. /// </summary>
  73. /// <param name="note"></param>
  74. /// <returns></returns>
  75. [HttpPut]
  76. public async Task<bool> UpdateAsync(Entity.tede2.Attach.Attach note)
  77. {
  78. note.AdminId = _loginContext.AccountId;
  79. note.Creator = _loginContext.Name;
  80. return await service.UpdateAsync(note);
  81. }
  82. }
  83. }