1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.qianwen.core.tool.script.engine;
|
| /* loaded from: blade-core-tool-9.3.0.0-SNAPSHOT.jar:org/springblade/core/tool/script/engine/ScriptContext.class */
| public class ScriptContext {
| private String id;
| private String md5;
|
| public ScriptContext(String id, String md5) {
| this.id = id;
| this.md5 = md5;
| }
|
| public String getMd5() {
| return this.md5;
| }
|
| public String getId() {
| return this.id;
| }
| }
|
|