zhangqiyang
8 months ago
2 changed files with 16 additions and 6 deletions
@ -1,9 +1,22 @@
|
||||
package com.system.log.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class ZipInfo { |
||||
private String fileName; |
||||
private String filePath; |
||||
|
||||
public String getFileName() { |
||||
return fileName; |
||||
} |
||||
|
||||
public void setFileName(String fileName) { |
||||
this.fileName = fileName; |
||||
} |
||||
|
||||
public String getFilePath() { |
||||
return filePath; |
||||
} |
||||
|
||||
public void setFilePath(String filePath) { |
||||
this.filePath = filePath; |
||||
} |
||||
} |
||||
|
Loading…
Reference in new issue