You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

35 lines
997 B

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Znyc.CloudCar.IServices.Feedback;
using Znyc.CloudCar.Model.Dtos.Feedback;
using Znyc.CloudCar.Model.ViewModels.ReportsCallBack;
namespace Znyc.CloudCar.Controller
{
/// <summary>
/// 意见反馈
/// </summary>
[ApiController]
public class FeedbackController : ControllerBase
{
private readonly IFeedbackService _feedbackService;
public FeedbackController(IFeedbackService feedbackService)
{
_feedbackService = feedbackService;
}
/// <summary>
/// 新增意见反馈
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
[HttpPost]
[Authorize]
[Route("api/v1/feedback")]
public async Task<ResponseOutput> AddFeedbackAsync([FromBody] FeedbackAddInput input)
{
return await _feedbackService.AddFeedbackAsync(input);
}
}
}