using Ropin.Inspection.Model; using Ropin.Inspection.Model.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Repository { public interface ITmtnPushMsgToRepository : IRepositoryBase, IRepositoryBaseById { Task> GetPushMsgUserByAsync(string devStoreCode, string msgTypeCode); Task DeleteByDevPersonIdAsync(string devId, string personId); Task DeleteByDevPersonIdMultipleAsync(string devId, string personStr); Task> GetPushMsgToUsersByAsync(string devStoreCode); Task GetPushMsgTosByAsync(string devStoreCode, string userCode); Task PushAlarmMsgAsync(TpushMsgModel pushModel); } }