|
|
|
1
|
+package com.sunyo.wlpt.base.model;
|
|
|
|
2
|
+
|
|
|
|
3
|
+public class FILE {
|
|
|
|
4
|
+ private Integer id;
|
|
|
|
5
|
+
|
|
|
|
6
|
+ private String absolutePath;
|
|
|
|
7
|
+
|
|
|
|
8
|
+ private String relativePath;
|
|
|
|
9
|
+
|
|
|
|
10
|
+ private String fileName;
|
|
|
|
11
|
+
|
|
|
|
12
|
+ private String type;
|
|
|
|
13
|
+
|
|
|
|
14
|
+ private String awba;
|
|
|
|
15
|
+
|
|
|
|
16
|
+ public Integer getId() {
|
|
|
|
17
|
+ return id;
|
|
|
|
18
|
+ }
|
|
|
|
19
|
+
|
|
|
|
20
|
+ public void setId(Integer id) {
|
|
|
|
21
|
+ this.id = id;
|
|
|
|
22
|
+ }
|
|
|
|
23
|
+
|
|
|
|
24
|
+ public String getAbsolutePath() {
|
|
|
|
25
|
+ return absolutePath;
|
|
|
|
26
|
+ }
|
|
|
|
27
|
+
|
|
|
|
28
|
+ public void setAbsolutePath(String absolutePath) {
|
|
|
|
29
|
+ this.absolutePath = absolutePath == null ? null : absolutePath.trim();
|
|
|
|
30
|
+ }
|
|
|
|
31
|
+
|
|
|
|
32
|
+ public String getRelativePath() {
|
|
|
|
33
|
+ return relativePath;
|
|
|
|
34
|
+ }
|
|
|
|
35
|
+
|
|
|
|
36
|
+ public void setRelativePath(String relativePath) {
|
|
|
|
37
|
+ this.relativePath = relativePath == null ? null : relativePath.trim();
|
|
|
|
38
|
+ }
|
|
|
|
39
|
+
|
|
|
|
40
|
+ public String getFileName() {
|
|
|
|
41
|
+ return fileName;
|
|
|
|
42
|
+ }
|
|
|
|
43
|
+
|
|
|
|
44
|
+ public void setFileName(String fileName) {
|
|
|
|
45
|
+ this.fileName = fileName == null ? null : fileName.trim();
|
|
|
|
46
|
+ }
|
|
|
|
47
|
+
|
|
|
|
48
|
+ public String getType() {
|
|
|
|
49
|
+ return type;
|
|
|
|
50
|
+ }
|
|
|
|
51
|
+
|
|
|
|
52
|
+ public void setType(String type) {
|
|
|
|
53
|
+ this.type = type == null ? null : type.trim();
|
|
|
|
54
|
+ }
|
|
|
|
55
|
+
|
|
|
|
56
|
+ public String getAwba() {
|
|
|
|
57
|
+ return awba;
|
|
|
|
58
|
+ }
|
|
|
|
59
|
+
|
|
|
|
60
|
+ public void setAwba(String awba) {
|
|
|
|
61
|
+ this.awba = awba == null ? null : awba.trim();
|
|
|
|
62
|
+ }
|
|
|
|
63
|
+} |