|
@@ -96,7 +96,7 @@ public class RepairMixtureHandler {
|
|
|
|
|
|
ScenePlus scenePlus = scenePlusService.getById(scenePlusExt.getPlusId());
|
|
|
|
|
|
- String url = laserHost + "/laser/4dage/mixture/{{sceneCode}}";
|
|
|
+ String url = laserHost + "/laser/4dage/mixture/{sceneCode}";
|
|
|
url = url.replace("{sceneCode}", scenePlus.getNum());
|
|
|
HttpUtil.post(url, "");
|
|
|
});
|
|
@@ -105,4 +105,10 @@ public class RepairMixtureHandler {
|
|
|
XxlJobHelper.log("repairMixtureHandler end.....");
|
|
|
}
|
|
|
|
|
|
+ public static void main(String[] args) {
|
|
|
+ String url = "https://uat-laser.4dkankan.com" + "/laser/4dage/mixture/{{sceneCode}}";
|
|
|
+ url = url.replace("{sceneCode}", "SG-t-BANlr6lDAwA");
|
|
|
+ HttpUtil.post(url, "");
|
|
|
+ }
|
|
|
+
|
|
|
}
|