using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using YBDevice.Entity;
namespace YBDevice.Application
{
///
/// 统计管理
///
public interface IReportService
{
///
/// 获取合计信息
///
///
Task GetCombinedInfoAsync();
///
/// 获取日统计数据
///
///
///
///
Task> GetListAsync(DateTime? starttime,DateTime? endtime);
///
/// 获取指定设备统计数据
///
///
///
///
///
Task> GetDevListAsync(int id, DateTime? starttime, DateTime? endtime);
}
}