Skip to content

Instantly share code, notes, and snippets.

@snijsure
Created May 18, 2021 19:03
Show Gist options
  • Save snijsure/0cfa8dcbc3bf1efc86f7d20d287daad6 to your computer and use it in GitHub Desktop.
Save snijsure/0cfa8dcbc3bf1efc86f7d20d287daad6 to your computer and use it in GitHub Desktop.
Attachment
public class Attachment {
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getUpdateTime() {
return updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
private String fileName;
private String updateTime;
public Attachment() {
fileName = "default-file-name";
updateTime = "1970/1/1";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment