123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using GxPress.Auth;
- using GxPress.Repository.Interface;
- using GxPress.Request.App.Middle;
- using GxPress.Request.NoticeFolder;
- using GxPress.Result.NoticeFolder;
- using GxPress.Service.Interface.Middle;
- using Microsoft.AspNetCore.Mvc;
- namespace GxPress.Api.AppControllers
- {
-
-
-
- [Route("api/app/notice-folder")]
- [ApiController]
- public class NoticeFolderController : ControllerBase
- {
- private readonly INoticeFolderRepository _noticeFolderRepository;
- private readonly ILoginContext _loginContext;
- private readonly IMiddleService _middleService;
- public NoticeFolderController(INoticeFolderRepository noticeFolderRepository, ILoginContext loginContext,
- IMiddleService middleService)
- {
- _noticeFolderRepository = noticeFolderRepository;
- _loginContext = loginContext;
- _middleService = middleService;
- }
-
-
-
-
-
- [HttpPut("add")]
- public async Task<bool> Insert(NoticeFolderInRequest request)
- {
- request.UserId = _loginContext.AccountId;
- var middleInsertRequest = new MiddleInsertRequest
- {
- FolderName = request.FolderName,
- FolderType = 1,
- ParentId = request.ParentId,
- UserId = request.UserId
- };
- return await _middleService.InsertAsync(middleInsertRequest) > 0;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- [HttpPost("find")]
- public async Task<IEnumerable<NoticeFolderFindResult>> GetNoticeFolderByUserId(NoticeFolderFindRequest request)
- {
- request.UserId = _loginContext.AccountId;
- return await _noticeFolderRepository.GetNoticeFolderByUserIdAsync(request);
- }
-
-
-
-
-
-
-
-
-
-
- }
- }
|