|
@@ -222,7 +222,11 @@ namespace GxPress.Api.AppControllers
|
|
|
public async Task<List<MediaRankingResult>> GetRankingListResults()
|
|
|
{
|
|
|
var dictionary = new Dictionary<int, string>() { { 2, "热书榜" }, { 3, "课程榜" }, { 4, "文献头条" }, { 6, "视听榜" } };
|
|
|
- var dictionaryMedia = new Dictionary<int, string>() { { AllTypeConst.Book.GetHashCode(), "热书榜" }, { AllTypeConst.Curriculum.GetHashCode(), "课程榜" }, { AllTypeConst.Article.GetHashCode(), "文献头条" }, { AllTypeConst.Audio.GetHashCode(), "视听榜" } };
|
|
|
+ var dictionaryMedia = new Dictionary<int, string>() {
|
|
|
+ { AllTypeConst.Book.GetHashCode(), "热书榜" },
|
|
|
+ { AllTypeConst.Curriculum.GetHashCode(), "课程榜" },
|
|
|
+ { AllTypeConst.Article.GetHashCode(), "文献头条" },
|
|
|
+ { AllTypeConst.Audio.GetHashCode(), "视听榜" } };
|
|
|
var result = new List<MediaRankingResult>();
|
|
|
foreach (var item in dictionary)
|
|
|
{
|