TypeLogic.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /**
  2. * 命名空间: CZFW.Framework.Modules.Logic
  3. *
  4. * 功 能: N/A
  5. * 类 名: TypeLogic
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2016/12/1 9:10:08 吴争辉 初稿
  10. *
  11. * Copyright (c) 2016 CHUANGZHIKEJI Corporation. All rights reserved.
  12. *┌──────────────────────────────────┐
  13. *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
  14. *│ 版权所有:创执科技(北京)有限公司                │
  15. *└──────────────────────────────────┘
  16. */
  17. using System.Collections.Generic;
  18. using System.Linq;
  19. using CZFW.Framework.Interface;
  20. using CZFW.Framework.Model.Entity;
  21. using CZFW.Framework.Model.ViewModel;
  22. namespace CZFW.Framework.Logic
  23. {
  24. /// <summary>
  25. /// 分类
  26. /// </summary>
  27. public class TypeLogic : LogicBase<TypeEntity>, IType
  28. {
  29. /// <summary>
  30. /// 根据父Id获取类型列表
  31. /// </summary>
  32. /// <param name="parentId">父Id</param>
  33. /// <returns></returns>
  34. public TableModel<TypeEntity> GetListByParentId(int parentId, int pageIndex, int pageSize)
  35. {
  36. var queryable = Queryable.Where(x => x.ParentId == parentId);
  37. int rowsCount = queryable.Count();
  38. var model = new TableModel<TypeEntity>();
  39. var data = queryable.OrderByDescending(x => x.SortOrder).Skip((pageIndex - 1) * pageSize).Take(pageSize).ToList();
  40. model.SetData(data);
  41. model.Pager = new PagerModel(rowsCount, pageIndex, pageSize);
  42. model.TableHeads = PropertyHelper.Get(typeof(TypeEntity));
  43. return model;
  44. }
  45. public IList<TypeEntity> GetListByParentId(int parentId)
  46. {
  47. return Queryable.Where(x => x.ParentId == parentId).OrderByDescending(x => x.SortOrder).ToList();
  48. }
  49. public ResultModel RemoveType(int id)
  50. {
  51. var typeList = DbContext.Set<TypeEntity>().Where(x => x.ParentId == id).ToList();
  52. if (typeList.Count > 0)
  53. {
  54. RemoveEntities(x => x.ParentId == id);
  55. }
  56. return RemoveEntity(id);
  57. }
  58. }
  59. }