using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using GxPress.Entity; using GxPress.Request.AppVersion; using Datory; namespace GxPress.Repository.Interface { public interface IAppVersionRepository : IRepository { Task GetAsync(int id); Task GetAppVersionAsync(AppVersionSearchRequest request); Task InsertAsync(AppVersion appVersion); Task UpdateAsync(AppVersion appVersion); Task> GetAppVersionAsync(); /// /// 删除 /// /// /// Task DeleteAsync(int id); /// /// 获取最新的移动端信息 /// /// Task> GetAppVersionsAsync(); } }