1234567891011121314151617 |
- using Ropin.Inspection.Common.Helper;
- using Ropin.Inspection.Model;
- using Ropin.Inspection.Model.ViewModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Service
- {
- public interface IPushMsgService
- {
- Task<bool> PushAlarmMsgAsync(TpushMsgModel pushModel, string Subject = null, RabbitMQModel rabbitMQModel = null, string paramId = null, string status = null, string title = null);
- Task PushRecordMsgAsync(string type, TispRecordItemAlarmDetailViewModel viewModel,TpushMsgModel pushModel = null, string SpotCode = null, string paramId = null, string paramStatus=null, string title = null);
- }
- }
|