1234567891011121314151617181920212223 |
- using Ropin.Inspection.Model;
- using Ropin.Inspection.Service.Interface;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Linq.Expressions;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Service
- {
- public interface ITmtnPushMsgResultService : IBaseService<TmtnPushMsgResultViewModel>, IBaseServiceById<TmtnPushMsgResultViewModel, string>
- {
- Task<IEnumerable<TmtnPushMsgResultViewModel>> GetAllAsync();
- Task<IEnumerable<TmtnPushMsgResultViewModel>> GetByConditionAsync(Expression<Func<TmtnPushMsgResultViewModel, bool>> expression);
- Task UpdateAsync(string code, TmtnPushMsgResultUpdateModel updateModel);
- Task<IEnumerable<TmtnPushMsgResultViewModel>> GetConditionAsync(TmtnPushMsgResultSearchModel searchModel);
- Task DeleteAsync(string code);
- //Task<DevAlarmCount> GetPushMsgResultContentAsync(TmtnPushMsgResultSearchModel searchModel);
- Task UpdateStatusAsync(string msgCode, string Status, string userId);
- }
- }
|