46 lines
1008 B
C#
46 lines
1008 B
C#
using MyCode.Project.Domain.Config;
|
|
using MyCode.Project.Domain.Message.Request.LxmZHMDReport;
|
|
using MyCode.Project.Domain.Message.Response.LxmZHMDReport;
|
|
using MyCode.Project.Services;
|
|
using MyCode.Project.WebApi.Controllers;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
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
|
|
|
|
|
|
}
|
|
}
|