lihao il y a 4 ans
Parent
commit
35ca7d9452

+ 4 - 0
gx_api/GxPress/Model/GxPress.Request/App/Group/GroupUpRequest.cs

@@ -20,7 +20,11 @@ namespace GxPress.Request.App.Group
         /// </summary>
         public string Name { get; set; }
 
+        /// <summary>
+        /// 广场ID
+        /// </summary>
 
+        public int GroupCategroyId { get; set; }
 
         /// <summary>
         /// 头像

+ 2 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/GroupRepository.cs

@@ -98,6 +98,8 @@ namespace GxPress.Repository.Implement
             var group = await _repository.GetAsync(request.Id);
             if (!string.IsNullOrEmpty(request.Name))
                 group.Name = request.Name;
+            if (request.GroupCategroyId > 0)
+                group.GroupCategroyId = request.GroupCategroyId;
             if (!string.IsNullOrEmpty(request.AvatarUrl))
             {
                 group.HistoryAvatarUrl = group.AvatarUrl;