You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
753 B
35 lines
753 B
using Kean.Application.Query.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Kean.Application.Query.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// TV显示信息查询服务
|
|
/// </summary>
|
|
public interface IStatisticsService
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
Task<object> GetTvStatistics(
|
|
int? area);
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
Task<object> GetTVLedInfo(
|
|
string ip);
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
Task<object> StockStatistics(bool bQC);
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
Task<object> StockPalletStatistics(bool bQC);
|
|
}
|
|
}
|