using Bunny.Common.Attribute;
using Bunny.Dao.Common.Result;
using Bunny.Dao.Dto.System;
using Bunny.Dao.Entity.System.User;
using Bunny.Service.IService;
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Mvc;
namespace Bunny.WebApi.Controllers;
///
/// BLog相关接口
///
[Microsoft.AspNetCore.Mvc.Route("/api/[controller]/[action]")]
public class UserController : ControllerBase
{
[Inject] public required IUserService UserService { get; set; }
///
/// 添加Blog
///
///
///
[HttpPost]
public Result