PC 版本管理

This commit is contained in:
2024-08-28 16:20:04 +08:00
parent 15c09f9666
commit ae3d77e8c3
5 changed files with 148 additions and 0 deletions

View File

@@ -34,6 +34,11 @@ public class LoginContoller {
return Result.fail(CodeEnum.FAIL);
}
@RequestMapping(value = "findVersion",method = RequestMethod.POST)
public Result findVersion() {
return loginService.findVersion();
}
@RequestMapping("logout")
public Result logout( @RequestHeader("token") String token,