37 lines
759 B
C#
37 lines
759 B
C#
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;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Route("liveforum/livetest")]
|
|
[ApiExplorerSettings(GroupName = "liveforum")]
|
|
public class LiveTestController : BaseController
|
|
{
|
|
/// <summary>
|
|
/// 查询品牌表列表
|
|
/// </summary>
|
|
/// <param name="parm"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("test")]
|
|
[AllowAnonymous]
|
|
public IActionResult Test()
|
|
{
|
|
|
|
return SUCCESS(new { Success = true, Message = "访问成功" });
|
|
}
|
|
|
|
}
|