李昊 il y a 4 ans
Parent
commit
dfffe5c3b1

+ 5 - 0
gx_api/GxPress/Model/GxPress.Result/App/Group/GroupDetailResult.cs

@@ -106,6 +106,11 @@ namespace GxPress.Result.App.Group
         /// </summary>
         /// <value></value>
         public string LabelName { get; set; }
+        /// <summary>
+        /// 是否显示
+        /// </summary>
+        /// <value></value>
+        public bool IsShow { get; set; }
     }
     /// <summary>
     /// 用户小组列表

+ 1 - 2
gx_api/GxPress/Service/GxPress.Service.Implement/Group/GroupService.cs

@@ -75,7 +75,7 @@ namespace GxPress.Service.Implement.Group
                     {
                         MiddleSonId = 0,
                         FolderId = request.GroupFolderId,
-                        FolderType = 7,
+                        FolderType = AllTypeConst.Group.GetHashCode(),
                         MiddleId = groupId,
                         UserId = request.UserId
                     };
@@ -121,7 +121,6 @@ namespace GxPress.Service.Implement.Group
                 {
                     item.CategoryName = "根目录";
                 }
-
             }
             return result;
         }