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 AdminGroupCategoryController : Controller { private readonly IGroupCategoryRepository groupCategoryRepository; public AdminGroupCategoryController(IGroupCategoryRepository GroupCategoryRepository) { this.groupCategoryRepository = GroupCategoryRepository; } /// /// 添加小组广场 /// /// /// [HttpPost("add")] public async Task InsertAsync(Entity.tede2.Group.GroupCategory GroupCategory) { return await groupCategoryRepository.InsertAsync(GroupCategory) > 0; } /// /// 修改 /// /// /// [HttpPut] public async Task UpdateAsync(Entity.tede2.Group.GroupCategory GroupCategory) { return await groupCategoryRepository.UpdateAsync(GroupCategory); } /// /// 根据ID查询详情 /// /// /// [HttpGet("{id}")] public async Task GetAsync(int id) { return await groupCategoryRepository.GetAsync(id); } /// /// 删除 /// /// /// [HttpDelete("{id}")] public async Task DeleteAsync(int id) { return await groupCategoryRepository.DeleteAsync(id); } /// /// 根据parendId获取 /// /// /// [HttpGet("list/{parentId}")] public async Task> GetAllAsync(int parentId) { return await groupCategoryRepository.GetAllAsync(parentId); } } }