作者 shenhailong

多式联运 附件上传

... ... @@ -30,6 +30,12 @@
<artifactId>jackson-annotations</artifactId>
<version>2.10.0</version>
</dependency>
<dependency>
<groupId>com.sy</groupId>
<artifactId>nmms-exprot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
... ...
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
... ...
... ... @@ -62,6 +62,8 @@ public class NMMS_CUSTOM_MT2201 {
private List<NMMS_CUSTOM_MT2201> children;
private List<FILE> fileList;
public String getUuid() {
return uuid;
}
... ... @@ -269,4 +271,12 @@ public class NMMS_CUSTOM_MT2201 {
public void setUser(NMMS_CUSTOM_USER user) {
this.user = user;
}
public List<FILE> getFileList() {
return fileList;
}
public void setFileList(List<FILE> fileList) {
this.fileList = fileList;
}
}
... ...