1078-添加ftpserver

This commit is contained in:
648540858
2024-05-30 23:41:22 +08:00
parent 89101b2731
commit e8d832d0a5
5 changed files with 117 additions and 60 deletions

View File

@@ -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;
}
}