AdminSpecialLabelController.cs 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Common.Page;
  4. using GxPress.Repository.Interface.SpecialLabel;
  5. using GxPress.Request.SpecialLabel;
  6. using Microsoft.AspNetCore.Authorization;
  7. using Microsoft.AspNetCore.Mvc;
  8. namespace GxPress.Api.AdminControllers
  9. {
  10. /// <summary>
  11. /// 特使标签数据
  12. /// </summary>
  13. [Route("api/admin/special-label")]
  14. [ApiController]
  15. [Authorize]
  16. public class AdminSpecialLabelController : Controller
  17. {
  18. private readonly ISpecialLabelRepository specialLabelRepository;
  19. public AdminSpecialLabelController(ISpecialLabelRepository specialLabelRepository)
  20. {
  21. this.specialLabelRepository = specialLabelRepository;
  22. }
  23. /// <summary>
  24. /// 添加
  25. /// </summary>
  26. /// <param name="model"></param>
  27. /// <returns></returns>
  28. [HttpPost]
  29. public async Task<bool> InsertAsync(Entity.SystemLabel.SpecialLabel model)
  30. {
  31. return await specialLabelRepository.InsertAsync(model) > 0;
  32. }
  33. /// <summary>
  34. /// 修改
  35. /// </summary>
  36. /// <param name="model"></param>
  37. /// <returns></returns>
  38. [HttpPut]
  39. public async Task<bool> UpdateAsync(Entity.SystemLabel.SpecialLabel model)
  40. {
  41. return await specialLabelRepository.UpdateAsync(model);
  42. }
  43. /// <summary>
  44. /// 获取
  45. /// </summary>
  46. /// <param name="id"></param>
  47. /// <returns></returns>
  48. [HttpGet("{id}")]
  49. public async Task<Entity.SystemLabel.SpecialLabel> GetAsync(int id)
  50. {
  51. return await specialLabelRepository.GetAsync(id);
  52. }
  53. /// <summary>
  54. /// 删除
  55. /// </summary>
  56. /// <param name="id"></param>
  57. /// <returns></returns>
  58. [HttpDelete("{id}")]
  59. public async Task<bool> DeleteAsync(int id)
  60. {
  61. return await specialLabelRepository.DeleteAsync(id);
  62. }
  63. /// <summary>
  64. /// 获取类型下的数据
  65. /// </summary>
  66. /// <param name="typeValue"></param>
  67. /// <returns></returns>
  68. [HttpGet("list/{typeValue}")]
  69. public async Task<IEnumerable<Entity.SystemLabel.SpecialLabel>> GetAllAsync(int typeValue)
  70. {
  71. return await specialLabelRepository.GetAllAsync(typeValue);
  72. }
  73. /// <summary>
  74. ///特使标签数据
  75. /// </summary>
  76. /// <param name="request"></param>
  77. /// <returns></returns>
  78. [HttpPost("list")]
  79. public async Task<PagedList<Entity.SystemLabel.SpecialLabel>> GetAllAsync(SpecialLabelSearchRequest request)
  80. {
  81. return await specialLabelRepository.GetAllAsync(request);
  82. }
  83. }
  84. }