using System.Collections.Generic; using System.Threading.Tasks; using Datory; using GxPress.EnumConst; using GxPress.Result.AppChannel; namespace GxPress.Repository.Interface.AppChannel { public interface IAppChannelRepository : IRepository { /// /// 获取详情 /// /// /// Task GetAsync(int id); /// /// 查询 /// /// Task> GetAllAsync(AppChannelConst channelTypeValue); /// /// 删除 /// /// /// Task DeleteAsync(int id); /// /// 修改 /// /// /// Task UpdateAsync(Entity.tede2.AppChannel.AppChannel request); /// /// 添加 /// /// /// Task InsertAsync(Entity.tede2.AppChannel.AppChannel model); } }