24 lines
594 B
C#
24 lines
594 B
C#
|
|
|
|
using RIZO.Model.MES.alarm;
|
|
using RIZO.Model.MES.alarm.Dto;
|
|
|
|
namespace RIZO.Service.MES.alarm.IService
|
|
{
|
|
/// <summary>
|
|
/// PLC报警信息字典service接口
|
|
/// </summary>
|
|
public interface IAlarmProblemDictionaryService : IBaseService<AlarmProblemDictionary>
|
|
{
|
|
PagedInfo<AlarmProblemDictionaryDto> GetList(AlarmProblemDictionaryQueryDto parm);
|
|
|
|
AlarmProblemDictionary GetInfo(int Id);
|
|
|
|
|
|
AlarmProblemDictionary AddAlarmProblemDictionary(AlarmProblemDictionary parm);
|
|
int UpdateAlarmProblemDictionary(AlarmProblemDictionary parm);
|
|
|
|
|
|
}
|
|
}
|