using LifePayment.Application.Contracts; using LifePayment.Domain.Shared; using Microsoft.AspNetCore.Mvc; using Volo.Abp.AspNetCore.Mvc; namespace LifePayment.HttpApi { [Route("api/[controller]/[action]")] [ApiController] public class LogController : AbpController { private readonly ILogService logService; public LogController(ILogService logService) { this.logService = logService; } /// /// 记录前端日志 /// /// [HttpPost] public async void LogFront(LogFrontInput message) { await logService.LogFront(message); } } }