|
@@ -61,6 +61,18 @@ public class VerManageController {
|
|
|
return new AjaxMessage<>(ResultStatus.OK, pages);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询app版本信息
|
|
|
+ * @return 单条数据
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "appUpgrade", method = RequestMethod.GET)
|
|
|
+ @ApiOperation(value = "app升级")
|
|
|
+ public AjaxMessage<VerManageEntity> appUpgrade(
|
|
|
+ @ApiParam(value = "产品类型", required = false) @RequestParam(required = false) String productType) {
|
|
|
+ VerManageEntity verManageEntity = verManageService.getUpgradeVer(productType);
|
|
|
+ return new AjaxMessage<>(ResultStatus.OK, verManageEntity);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 新增APP版本信息
|
|
|
*/
|
|
@@ -78,7 +90,6 @@ public class VerManageController {
|
|
|
return new AjaxMessage<>(ResultStatus.ERROR);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* 修改APP版本信息
|
|
|
*/
|