1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.qianwen.core.tool.script.engine;
|
| 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;
| }
| }
|
|