shgx_tz_mom/ZR.Service/mes/andon/IService/IAndonAlarmAreaService.cs
2025-12-20 13:41:44 +08:00

24 lines
565 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>
/// 报警区域表service接口
/// </summary>
public interface IAndonAlarmAreaService : IBaseService<AndonAlarmArea>
{
PagedInfo<AndonAlarmAreaDto> GetList(AndonAlarmAreaQueryDto parm);
AndonAlarmArea GetInfo(int Id);
AndonAlarmArea AddAndonAlarmArea(AndonAlarmArea parm);
int UpdateAndonAlarmArea(AndonAlarmArea parm);
}
}