shgx_tz_mom/ZR.Service/mes/andon/IService/IAndonAlarmAreaLightDicService.cs
2025-12-23 14:51:56 +08:00

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);
}
}