Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Service / CounterCheckParamService.cs
yxw on 9 Apr 2021 817 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 CounterCheckParamService
    {

        int add(string soOutDelay, string soEleFrequency, string soEleAddValue, string soEleAlarm, string freThreshold1,
            string freThreshold2, string freEleAddValue, string cycThreshold1, string cycThreshold2, string cycEleAddValue);

        int update(int id,string soOutDelay, string soEleFrequency, string soEleAddValue, string soEleAlarm, string freThreshold1,
            string freThreshold2, string freEleAddValue, string cycThreshold1, string cycThreshold2, string cycEleAddValue);

        CounterCheckParam getCounterCheckParams();

    }
}