1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by FernFlower decompiler)
//
package com.tiptimes.model;
public class File {
private String fileID;
private String fileNum;
private String fileType;
private String fileName;
public File() {
}
public String getFileID() {
return this.fileID;
}
public void setFileID(String fileID) {
this.fileID = fileID;
}
public String getFileNum() {
return this.fileNum;
}
public void setFileNum(String fileNum) {
this.fileNum = fileNum;
}
public String getFileType() {
return this.fileType;
}
public void setFileType(String fileType) {
this.fileType = fileType;
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
}