using System.Collections.Generic; using System.Threading.Tasks; using Datory; using GxPress.Request.AppStartPage; namespace GxPress.Repository.Interface.AppStartPage { public interface IAppStartPageRepository : IRepository { /// /// 获取 APP启动 1IOS 2Android /// /// /// Task GetAsync(int appTypeId); /// /// 查询 /// /// Task> GetAllAsync(); /// /// 删除 /// /// /// Task DeleteAsync(int id); /// /// 修改 /// /// /// Task UpdateAsync(AppStartPageUpdateRequest request); /// /// 添加 /// /// /// Task InsertAsync(Entity.tede2.AppStartPage.AppStartPage model); } }