2 Commits 91736d1372 ... e4c93bdbc7

Author SHA1 Message Date
  jiangjc e4c93bdbc7 Merge branch 'develop' of http://132.232.92.186:3000/XinXiBu/OA2023 into develop 2 months ago
  jiangjc 89e0201856 udpate 2 months ago
1 changed files with 1 additions and 1 deletions
  1. 1 1
      OASystem/OASystem.Api/Controllers/AuthController.cs

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

@@ -414,7 +414,7 @@ namespace OASystem.API.Controllers
         {
             var view = await _deviceTokenRepository.GetToken(dto.account);
 
-            if (view.Code == 0) return Ok(JsonView(true, "操作成功!"));
+            if (view.Code == 0) return Ok(JsonView(true, "操作成功!", view.Data));
 
             return Ok(JsonView(false, view.Msg));
         }