Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Service / DetectionService.cs
yangqianqian on 10 Apr 2021 485 bytes export
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);

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

    }
}