Blame view

HHECS.DAQClient/Services/Analysis/IAnalysis.cs 352 Bytes
唐召明 authored
1
using HHECS.EquipmentModel;
唐召明 authored
2
唐召明 authored
3
namespace HHECS.DAQClient.Services.DataAnalysis
唐召明 authored
4
5
6
7
8
9
10
11
12
13
{
    public interface IAnalysis
    {
        /// <summary>
        /// 对采集到的数据进行解析并保存到数据库
        /// </summary>
        /// <param name="equipments">设备列表</param>
        void DataAnalysis(List<Equipment> equipments);
    }
}