1078-添加ftpserver
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.genersoft.iot.vmp.jt1078.event;
|
||||
|
||||
import org.springframework.context.ApplicationEvent;
|
||||
|
||||
public class FtpUploadEvent extends ApplicationEvent {
|
||||
|
||||
public FtpUploadEvent(Object source) {
|
||||
super(source);
|
||||
}
|
||||
|
||||
private String fileName;
|
||||
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public void setFileName(String fileName) {
|
||||
this.fileName = fileName;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user