PublicInfoLogic.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using CZFW.Framework.Logic;
  4. using CZKJ.GBRS2.Entity;
  5. using CZKJ.GBRS2.Interface;
  6. namespace CZKJ.GBRS2.Logic
  7. {
  8. public class PublicInfoLogic : LogicBase<PublicInfoEntity>, IPublicInfo
  9. {
  10. public IList<PublicInfoEntity> GetList(IList<int> typeIdList, int? typeId, string keywords, int pageIndex, int pageSize, out int rowsCount)
  11. {
  12. var queryable = Queryable;
  13. if (typeIdList.Count > 0)
  14. {
  15. var typeList =
  16. queryable = queryable.Where(x => typeIdList.Contains(x.TypeId));
  17. }
  18. if (typeId.HasValue)
  19. {
  20. queryable = queryable.Where(x => x.TypeId == typeId);
  21. }
  22. if (!string.IsNullOrWhiteSpace(keywords))
  23. {
  24. queryable = queryable.Where(x => x.Title.Contains(keywords) || x.Summary.Contains(keywords));
  25. }
  26. rowsCount = queryable.Count();
  27. var result = queryable.Join(DbContext.Set<PublicTypeEntity>(), x => x.TypeId, y => y.Id, (x, y) => new { x, y.Name }).OrderByDescending(x => x.x.SortOrder).Skip((pageIndex - 1) * pageSize).Take(pageSize);
  28. return result.ToList().Select(x => new PublicInfoEntity
  29. {
  30. Id = x.x.Id,
  31. Image = x.x.Image,
  32. PublishTime = x.x.PublishTime,
  33. TypeName = x.Name,
  34. Summary = x.x.Summary,
  35. Title = x.x.Title,
  36. TypeId = x.x.TypeId,
  37. FileName = x.x.FileName,
  38. FileUrl = x.x.FileUrl,
  39. SortOrder = x.x.SortOrder
  40. }).ToList();
  41. }
  42. public bool JudgeQuote(int typeId)
  43. {
  44. return Queryable.Any(x => x.TypeId == typeId);
  45. }
  46. }
  47. }