| | |
| | | /**
|
| | | * 获取当前版本号
|
| | | */
|
| | | @ApiOperation(value="获取当前版本号", notes="获取当前版本号")
|
| | | @ApiOperation(value="APP端获取当前版本号", notes="获取当前版本号")
|
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = AppVersionListVo.class)})
|
| | | @GetMapping(value = "/getAppVersionInfo")
|
| | | public Result getAppVersionInfo() {
|
| | | return memberService.getAppVersionInfo();
|
| | | }
|
| | | |
| | |
|
| | |
|
| | | /**
|
| | | * 获取当前版本号
|
| | | */
|
| | | @ApiOperation(value="PC端获取当前版本号", notes="获取当前版本号")
|
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = AppVersionListVo.class)})
|
| | | @GetMapping(value = "/getPcVersionInfo")
|
| | | public Result getPcVersionInfo() {
|
| | | return memberService.getPcVersionInfo();
|
| | | }
|
| | |
|
| | |
|
| | | /**
|
| | | * 获取我的信息
|
| | | * @return
|