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