Files
YunTongJackYunTask/Reportapi/MyCode.Project.WebApi/Areas/Wechat/Controllers/ReportController.cs

37 lines
704 B
C#
Raw Normal View History

2025-07-04 10:47:18 +08:00
using MyCode.Project.Services;
2025-07-04 09:50:02 +08:00
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
}
}