李昊 4 年 前
コミット
a5815b80bf
共有1 個のファイルを変更した11 個の追加0 個の削除を含む
  1. 11 0
      gx_api/GxPress/Api/GxPress.Api/WebControllers/NavigationController.cs

+ 11 - 0
gx_api/GxPress/Api/GxPress.Api/WebControllers/NavigationController.cs

@@ -30,5 +30,16 @@ namespace GxPress.Api.WebControllers
         {
             return await navigationRepository.GetNavigationResults(id);
         }
+
+        /// <summary>
+        /// 列表 pc 1 移动 2
+        /// </summary>
+        /// <returns></returns>
+        [HttpGet("{terminal}")]
+        [AllowAnonymous]
+        public async Task<IEnumerable<NavigationResult>> GetList(int terminal)
+        {
+            return await navigationRepository.GetAllAsync(terminal);
+        }
     }
 }