25 lines
688 B
C#
25 lines
688 B
C#
using System;
|
|
using ZR.Model;
|
|
using System.Collections.Generic;
|
|
using ZR.Model.MES.andon;
|
|
using ZR.Model.MES.andon.Dto;
|
|
using Infrastructure.Model;
|
|
|
|
namespace ZR.Service.mes.andon.Iservice
|
|
{
|
|
/// <summary>
|
|
/// 安灯警报区三色灯IP字典service接口
|
|
/// </summary>
|
|
public interface IAndonAlarmAreaLightDicService : IBaseService<AndonAlarmAreaLightDic>
|
|
{
|
|
PagedInfo<AndonAlarmAreaLightDicDto> GetList(AndonAlarmAreaLightDicQueryDto parm);
|
|
|
|
AndonAlarmAreaLightDic GetInfo(int Id);
|
|
|
|
AndonAlarmAreaLightDic AddAndonAlarmAreaLightDic(AndonAlarmAreaLightDic parm);
|
|
|
|
int UpdateAndonAlarmAreaLightDic(AndonAlarmAreaLightDic parm);
|
|
|
|
}
|
|
}
|