yangys
2024-04-23 cacfe3693e552724a07ff65ee620cee91787da76
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;
    }
}