using System.Collections.Generic; using System.Threading.Tasks; using Datory; using GxPress.Request.SystemLabel; namespace GxPress.Repository.Interface.SystemLabel { public interface ISystemLableMediaRepository : IRepository { Task GetAsync(int id); /// /// 根据标签ID获取媒体ID /// /// /// Task> GetMediaIdsAsync(int lableId, int typeValue); Task DeleteAsync(List ids); /// /// 添加 /// /// /// Task InsertAsync(SystemLableMediaRequest request); /// /// 根据分类获取媒体ID /// /// /// Task> GetMediaIdsByTypeValueAsync(int typeValue); } }