李昊 4 years ago
parent
commit
3572024f3a

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

@@ -143,7 +143,7 @@ namespace GxPress.Api.AppControllers
         /// <returns></returns>
         [HttpGet("random-day-skill")]
          [AllowAnonymous]
-        public async Task<MediaCathedraResult> GetRandomDaySkillAsync()
+        public async Task<SkillInfo> GetRandomDaySkillAsync()
         {
             return await mediaRepository.GetRandomDaySkillAsync();
         }

+ 11 - 0
gx_api/GxPress/Model/GxPress.Result/Media/MediaResult.cs

@@ -529,4 +529,15 @@ namespace GxPress.Result.Media
         /// </summary>
         public int MediaType { get; set; }
     }
+    /// <summary>
+    /// 每日技能
+    /// </summary>
+    public class SkillInfo
+    {
+        public int Id { get; set; }
+        /// <summary>
+        /// Json内容
+        /// </summary>
+        public string Blocks { get; set; }
+    }
 }

+ 3 - 3
gx_api/GxPress/Repository/GxPress.Repository.Implement/Media/MediaRepository.cs

@@ -653,17 +653,17 @@ namespace GxPress.Repository.Implement.Media
         /// 每日技能
         /// </summary>
         /// <returns></returns>
-        public async Task<MediaCathedraResult> GetRandomDaySkillAsync()
+        public async Task<SkillInfo> GetRandomDaySkillAsync()
         {
             var sql = $@"SELECT 
-                            Id,ImageUrls,Title,Author,MediaType,ReadCount,CreatedDate
+                            Id,Blocks
                         FROM
                             tede_media IsExercises=1 and MediaType={AllTypeConst.Article.GetHashCode()}
                         ORDER BY RAND() LIMIT 1";
             var databaseType = _databaseTypestr.ToEnum<DatabaseType>(DatabaseType.MySql);
             var database = new Database(databaseType, _connectionString);
             var connection = database.GetConnection();
-            return await connection.QueryFirstAsync<MediaCathedraResult>(sql);
+            return await connection.QueryFirstAsync<SkillInfo>(sql);
         }
     }
 }

+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Interface/Media/IMediaRepository.cs

@@ -99,6 +99,6 @@ namespace GxPress.Repository.Interface.Media
         /// 每日技能
         /// </summary>
         /// <returns></returns>
-        Task<MediaCathedraResult> GetRandomDaySkillAsync();
+        Task<SkillInfo> GetRandomDaySkillAsync();
     }
 }