Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Service / DetectionService.cs
yangqianqian on 7 Apr 2021 481 bytes homepage
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, DateTime logTime, String frequency);

        List<DetectionDto> search(long deviceId, string detectionType, string startTime, string endTime);

    }
}