123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- using System.Threading.Tasks;
- using GxPress.Auth;
- using GxPress.Common.Page;
- using GxPress.Request.App.Note;
- using GxPress.Result.App.Note;
- using GxPress.Service.Interface.Note;
- using Microsoft.AspNetCore.Authorization;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.Extensions.Logging;
- namespace GxPress.Api.AppControllers
- {
-
-
-
- [Route("api/app/note")]
- [ApiController]
- [Authorize]
- public class NoteController : ControllerBase
- {
- private readonly ILogger<NoteController> _logger;
- private readonly INoteService _noteService;
- private readonly ILoginContext _loginContext;
- public NoteController(ILogger<NoteController> logger, INoteService noteService, ILoginContext loginContext)
- {
- _logger = logger;
- _noteService = noteService;
- _loginContext = loginContext;
- }
-
-
-
-
-
- [HttpPut("add")]
- public async Task<bool> InsertNote(NoteInRequest request)
- {
-
-
- request.UserId = _loginContext.AccountId;
- return await _noteService.InsertNoteAsync(request);
- }
-
-
-
-
-
- [HttpPost("search")]
- public async Task<PagedList<NotePageListRequest>> NotePageList(NoteSearchPageListRequest request)
- {
- request.UserId = _loginContext.AccountId;
- return await _noteService.NotePageListAsync(request);
- }
-
-
-
-
-
- [HttpGet("{id}")]
- public async Task<NoteDetailResult> GetNoteDetail(int id)
- {
- var note = await _noteService.GetNoteDetailAsync(id, _loginContext.AccountId);
- return note;
- }
-
-
-
-
-
- [HttpGet("web/{id}")]
- public async Task<NoteDetailResult> GetWebNoteDetail(int id)
- {
- var note = await _noteService.GetNoteDetailAsync(id, 0);
- return note;
- }
-
-
-
-
-
- [HttpPut("update")]
- public async Task<bool> UpdateNote(Entity.Note.Note note)
- {
-
-
-
- return await _noteService.UpdateNoteAsync(note);
- }
-
-
-
-
-
- [HttpDelete("{id}")]
- public async Task<bool> DeleteAsync(int id) => await _noteService.DeleteAsync(id, _loginContext.AccountId);
- }
- }
|