using Infrastructure.Controllers; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ZR.ServiceCore.Middleware; namespace ZR.LiveForum.Controllers; /// /// /// [Route("liveforum/livetest")] [ApiExplorerSettings(GroupName = "liveforum")] public class LiveTestController : BaseController { /// /// 查询品牌表列表 /// /// /// [HttpGet("test")] [AllowAnonymous] public IActionResult Test() { return SUCCESS(new { Success = true, Message = "访问成功" }); } }