瀏覽代碼

修复 SystemController.cs 中的拼写错误

修复了 `SystemController.cs` 文件中的一个拼写错误,将 `[HttpGet)` 更改为 `[HttpGet]`。
LEIYI 4 月之前
父節點
當前提交
de1c8ea6df
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      OASystem/OASystem.Api/Controllers/SystemController.cs

+ 1 - 1
OASystem/OASystem.Api/Controllers/SystemController.cs

@@ -3056,7 +3056,7 @@ And u.UId = {0} And u.FId = 1 ", dto.UserId);
         /// 数据库备份
         /// </summary>
         /// <returns></returns>
-        [HttpGet)]
+        [HttpGet]
         [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
         public async Task<IActionResult> SQLServerBackups()
         {