ProductLogic.cs 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. using CZFW.Framework.Logic;
  2. using CZFW.Framework.Model.Entity;
  3. using CZFW.Framework.Model.ViewModel;
  4. using CZKJ.GBRS2.Entity;
  5. using CZKJ.GBRS2.Enum;
  6. using CZKJ.GBRS2.Interface;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. namespace CZKJ.GBRS2.Logic
  10. {
  11. public class ProductLogic : LogicBase<ProductEntity>, IProduct
  12. {
  13. public ResultModel EditStatus(int id, int status)
  14. {
  15. string sql = $"update cz_gbrs2_product set Status={status} where id={id}";
  16. var res = ExcuteSql(sql);
  17. return res;
  18. }
  19. public IList<ProductEntity> GetCountList(IList<int> idList, int count)
  20. {
  21. var productList = new List<ProductEntity>();
  22. foreach (var list in idList.Select(item => DbContext.Set<ProductEntity>().Where(x => x.TypeId == item&&x.Status == (int)ProductStatusEnum.上线).OrderByDescending(x => x.SortOrder).Take(count).ToList()))
  23. {
  24. productList.AddRange(list);
  25. }
  26. return productList;
  27. }
  28. public IList<ProductEntity> GetList(int pageIndex, int pageSize, out int rowsCount, int? parentId, int? typeId, string keywords)
  29. {
  30. var queryable = Queryable;
  31. if (parentId.HasValue)
  32. {
  33. var idList = DbContext.Set<TypeEntity>().Where(x => x.ParentId == parentId).Select(x => x.Id).ToList();
  34. queryable = queryable.Where(x => idList.Contains(x.TypeId));
  35. }
  36. if (typeId.HasValue)
  37. {
  38. queryable = queryable.Where(x => x.TypeId == typeId);
  39. }
  40. if (!string.IsNullOrWhiteSpace(keywords))
  41. {
  42. queryable = queryable.Where(x => x.Title.Contains(keywords) || x.Summary.Contains(keywords));
  43. }
  44. rowsCount = queryable.Count();
  45. var list = queryable.Join(DbContext.Set<TypeEntity>(), x => x.TypeId, y => y.Id, (x, y) => new { x, y.Name }).OrderByDescending(x => x.x.SortOrder).Skip((pageIndex - 1) * pageSize).Take(pageSize).ToList();
  46. return list.Select(x => new ProductEntity
  47. {
  48. Id = x.x.Id,
  49. Image = x.x.Image,
  50. MainImage=x.x.MainImage,
  51. MobileMainImage=x.x.MobileMainImage,
  52. Title = x.x.Title,
  53. TypeName = x.Name,
  54. Summary = x.x.Summary,
  55. SortOrder = x.x.SortOrder,
  56. PublishTime = x.x.PublishTime,
  57. Status = x.x.Status,
  58. StatusName = x.x.Status == (int)ProductStatusEnum.上线?"上线":"下线"
  59. }).ToList();
  60. }
  61. public IList<ProductEntity> GetSearchResult(string keywords, int pageIndex, int pageSize, out int rowsCount)
  62. {
  63. var queryable = Queryable.Where(x => x.Title.Contains(keywords) || x.Summary.Contains(keywords)&&x.Status == (int)ProductStatusEnum.上线);
  64. rowsCount = queryable.Count();
  65. var result = queryable.Join(DbContext.Set<TypeEntity>(), x => x.TypeId, y => y.Id, (x, y) => new { x, y.Name }).Select(x => new { x.x.Title, x.x.PublishTime, TypeName = x.Name, x.x.Id }).OrderByDescending(x => x.PublishTime).Skip((pageIndex - 1) * pageSize).Take(pageSize);
  66. return result.ToList().Select(x => new ProductEntity
  67. {
  68. Id = x.Id,
  69. Title = x.Title,
  70. PublishTime = x.PublishTime,
  71. TypeName = x.TypeName
  72. }).ToList();
  73. }
  74. }
  75. }