GAL-224 DoS检测支持知识库动态加载
This commit is contained in:
@@ -1,5 +1,26 @@
|
||||
package com.zdjizhi.common;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class CustomFile {
|
||||
public class CustomFile implements Serializable {
|
||||
|
||||
String fileName;
|
||||
|
||||
byte[] content;
|
||||
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public byte[] getContent() {
|
||||
return content;
|
||||
}
|
||||
|
||||
public void setContent(byte[] content) {
|
||||
this.content = content;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user