|
@@ -8,6 +8,7 @@ using GxPress.Common.Page;
|
|
|
using GxPress.Common.Tools;
|
|
|
using GxPress.Entity.Middle;
|
|
|
using GxPress.Entity.WorkMeeting;
|
|
|
+using GxPress.EnumConst;
|
|
|
using GxPress.Repository.Interface;
|
|
|
using GxPress.Repository.Interface.Collection;
|
|
|
using GxPress.Repository.Interface.Missive;
|
|
@@ -427,7 +428,7 @@ namespace GxPress.Service.Implement.Collection
|
|
|
|
|
|
}
|
|
|
//话题类型
|
|
|
- if (collectionType == 2)
|
|
|
+ if (collectionType == AllTypeConst.Topic.GetHashCode())
|
|
|
{
|
|
|
var topic = await _topicRepository.GetAsync(collectionDataId);
|
|
|
if (topic == null)
|
|
@@ -464,7 +465,7 @@ namespace GxPress.Service.Implement.Collection
|
|
|
}
|
|
|
|
|
|
//收藏
|
|
|
- if (collectionType == 3)
|
|
|
+ if (collectionType == AllTypeConst.Collect.GetHashCode())
|
|
|
{
|
|
|
var collection = await GetCollectionRecursion(collectionDataId);
|
|
|
list = await StructCollectionData(collection.EndCollectionDataId, collection.EndCollectionType, collection.SourceUserId);
|
|
@@ -472,7 +473,7 @@ namespace GxPress.Service.Implement.Collection
|
|
|
}
|
|
|
|
|
|
//笔记
|
|
|
- if (collectionType == 4 || collectionType == 21)
|
|
|
+ if (collectionType == AllTypeConst.Note.GetHashCode() || collectionType == 21)
|
|
|
{
|
|
|
var note = await _noteRepository.GetAsync(collectionDataId);
|
|
|
if (note != null)
|