19 lines
439 B
C#
19 lines
439 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ZR.Model.MES.dev.Dto;
|
|
|
|
namespace ZR.Service.MES.dev.IService
|
|
{
|
|
/// <summary>
|
|
/// 设备数据分析
|
|
/// </summary>
|
|
public interface IDeviceDataAnalysisServcie
|
|
{
|
|
List<DeviceStatusAnalysisResultDto> DefaultTypePie(DeviceDefaultDto devicedefault);
|
|
}
|
|
}
|