AdminAttachController.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. /// <returns></returns>
  52. [HttpPost("search")]
  53. public async Task<IEnumerable<Entity.tede2.Attach.Attach>> GetSearchAllAsync(AttachRequest request)
  54. {
  55. return await repository.GetSearchAllAsync(request);
  56. }
  57. /// <summary>
  58. /// 获取详情
  59. /// </summary>
  60. /// <param name="id"></param>
  61. /// <returns></returns>
  62. [HttpGet("{id}")]
  63. public async Task<Entity.tede2.Attach.Attach> GetAsync(int id)
  64. {
  65. return await repository.GetAsync(id);
  66. }
  67. /// <summary>
  68. /// 添加
  69. /// </summary>
  70. /// <param name="note"></param>
  71. /// <returns></returns>
  72. [HttpPost]
  73. public async Task<int> InsertAsync(Entity.tede2.Attach.Attach note)
  74. {
  75. note.AdminId = _loginContext.AccountId;
  76. note.Creator = _loginContext.Name;
  77. return await service.InsertAsync(note);
  78. }
  79. /// <summary>
  80. /// 修改
  81. /// </summary>
  82. /// <param name="note"></param>
  83. /// <returns></returns>
  84. [HttpPut]
  85. public async Task<bool> UpdateAsync(Entity.tede2.Attach.Attach note)
  86. {
  87. note.AdminId = _loginContext.AccountId;
  88. note.Creator = _loginContext.Name;
  89. return await service.UpdateAsync(note);
  90. }
  91. }
  92. }