李昊 4 years ago
parent
commit
3766f1b5e1

+ 10 - 0
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminNavigationController.cs

@@ -53,5 +53,15 @@ namespace GxPress.Api.AdminControllers
         {
             return await navigationRepository.UpdateAsync(request);
         }
+        /// <summary>
+        /// 删除导航
+        ///  </summary>
+        /// <param name="id"></param>
+        /// <returns></returns>
+        [HttpDelete("{id}")]
+        public async Task<bool> DeleteAsync(int id)
+        {
+            return await navigationRepository.DeleteAsync(id);
+        }
     }
 }

+ 2 - 0
gx_api/GxPress/Repository/GxPress.Repository.Implement/Navigation/NavigationRepository.cs

@@ -166,5 +166,7 @@ namespace GxPress.Repository.Implement.Navigation
             }
             return result;
         }
+
+     
     }
 }