12345678910111213141516171819202122 |
- 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.SYS.Interface
- {
- public interface ITsysMessageFileRepository : IRepositoryBase<TSYS_MessageFile>, IRepositoryBaseById<TSYS_MessageFile, string>
- {
-
-
-
-
-
-
- Task<bool> DeleteMultitByID(List<string> IdList, string messageCode);
- Task<IEnumerable<MessageFileViewModel>> GetList(TsysMessageFileSearchModel searchModel);
- }
- }
|