|
@@ -793,7 +793,6 @@ namespace GxPress.Repository.Implement.Media
|
|
|
query.WhereIn(nameof(Entity.tede2.Media.Media.Id), request.MediaIds);
|
|
|
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))
|
|
|
{
|
|
|
query.Where(nameof(Entity.tede2.Media.Media.AddDate), ">=", request.BeginTime);
|
|
@@ -803,6 +802,7 @@ namespace GxPress.Repository.Implement.Media
|
|
|
{
|
|
|
query.OrWhereIn(nameof(Entity.tede2.Media.Media.Press), request.Press);
|
|
|
}
|
|
|
+ resut.Total = await _repository.CountAsync(query);
|
|
|
if (!string.IsNullOrEmpty(request.Sort))
|
|
|
{
|
|
|
if (request.Sort.Equals("0"))
|