DictItemLogic.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /**
  2. * 命名空间: CZFW.Category.Logic
  3. *
  4. * 功 能: N/A
  5. * 类 名: DictItemLogic
  6. *
  7. * Ver 变更日期 负责人 变更内容
  8. * ───────────────────────────────────
  9. * V0.01 2016/12/20 19:05:07 曹湘 初稿
  10. *
  11. * Copyright (c) 2016 CHUANGZHIKEJI Corporation. All rights reserved.
  12. *┌──────────────────────────────────┐
  13. *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
  14. *│ 版权所有:创执科技(北京)有限公司                │
  15. *└──────────────────────────────────┘
  16. */
  17. using System.Collections.Generic;
  18. using CZFW.Framework.Interface;
  19. using CZFW.Framework.Model.Entity;
  20. using CZFW.Framework.Model.ViewModel;
  21. using System.Linq;
  22. namespace CZFW.Framework.Logic
  23. {
  24. public class DictItemLogic : LogicBase<DictItemEntity>, IDictItem
  25. {
  26. public IList<DictItemModel> Get(string id)
  27. {
  28. int i = 0;
  29. if (int.TryParse(id, out i))
  30. return GetDictItemsById(i);
  31. else
  32. return GetDictItemByMark(id);
  33. }
  34. public IList<DictItemModel> GetDictItemByMark(string mark)
  35. {
  36. var dictEntity = DbContext.Set<DictEntity>().Where(x => x.Mark == mark).SingleOrDefault();
  37. var res = Queryable.Where(x => x.DictMark == mark).Select(x => new DictItemModel()
  38. {
  39. Id = x.Id,
  40. Description = x.Description,
  41. DictId = x.DictId,
  42. Name = x.Name,
  43. DictMark = x.DictMark,
  44. SortOrder = x.SortOrder ?? 0,
  45. Value = x.Value,
  46. IsDefault = dictEntity.DefaultItemId == x.Id
  47. }).OrderByDescending(x => x.SortOrder).ToList();
  48. return res;
  49. }
  50. public IList<DictItemModel> GetDictItemsById(int id)
  51. {
  52. var dictEntity = DbContext.Set<DictEntity>().Where(x => x.Id == id).SingleOrDefault();
  53. var res = Queryable.Where(x => x.DictId == id).Select(x => new DictItemModel()
  54. {
  55. Id = x.Id,
  56. Description = x.Description,
  57. DictId = x.DictId,
  58. Name = x.Name,
  59. DictMark = x.DictMark,
  60. SortOrder = x.SortOrder ?? 0,
  61. Value = x.Value,
  62. IsDefault = x.Id == dictEntity.DefaultItemId
  63. }).OrderByDescending(x => x.SortOrder).ToList();
  64. return res;
  65. }
  66. public TableModel<DictItemModel> GetDictItemsTableById(int id, int pageIndex = 1, int pageSize = 20)
  67. {
  68. var model = new TableModel<DictItemModel>();
  69. model.SetData(GetDictItemsById(id));
  70. model.Pager = new PagerModel(GetCount(x => x.DictId == id), pageIndex, pageSize);
  71. model.TableHeads = PropertyHelper.Get(typeof(DictItemModel));
  72. return model;
  73. }
  74. public IList<KeyValuePair<string, int>> GetEnumItems(string enumName)
  75. {
  76. var res = PropertyHelper.GetEnumValues(enumName);
  77. return res;
  78. }
  79. public DictItemModel GetModel(int dictItemId)
  80. {
  81. var res = Queryable.Where(x => x.Id == dictItemId).Select(x => new DictItemModel
  82. {
  83. Id = x.Id,
  84. Description = x.Description,
  85. DictId = x.DictId,
  86. DictMark = x.DictMark,
  87. Name = x.Name,
  88. Value = x.Value
  89. }).SingleOrDefault();
  90. return res;
  91. }
  92. public IList<DictItemModel> GetModelsByIds(params int[] ids)
  93. {
  94. var res = Queryable.Where(x => ids.Contains(x.Id)).Select(x => new DictItemModel
  95. {
  96. Id = x.Id,
  97. Description = x.Description,
  98. DictId = x.DictId,
  99. DictMark = x.DictMark,
  100. Name = x.Name,
  101. Value = x.Value
  102. }).ToList();
  103. return res;
  104. }
  105. }
  106. }