|
@@ -790,8 +790,8 @@ namespace GxPress.Repository.Implement.Media
|
|
|
query.Select(nameof(Entity.tede2.Media.Media.CreatedDate));
|
|
|
if (request.MediaIds.Count() > 0)
|
|
|
query.WhereIn(nameof(Entity.tede2.Media.Media.Id), request.MediaIds);
|
|
|
- if (request.AuthorId != null && request.AuthorId.Count > 0)
|
|
|
- query.WhereIn(nameof(Entity.tede2.Media.Media.TeacherId), request.AuthorId);
|
|
|
+ if (request.TeacherId != null && request.TeacherId.Count > 0)
|
|
|
+ query.WhereIn(nameof(Entity.tede2.Media.Media.TeacherId), request.TeacherId);
|
|
|
resut.Total = await _repository.CountAsync(query);
|
|
|
if (!string.IsNullOrEmpty(request.BeginTime) && !string.IsNullOrEmpty(request.EndTime))
|
|
|
{
|