Files
YunTongJackYunTask/Reportapi/MyCode.Project.WebApi/Areas/Wechat/Controllers/ReportController.cs
2025-07-04 10:47:18 +08:00

37 lines
704 B
C#

using MyCode.Project.Services;
using System.Web.Http;
namespace MyCode.Project.WebApi.Areas.Wechat.Controllers
{
/// <summary>
///
/// </summary>
public class ReportController : BaseWechatController
{
#region
private readonly IReportService _reportService;
public ReportController(IReportService reportService)
{
_reportService = reportService;
}
#endregion
#region Test()
/// <summary>
/// 测试方法
/// </summary>
[HttpPost]
public void Test()
{
var admin = CurrentLogin;
}
#endregion
}
}