55 lines
1.7 KiB
C#
55 lines
1.7 KiB
C#
using Newtonsoft.Json.Linq;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Web.Http;
|
|
using MyCode.Project.Domain.Message.Response.User;
|
|
using MyCode.Project.Infrastructure.Constant;
|
|
using MyCode.Project.WebApi.Controllers;
|
|
using MyCode.Project.Domain.Config;
|
|
using MyCode.Project.Services;
|
|
using MyCode.Project.Infrastructure.Common;
|
|
using MyCode.Project.Domain.Message.Request.User;
|
|
using MyCode.Project.Infrastructure.Enumeration;
|
|
using MyCode.Project.Domain.Message.Act.User;
|
|
using MyCode.Project.Domain.Message.Response.Goods;
|
|
using MyCode.Project.Domain.Model;
|
|
using MyCode.Project.Infrastructure.Extensions;
|
|
using MyCode.Project.Domain.Message.Response.Report40;
|
|
using MyCode.Project.Domain.Message.Response.Report2301;
|
|
using MyCode.Project.Domain.Message.Request.Report2301;
|
|
|
|
namespace MyCode.Project.WebApi.Areas.Wechat.Controllers
|
|
{
|
|
/// <summary>
|
|
/// 2023年1月版本的月度报告 相关
|
|
/// </summary>
|
|
public class YueDuBaoGao2301Controller : BaseWechatController
|
|
{
|
|
private IReport2301Service _report2301Service;
|
|
|
|
public YueDuBaoGao2301Controller(IReport2301Service report2301Service)
|
|
{
|
|
_report2301Service = report2301Service;
|
|
}
|
|
|
|
#region GetMonthOperationReport(2023-01版本的月度经营报告)
|
|
/// <summary>
|
|
/// 2023-01版本的月度经营报告
|
|
/// </summary>
|
|
/// <param name="req"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
public MonthOperationReportResp GetMonthOperationReport(MonthOperationReportReq req)
|
|
{
|
|
return _report2301Service.GetMonthOperationReport(req);
|
|
|
|
}
|
|
#endregion
|
|
|
|
|
|
}
|
|
}
|