|
@@ -139,6 +139,14 @@ public class CommonController {
|
|
|
return R.ok().put("data",version);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("获取最新版本")
|
|
|
+ @GetMapping("/testGit")
|
|
|
+ public R testGit(@RequestParam("appType")Integer appType)
|
|
|
+ {
|
|
|
+ FsAppVersion version=appVersionService.getNewAppVersion(appType);
|
|
|
+ return R.ok().put("data",version);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation("获取数据字典")
|
|
|
@GetMapping("/getDictByKey")
|
|
|
|