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