|
@@ -78,6 +78,7 @@ namespace GxPress.Repository.Implement
|
|
|
FileHelper.SaveQRCodeFile(StringUtils.GetWebRootPath(_environment.WebRootPath),
|
|
|
JsonConvert.SerializeObject(qrCodeData));
|
|
|
groupDto.QRCoder = resultPath.RelativePath;
|
|
|
+ groupDto.Sort = id;
|
|
|
await _repository.UpdateAsync(groupDto);
|
|
|
return id;
|
|
|
}
|
|
@@ -112,6 +113,8 @@ namespace GxPress.Repository.Implement
|
|
|
group.IsAdmin = request.IsAdmin == 1;
|
|
|
if (request.IsWords > 0)
|
|
|
group.IsWords = request.IsWords == 1;
|
|
|
+ if (request.Sort > 0)
|
|
|
+ group.Sort = request.Sort;
|
|
|
return await _repository.UpdateAsync(group);
|
|
|
}
|
|
|
/// <summary>
|
|
@@ -599,5 +602,33 @@ namespace GxPress.Repository.Implement
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
+ /// <summary>
|
|
|
+ /// 获取小组列表
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ public async Task<IEnumerable<GroupDetailResult>> GetGroupDetailResults()
|
|
|
+ {
|
|
|
+ string sql = @"SELECT
|
|
|
+ a.*, b.Name AS CategroyName, c.Name AS UserName
|
|
|
+ FROM
|
|
|
+ tede_group a
|
|
|
+ INNER JOIN
|
|
|
+ tede_user c ON a.UserId = c.Id
|
|
|
+ LEFT JOIN
|
|
|
+ tede_category b ON a.GroupCategroyId = b.Id
|
|
|
+ ORDER BY a.Sort DESC , a.CreatedDate DESC;";
|
|
|
+ var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
+ var database = new Database(databaseType, _connectionString);
|
|
|
+ var connection = database.GetConnection();
|
|
|
+ var result = await connection
|
|
|
+ .QueryAsync<GroupDetailResult>(sql);
|
|
|
+ foreach (var item in result)
|
|
|
+ {
|
|
|
+ item.AvatarUrl = StringUtils.AddDomainMin(item.AvatarUrl);
|
|
|
+ item.QRCoder = StringUtils.AddDomainMin(item.QRCoder);
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|