|
|
package com.sunyo.wlpt.base.model;
|
|
|
|
|
|
public class FILE {
|
|
|
private Integer id;
|
|
|
|
|
|
private String absolutePath;
|
|
|
|
|
|
private String relativePath;
|
|
|
|
|
|
private String fileName;
|
|
|
|
|
|
private String type;
|
|
|
|
|
|
private String awba;
|
|
|
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
|
}
|
|
|
|
|
|
public void setId(Integer id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
public String getAbsolutePath() {
|
|
|
return absolutePath;
|
|
|
}
|
|
|
|
|
|
public void setAbsolutePath(String absolutePath) {
|
|
|
this.absolutePath = absolutePath == null ? null : absolutePath.trim();
|
|
|
}
|
|
|
|
|
|
public String getRelativePath() {
|
|
|
return relativePath;
|
|
|
}
|
|
|
|
|
|
public void setRelativePath(String relativePath) {
|
|
|
this.relativePath = relativePath == null ? null : relativePath.trim();
|
|
|
}
|
|
|
|
|
|
public String getFileName() {
|
|
|
return fileName;
|
|
|
}
|
|
|
|
|
|
public void setFileName(String fileName) {
|
|
|
this.fileName = fileName == null ? null : fileName.trim();
|
|
|
}
|
|
|
|
|
|
public String getType() {
|
|
|
return type;
|
|
|
}
|
|
|
|
|
|
public void setType(String type) {
|
|
|
this.type = type == null ? null : type.trim();
|
|
|
}
|
|
|
|
|
|
public String getAwba() {
|
|
|
return awba;
|
|
|
}
|
|
|
|
|
|
public void setAwba(String awba) {
|
|
|
this.awba = awba == null ? null : awba.trim();
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|