73 lines
1.7 KiB
C#
73 lines
1.7 KiB
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using New_College.IServices;
|
|
using New_College.Model;
|
|
using New_College.Model.Models;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace New_College.Controllers
|
|
{
|
|
/// <summary>
|
|
/// 类别管理【无权限】
|
|
/// </summary>
|
|
[Route("api/[controller]")]
|
|
[ApiController]
|
|
[AllowAnonymous]
|
|
public class TopicController : ControllerBase
|
|
{
|
|
readonly ITopicServices _topicServices;
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="topicServices"></param>
|
|
public TopicController(ITopicServices topicServices)
|
|
{
|
|
_topicServices = topicServices;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取Tibug所有分类
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
// GET: api/Topic
|
|
[HttpGet]
|
|
public async Task<MessageModel<List<Topic>>> Get()
|
|
{
|
|
var data = new MessageModel<List<Topic>> {response = await _topicServices.GetTopics()};
|
|
if (data.response != null)
|
|
{
|
|
data.success = true;
|
|
data.msg = "";
|
|
}
|
|
return data;
|
|
}
|
|
|
|
// GET: api/Topic/5
|
|
[HttpGet("{id}")]
|
|
public string Get(int id)
|
|
{
|
|
return "value";
|
|
}
|
|
|
|
// POST: api/Topic
|
|
[HttpPost]
|
|
public void Post([FromBody] string value)
|
|
{
|
|
}
|
|
|
|
// PUT: api/Topic/5
|
|
[HttpPut("{id}")]
|
|
public void Put(int id, [FromBody] string value)
|
|
{
|
|
}
|
|
|
|
// DELETE: api/ApiWithActions/5
|
|
[HttpDelete("{id}")]
|
|
public void Delete(int id)
|
|
{
|
|
}
|
|
}
|
|
}
|