Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DataBase / Service / DeviceService.cs
yxw on 29 Mar 2021 799 bytes 添加计数器数据库接口
using Casic.Birmm.RbFreqStandMeasure.R_DataBase.Dto;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Casic.Birmm.RbFreqStandMeasure.R_DataBase.Service
{
    interface DeviceService
    {
        int add(string devName,string devCode,string devTypeId,string devModel, string custometDev,
            string customerName,string channel);

        int update(int id, string devName, string devCode, string devTypeId, string devModel, 
            string custometDev, string customerName, string channel);

        int delete(int id);

        List<DeviceDto> search(string devName,string devCode, string devModel, string suctomerDev,
            string customerName,string statusId);

        List<DeviceDto> getAllCounter(string devTypeId);
    }

}