报警记录处理过程
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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 IAndonAlarmRecordProcessService : IBaseService<AndonAlarmRecordProcess>
|
||||
{
|
||||
PagedInfo<AndonAlarmRecordProcessDto> GetList(AndonAlarmRecordProcessQueryDto parm);
|
||||
|
||||
AndonAlarmRecordProcess GetInfo(int Id);
|
||||
|
||||
AndonAlarmRecordProcess AddAndonAlarmRecordProcess(AndonAlarmRecordProcess parm);
|
||||
|
||||
int UpdateAndonAlarmRecordProcess(AndonAlarmRecordProcess parm);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user