AdminAppStartPageController.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Auth;
  4. using GxPress.Repository.Interface.AppStartPage;
  5. using GxPress.Request.AppStartPage;
  6. using Microsoft.AspNetCore.Authorization;
  7. using Microsoft.AspNetCore.Mvc;
  8. namespace GxPress.Api.AdminControllers
  9. {
  10. /// <summary>
  11. /// app启动页管理
  12. /// </summary>
  13. [Route("api/admin/app-start-page")]
  14. [ApiController]
  15. [Authorize]
  16. public class AdminAppStartPageController : Controller
  17. {
  18. private readonly ILoginContext _loginContext;
  19. private readonly IAppStartPageRepository appStartPageRepository;
  20. public AdminAppStartPageController(IAppStartPageRepository appStartPageRepository, ILoginContext _loginContext)
  21. {
  22. this.appStartPageRepository = appStartPageRepository;
  23. this._loginContext = _loginContext;
  24. }
  25. /// <summary>
  26. /// 查询
  27. /// </summary>
  28. /// <returns></returns>
  29. [HttpGet("list")]
  30. public async Task<IEnumerable<Entity.tede2.AppStartPage.AppStartPage>> GetAllAsync()
  31. {
  32. var result = await appStartPageRepository.GetAllAsync();
  33. return result;
  34. }
  35. /// <summary>
  36. /// 删除
  37. /// </summary>
  38. /// <param name="id"></param>
  39. /// <returns></returns>
  40. [HttpDelete("{id}")]
  41. public async Task<bool> DeleteAsync(int id)
  42. {
  43. return await appStartPageRepository.DeleteAsync(id);
  44. }
  45. /// <summary>
  46. /// 修改
  47. /// </summary>
  48. /// <param name="request"></param>
  49. /// <returns></returns>
  50. [HttpPut("")]
  51. public async Task<bool> UpdateAsync(AppStartPageUpdateRequest request)
  52. {
  53. return await appStartPageRepository.UpdateAsync(request);
  54. }
  55. /// <summary>
  56. /// 添加
  57. /// </summary>
  58. /// <param name="model"></param>
  59. /// <returns></returns>
  60. [HttpPost]
  61. public async Task<bool> InsertAsync(Entity.tede2.AppStartPage.AppStartPage model)
  62. {
  63. model.Creator = _loginContext.Name;
  64. model.AdminId = _loginContext.AccountId;
  65. return await appStartPageRepository.InsertAsync(model);
  66. }
  67. }
  68. }