lihao 4 years ago
parent
commit
b95dd68b2a

+ 2 - 0
gx_api/GxPress/Model/GxPress.EnumConst/AllTypeConst.cs

@@ -141,5 +141,7 @@ namespace GxPress.EnumConst
         SucceedCode = 200,
         [Description("失败")]
         ErrorCode = 100,
+        [Description("服务器异常")]
+        ErrorMsg = -1,
     }
 }

+ 6 - 3
gx_api/GxPress/Repository/GxPress.Repository.Implement/Topic/TopicGroupRepository.cs

@@ -62,18 +62,21 @@ namespace GxPress.Repository.Implement.Topic
             };
             try
             {
+                var topicGroupId = 0;
                 using (var transactionScope = new TransactionScope())
                 {
-                    var id = await _repository.InsertAsync(topicGroup);
-                    await _repository.UpdateAsync(Q.Set(nameof(TopicGroup.Sort), id).Where(nameof(TopicGroup.Id), id));
+                    topicGroupId = await _repository.InsertAsync(topicGroup);
+                    await _repository.UpdateAsync(Q.Set(nameof(TopicGroup.Sort), topicGroupId).Where(nameof(TopicGroup.Id), topicGroupId));
                     transactionScope.Complete();
-                    result.Data = await _repository.GetAsync(id);
                 }
+                var topicGroupDto = await _repository.GetAsync(topicGroupId);
+                result.Data = topicGroupDto;
             }
             catch
             {
                 result.Success = false;
                 result.Code = StatusCodeConst.ErrorCode.GetHashCode();
+                result.Msg = StatusCodeConst.ErrorMsg.GetDescriptionOriginal();
             }
             return result;
         }