李昊 vor 4 Jahren
Ursprung
Commit
8065990805

+ 2 - 8
gx_api/GxPress/Service/GxPress.Service.Implement/Reply/ReplyService.Comment.cs

@@ -86,10 +86,7 @@ namespace GxPress.Service.Implement.Reply
                     item.Name = replyResult.Name;
                 }
                 item.AvatarUrl = StringUtils.AddDomainMin(item.AvatarUrl);
-                var typeValue = item.TypeValue;
-                if (item.TypeValue == AllTypeConst.Note.GetHashCode())
-                    typeValue = AllTypeConst.Topic.GetHashCode();
-                item.Remark = ((AllTypeConst)typeValue).GetDescriptionOriginal();
+                item.Remark = ((AllTypeConst)item.TypeValue).GetDescriptionOriginal();
                 item.IsComment = true;
             }
             return receipt;
@@ -155,10 +152,7 @@ namespace GxPress.Service.Implement.Reply
                     item.Name = replyResult.Name;
                 }
                 item.AvatarUrl = StringUtils.AddDomainMin(item.AvatarUrl);
-                var typeValue = item.TypeValue;
-                if (item.TypeValue == AllTypeConst.Note.GetHashCode())
-                    typeValue = AllTypeConst.Topic.GetHashCode();
-                item.Remark = ((AllTypeConst)typeValue).GetDescriptionOriginal();
+                item.Remark = ((AllTypeConst)item.TypeValue).GetDescriptionOriginal();
                 item.IsComment = true;
             }
             return receipt;

+ 1 - 1
gx_api/GxPress/Service/GxPress.Service.Implement/Reply/ReplyService.Note.Topic.cs

@@ -76,7 +76,7 @@ namespace GxPress.Service.Implement.Reply
                             result.CreatedDate = note.CreatedDate;
                             result.Content = string.Empty;
                             result.Name = userModel.Name;
-                            result.Remark = result.TypeValue == AllTypeConst.Note.GetHashCode() ? AllTypeConst.Topic.GetDescriptionOriginal() : AllTypeConst.Note.GetDescriptionOriginal();
+                            result.Remark =((AllTypeConst)result.TypeValue).GetDescriptionOriginal();
                             return result;
                         }, splitOn: "Id,Title,Name,Name");