Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Service / DetectionItemService.cs
yxw on 29 Mar 2021 621 bytes 添加计数器数据库接口
using Casic.Birmm.RbFreqStandMeasure.R_DataBase.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Casic.Birmm.RbFreqStandMeasure.R_DataBase.Service
{
    interface DetectionItemService
    {
        int add(int deviceId,DateTime startTime,DateTime endTime,int stability,int accuracy,
            int bootFeature,int ageRate,String interval);

        int update(int deviceId, DateTime startTime, DateTime endTime, int stability, 
            int accuracy, int bootFeature, int ageRate, String interval);

        List<DetectionItem> serach(int deviceId);

    }
}