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