using Furion.DynamicApiController; using Microsoft.AspNetCore.Mvc; using Nirvana.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Waste.Application.ReportInfo { /// /// 统计报表 /// public class ReportAppService : IDynamicApiController { private readonly IReportService _reportService; public ReportAppService(IReportService reportService) { _reportService = reportService; } /// /// 统计列表 /// /// /// [HttpPost] public async Task> GetListAsync(QueryParams param) { return await _reportService.GetListAsync(param); } } }