1.
phpcjl
2024-12-10 071153064e6771e377ee148712be012dba9e13c5
ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/AppUserController.java
@@ -65,10 +65,6 @@
   }
   @ResponseBody
   @PostMapping("/appletLogin")
   @ApiOperation(value = "小程序一键登录")
@@ -320,8 +316,16 @@
      AppUser superiorLeader = appUserService.getSuperiorLeader(id);
      return R.ok(superiorLeader);
   }
   @ResponseBody
   @PostMapping("/onlineRecord")
   @ApiOperation(value = "10分钟定时任务调用,记录用户在线时长", tags = {"小程序-个人中心首页"})
   public R onlineRecord(){
      appUserService.onlineRecord();
      return R.ok();
   }
}