Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Service / DictService.cs
yangqianqian on 8 Apr 2021 567 bytes detail-setting-databackup complete
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 DictService
    {
        String getNameByCode(string codeType,string code);

        List<Dict> getTypeListByCodeType(string codeType);

        CounterParam getCounterParam();

        CounterCheckParam getCounterCheckParam();

        int updateCounterIp(string ip);

        int updateCheckParam(CounterCheckParam counterCheckParam);
    }
}