|
|
|
@@ -822,14 +822,30 @@ public class WxWeappInfoController extends BaseController { |
|
|
|
return new ResultData(list); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("小程序发布版本列表") |
|
|
|
@GetMapping("versionList") |
|
|
|
public ResultData getVersionList() { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxWeappInfoController::versionList"); |
|
|
|
@ApiOperation("小程序code提交版本列表") |
|
|
|
@GetMapping("codeVersionList") |
|
|
|
public ResultData getCodeVersionList() { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxWeappInfoController::getCodeVersionList"); |
|
|
|
final List<Map> list = weappCodeStatusService.getVersionList(); |
|
|
|
return new ResultData(list); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("小程序审核版本列表") |
|
|
|
@GetMapping("auditVersionList") |
|
|
|
public ResultData getAuditVersionList() { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxWeappInfoController::getAuditVersionList"); |
|
|
|
final List<Map> list = weappAuditStatusService.getVersionList(); |
|
|
|
return new ResultData(list); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("小程序发布版本列表") |
|
|
|
@GetMapping("releaseVersionList") |
|
|
|
public ResultData getReleaseVersionList() { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxWeappInfoController::getReleaseVersionList"); |
|
|
|
final List<Map> list = weappReleaseStatusService.getVersionList(); |
|
|
|
return new ResultData(list); |
|
|
|
} |
|
|
|
|
|
|
|
/* |
|
|
|
* 0. 回调搭建好 |
|
|
|
* 1. wx_appinfo配置好 |
|
|
|
|