ITmtnPushMsgResultRepository.cs 592 B

12345678910111213141516
  1. using Ropin.Inspection.Model;
  2. using Ropin.Inspection.Model.Entities;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Ropin.Inspection.Repository
  9. {
  10. public interface ITmtnPushMsgResultRepository : IRepositoryBase<TMTN_PushMsgResult>, IRepositoryBaseById<TMTN_PushMsgResult, string>
  11. {
  12. Task<IEnumerable<TMTN_PushMsgResultModel>> GetConditionAsync(TmtnPushMsgResultSearchModel searchModel);
  13. Task<DevAlarmCount> GetPushMsgResultContentAsync(TmtnPushMsgResultSearchModel searchModel);
  14. }
  15. }