using System.Collections.Generic; using System.Threading.Tasks; using GxPress.Repository.Interface.Group; using GxPress.Result.Web; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace GxPress.Api.AdminControllers { /// /// 小组广场 /// [Route("api/admin/group-categroy")] [ApiController] [Authorize] public class AdminGroupCategroyController : Controller { private readonly IGroupCategroyRepository groupCategroyRepository; public AdminGroupCategroyController(IGroupCategroyRepository groupCategroyRepository) { this.groupCategroyRepository = groupCategroyRepository; } /// /// 添加小组广场 /// /// /// [HttpPost("add")] public async Task InsertAsync(Entity.tede2.Group.GroupCategroy groupCategroy) { return await groupCategroyRepository.InsertAsync(groupCategroy) > 0; } /// /// 修改 /// /// /// [HttpPut] public async Task UpdateAsync(Entity.tede2.Group.GroupCategroy groupCategroy) { return await groupCategroyRepository.UpdateAsync(groupCategroy); } /// /// 根据ID查询详情 /// /// /// [HttpGet("{id}")] public async Task GetAsync(int id) { return await groupCategroyRepository.GetAsync(id); } /// /// 删除 /// /// /// [HttpDelete] public async Task DeleteAsync(int id) { return await groupCategroyRepository.DeleteAsync(id); } /// /// 根据parendId获取 /// /// /// [HttpGet("list/{parentId}")] public async Task> GetAllAsync(int parentId) { return await groupCategroyRepository.GetAllAsync(parentId); } } }