123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- using GxPress.Repository.Interface.SystemLabel;
- using GxPress.Request.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;
- public AdminSystemLabelController(ISystemLabelRepository repository)
- {
- _repository = repository;
- }
- /// <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);
- }
- [HttpGet]
- public async Task<IEnumerable<Entity.SystemLabel.SystemLabel>> GetAllAsync()
- {
- return await _repository.GetAllAsync();
- }
- /// <summary>
- /// 删除
- /// </summary>
- /// <param name="id"></param>
- /// <returns></returns>
- [HttpDelete("{id}")]
- public async Task<bool> DeleteAsync(int id)
- {
- return await _repository.DeleteAsync(id);
- }
- }
- }
|