Просмотр исходного кода

修复 SystemController.cs 中的拼写错误

修复了 `SystemController.cs` 文件中的一个拼写错误,将 `[HttpGet)` 更改为 `[HttpGet]`。
LEIYI месяцев назад: 4
Родитель
Сommit
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()
         {