李昊 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);
+        }
     }
 }