using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Common.Page; using GxPress.Repository.Interface.SpecialLabel; using GxPress.Request.SpecialLabel; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace GxPress.Api.AdminControllers { /// /// 特使标签数据 /// [Route("api/admin/special-label")] [ApiController] [Authorize] public class AdminSpecialLabelController : Controller { private readonly ISpecialLabelRepository specialLabelRepository; public AdminSpecialLabelController(ISpecialLabelRepository specialLabelRepository) { this.specialLabelRepository = specialLabelRepository; } /// /// 添加 /// /// /// [HttpPost] public async Task InsertAsync(Entity.SystemLabel.SpecialLabel model) { return await specialLabelRepository.InsertAsync(model) > 0; } /// /// 修改 /// /// /// [HttpPut] public async Task UpdateAsync(Entity.SystemLabel.SpecialLabel model) { return await specialLabelRepository.UpdateAsync(model); } /// /// 获取 /// /// /// [HttpGet("{id}")] public async Task GetAsync(int id) { return await specialLabelRepository.GetAsync(id); } /// /// 删除 /// /// /// [HttpDelete("{id}")] public async Task DeleteAsync(int id) { return await specialLabelRepository.DeleteAsync(id); } /// /// 获取类型下的数据 /// /// /// [HttpGet("list/{typeValue}")] public async Task> GetAllAsync(int typeValue) { return await specialLabelRepository.GetAllAsync(typeValue); } /// ///特使标签数据 /// /// /// [HttpPost("list")] public async Task> GetAllAsync(SpecialLabelSearchRequest request) { return await specialLabelRepository.GetAllAsync(request); } } }