yangys
2025-09-25 31ecdb8c700529a59dd762f0c47f0ed9c66d5092
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.springblade.mdm.machinefile.events;
 
import org.springblade.mdm.machinefile.entity.MachineAcceptedFile;
import org.springframework.context.ApplicationEvent;
 
import java.util.ArrayList;
import java.util.List;
 
 
public class ExportedToInnerEvent extends ApplicationEvent {
    /**
     * 导出的接受文件id
     */
    private List<MachineAcceptedFile> acceptedFiles;
    public ExportedToInnerEvent(Object source,List<MachineAcceptedFile> acceptedFileList) {
        super(source);
        this.acceptedFiles = acceptedFileList;
    }
 
    public List<MachineAcceptedFile> getAcceptedFiles() {
        return acceptedFiles;
    }
}