|
@@ -54,6 +54,21 @@ namespace GxPress.Repository.Implement.Attach
|
|
|
result.Total = await _repository.CountAsync(query);
|
|
|
return result;
|
|
|
}
|
|
|
+ public async Task<IEnumerable<Entity.tede2.Attach.Attach>> GetSearchAllAsync(AttachRequest request)
|
|
|
+ {
|
|
|
+ var query = Q.NewQuery();
|
|
|
+ query.Where(nameof(Entity.tede2.Attach.Attach.AttachType), request.TypeId);
|
|
|
+ if (!string.IsNullOrEmpty(request.KeyWord))
|
|
|
+ query.WhereLike(nameof(Entity.tede2.Attach.Attach.Name), $"%{request.KeyWord}%");
|
|
|
+ if (request.CategoryId > 0)
|
|
|
+ query.Where(nameof(Entity.tede2.Attach.Attach.CategoryId), request.CategoryId);
|
|
|
+ if (request.AdminId > 0)
|
|
|
+ query.Where(nameof(Entity.tede2.Attach.Attach.CategoryId), request.AdminId);
|
|
|
+ if (request.WithdrawType > 0)
|
|
|
+ query.Where(nameof(Entity.tede2.Attach.Attach.IsWithdraw), request.WithdrawType == 2);
|
|
|
+ var result = await _repository.GetAllAsync(query);
|
|
|
+ return result;
|
|
|
+ }
|
|
|
|
|
|
public async Task<Entity.tede2.Attach.Attach> GetAsync(int id)
|
|
|
{
|