|
@@ -47,6 +47,15 @@ namespace GxPress.Repository.Implement.SystemLabel
|
|
|
{
|
|
|
return await _repository.GetAllAsync<int>(Q.Where(nameof(Entity.SystemLabel.SystemLableMedia.LableId), lableId).Where(nameof(Entity.SystemLabel.SystemLableMedia.TypeValue), typeValue).Select(nameof(Entity.SystemLabel.SystemLableMedia.MediaId)));
|
|
|
}
|
|
|
+ /// <summary>
|
|
|
+ /// 根据分类获取媒体ID
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="lableId"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<IEnumerable<int>> GetMediaIdsByTypeValueAsync(int typeValue)
|
|
|
+ {
|
|
|
+ return await _repository.GetAllAsync<int>(Q.Where(nameof(Entity.SystemLabel.SystemLableMedia.TypeValue), typeValue).Select(nameof(Entity.SystemLabel.SystemLableMedia.MediaId)));
|
|
|
+ }
|
|
|
public async Task<bool> DeleteAsync(List<int> ids)
|
|
|
{
|
|
|
return await _repository.DeleteAsync(Q.WhereIn(nameof(Entity.SystemLabel.SystemLableMedia.Id), ids)) > 0;
|