24 lines
703 B
C#
24 lines
703 B
C#
using System;
|
|
using ZR.Model;
|
|
using System.Collections.Generic;
|
|
using ZR.Model.MES.andon;
|
|
using ZR.Model.MES.andon.Dto;
|
|
|
|
namespace ZR.Service.mes.andon.Iservice
|
|
{
|
|
/// <summary>
|
|
/// 安灯报警联系人手表IP字典service接口
|
|
/// </summary>
|
|
public interface IAndonAlarmReceiverWatchDicService : IBaseService<AndonAlarmReceiverWatchDic>
|
|
{
|
|
PagedInfo<AndonAlarmReceiverWatchDicDto> GetList(AndonAlarmReceiverWatchDicQueryDto parm);
|
|
|
|
AndonAlarmReceiverWatchDic GetInfo(int Id);
|
|
|
|
AndonAlarmReceiverWatchDic AddAndonAlarmReceiverWatchDic(AndonAlarmReceiverWatchDic parm);
|
|
|
|
int UpdateAndonAlarmReceiverWatchDic(AndonAlarmReceiverWatchDic parm);
|
|
|
|
}
|
|
}
|