|
|
|
@ -95,14 +95,14 @@ public class JumpRouteJoinStrategy {
|
|
|
|
|
* @return 实时画面路径拼接所需参数 |
|
|
|
|
*/ |
|
|
|
|
private Map<String,String> scadaResolve(Map<String,String> args) { |
|
|
|
|
String params = args.get("params"); |
|
|
|
|
String params = args.get("canvas_id"); |
|
|
|
|
// 参数格式为:picResource^context^stationNum^projectId^taskId^name^id
|
|
|
|
|
String[] keys = new String[]{"picResource","context","stationNum","projectId","taskId","name","id"}; |
|
|
|
|
return this.resolve(params,keys); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private Map<String,String> videoResolve(Map<String,String> args) { |
|
|
|
|
String params = args.get("params"); |
|
|
|
|
String params = args.get("canvas_id"); |
|
|
|
|
// 参数格式为:id^name^stationCode^pointCode^host^appKey^appSecret
|
|
|
|
|
String[] keys = new String[]{"id","name","stationCode","pointCode","host","appKey","appSecret"}; |
|
|
|
|
return this.resolve(params,keys); |
|
|
|
|