Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Service / DictService.cs
yxw on 23 Mar 2021 313 bytes 添加数据接口
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<String> getTypeListByCodeType(string codeType);
    }
}