using MyCode.Project.Domain.Message.Act.Common;
using MyCode.Project.Domain.Message.Response.LxmZHMDReport;
using MyCode.Project.Infrastructure.Cache;
using MyCode.Project.Infrastructure.Common;
using MyCode.Project.Infrastructure.Constant;
using MyCode.Project.Infrastructure.Enumeration;
using MyCode.Project.Infrastructure.Exceptions;
using MyCode.Project.Services;
using MyCode.Project.WebApi.App_Filter;
using System;
using System.IO;
using System.Web.Http;
namespace MyCode.Project.WebApi.Areas.Admin.Controllers
{
///
/// 报表
///
public class DataChartController : BaseAdminController
{
#region 初始化
private IYuyuboService _yuyuboService;
public DataChartController(IYuyuboService yuyuboService)
{
_yuyuboService = yuyuboService;
}
#endregion
///
/// 销售订单列表
///
///
///
[HttpPost]
[AllowAnonymous]
public PageResult GetPageList(PagedSearch search)
{
return _yuyuboService.GetPageList(search);
}
}
}