37 lines
704 B
C#
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
|
|
|
|
|
|
}
|
|
}
|