lihao 4 years ago
parent
commit
f1889eb419

+ 0 - 10
gx_api/GxPress/Model/GxPress.Entity/Group.cs

@@ -100,15 +100,5 @@ namespace GxPress.Entity
         /// <value></value>
         [DataColumn]
         public int Sort { get; set; }
-        /// <summary>
-        /// 是否申请
-        /// </summary>
-        /// <value></value>
-        public bool IsApply { get; set; }
-        /// <summary>
-        /// 是否加入
-        /// </summary>
-        /// <value></value>
-        public bool IsUser { get; set; }
     }
 }

+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/GroupRepository.cs

@@ -487,7 +487,7 @@ namespace GxPress.Repository.Implement
             var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
             var database = new Database(databaseType, _connectionString);
             var connection = database.GetConnection();
-            var result = await connection.QueryAsync<Entity.Group>(sql);
+            var result = await connection.QueryAsync<SearchGroupDetailResult>(sql);
             //return await _repository.GetAllAsync(Q.Where(nameof(Entity.Group.GroupCategroyId), categoryId));
             return result;
         }