Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Service / DetectionService.cs
yangqianqian on 24 May 2021 606 bytes s
using Casic.Birmm.RbFreqStandMeasure.R_DataBase.Dto;
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 DetectionService
    {
        int add(long deviceId, string frequency, string detecItemType, long detectionItemId, DateTime time);

        List<Model.Detection> search(long deviceId, string detectionType, string startTime, string endTime, long detectionItemId);

        int updateFrequency(long detectionId, string fre);
    }
}