AdminSpecialLabelController.cs 2.3 KB

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