lihao 4 years ago
parent
commit
c3a89c4440

+ 0 - 3
gx_api/GxPress/Api/GxPress.Api/AppControllers/AddressBookGroupUserController.cs

@@ -1,7 +1,4 @@
-using System.Collections.Generic;
-using System.Linq;
 using System.Threading.Tasks;
-using Datory;
 using GxPress.Auth;
 using GxPress.Repository.Interface;
 using GxPress.Repository.Interface.Friends;

+ 5 - 1
gx_api/GxPress/Api/GxPress.Api/AppControllers/AppPageController.cs

@@ -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)
             {

+ 1 - 1
gx_api/GxPress/Api/GxPress.Api/AppControllers/VerificationCodeController.cs

@@ -45,7 +45,7 @@ namespace GxPress.Api.AppControllers
             var result = new VerificationDto();
             result.Code = code;
             var serviceUrl = GxPress.Common.Tools.ConfigHelper.GetValue("ServiceAddress:AddressUrlDownload");
-            result.ServiceUrl = $"{serviceUrl}/mobile/pcupload";
+            result.ServiceUrl = $"{serviceUrl}/mobile/p";
             return result;
         }
         /// <summary>

+ 0 - 3
gx_api/GxPress/Model/GxPress.Request/App/Note/NoteSearchPageListRequest.cs

@@ -1,6 +1,3 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
 using GxPress.Common.Page;
 
 namespace GxPress.Request.App.Note