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(long deviceId,DateTime startTime,DateTime endTime, string stability, string accuracy, string bootFeature, string ageRate,String interval, string channelNo); int update(long deviceId, DateTime startTime, DateTime endTime, string stability, string accuracy, string bootFeature, string ageRate, String interval); List<DetectionItem> search(long deviceId, bool isInDetection); int stopDetection(long deviceId, DateTime startTime, DateTime endTime, bool isDeleteData); } }