using Bunny.Dao.Entity.Result;
using Bunny.Dao.Entity.System;
using Bunny.Service.IService;
using Microsoft.AspNetCore.Mvc;
namespace Bunny.WebApi.Controllers;
///
/// BLog相关接口
///
[Route("/api/[controller]/[action]")]
public class BlogController : ControllerBase
{
private readonly IBlogService _blogService;
public BlogController(IBlogService blogService)
{
_blogService = blogService;
}
///
/// 添加Blog
///
///
///
[HttpPost]
public Result