using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using Datory; namespace GxPress.Repository.Interface.AppReport { public interface IAppReportRepository:IRepository { Task InsertAsync(Entity.AppReport appReport); Task UpdateAsync(Entity.AppReport appReport); Task> GetAppReportListAsync(); Task DeleteAsyncTask(int id); /// /// 根据type查询数据 /// /// /// Task GetAppReport(int reportType); } }