IPushMsgService.cs 720 B

1234567891011121314151617
  1. using Ropin.Inspection.Common.Helper;
  2. using Ropin.Inspection.Model;
  3. using Ropin.Inspection.Model.ViewModel;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace Ropin.Inspection.Service
  10. {
  11. public interface IPushMsgService
  12. {
  13. Task<bool> PushAlarmMsgAsync(TpushMsgModel pushModel, string Subject = null, RabbitMQModel rabbitMQModel = null, string paramId = null, string status = null, string title = null);
  14. Task PushRecordMsgAsync(string type, TispRecordItemAlarmDetailViewModel viewModel,TpushMsgModel pushModel = null, string SpotCode = null, string paramId = null, string paramStatus=null, string title = null);
  15. }
  16. }