1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using GxPress.Common.Page;
- using GxPress.Repository.Interface.SystemLabel;
- using GxPress.Request.SystemLabel;
- using GxPress.Result.SystemLabel;
- using GxPress.Service.Interface.SystemLabel;
- using Microsoft.AspNetCore.Authorization;
- using Microsoft.AspNetCore.Mvc;
- namespace GxPress.Api.AdminControllers
- {
- /// <summary>
- /// 系统标签管理
- /// </summary>
- [Route("api/admin/system-label")]
- [ApiController]
- [Authorize]
- public class AdminSystemLabelController : ControllerBase
- {
- private readonly ISystemLabelRepository _repository;
- private readonly ISystemLabelService systemLabelService;
- public AdminSystemLabelController(ISystemLabelRepository repository, ISystemLabelService systemLabelService)
- {
- _repository = repository;
- this.systemLabelService = systemLabelService;
- }
- /// <summary>
- /// 添加
- /// </summary>
- /// <param name="note"></param>
- /// <returns></returns>
- [HttpPost]
- public async Task<int> Insert(Entity.SystemLabel.SystemLabel note)
- {
- return await _repository.InsertAsync(note);
- }
- /// <summary>
- /// 修改
- /// </summary>
- /// <param name="request"></param>
- /// <returns></returns>
- [HttpPut]
- public async Task<bool> UpdateAsync(SystemLabelUpRequest request)
- {
- return await _repository.UpdateAsync(request);
- }
- /// <summary>
- /// 获取标签列表
- /// </summary>
- /// <returns></returns>
- [HttpPost("list")]
- public async Task<PagedList<SystemLabelResult>> GetAllAsync(Common.Page.PageParameter pageParameter)
- {
- return await systemLabelService.GetAllAsync(pageParameter);
- }
- /// <summary>
- /// 删除
- /// </summary>
- /// <param name="id"></param>
- /// <returns></returns>
- [HttpDelete("{id}")]
- public async Task<bool> DeleteAsync(int id)
- {
- return await _repository.DeleteAsync(id);
- }
- }
- }
|