|
@@ -106,6 +106,7 @@ namespace GxPress.Repository.Implement.SpecialLabel
|
|
|
query.WhereLike(nameof(Entity.SystemLabel.SpecialLabel.Title), $"%{request.KeyWord}%");
|
|
|
result.Total = await _repository.CountAsync(query);
|
|
|
query.OrderByDesc(nameof(Entity.SystemLabel.SpecialLabel.Sort));
|
|
|
+ query.ForPage(request.Page, request.PerPage);
|
|
|
result.Items = await _repository.GetAllAsync(query);
|
|
|
return result;
|
|
|
}
|