正在显示
3 个修改的文件
包含
79 行增加
和
0 行删除
@@ -30,6 +30,12 @@ | @@ -30,6 +30,12 @@ | ||
30 | <artifactId>jackson-annotations</artifactId> | 30 | <artifactId>jackson-annotations</artifactId> |
31 | <version>2.10.0</version> | 31 | <version>2.10.0</version> |
32 | </dependency> | 32 | </dependency> |
33 | + <dependency> | ||
34 | + <groupId>com.sy</groupId> | ||
35 | + <artifactId>nmms-exprot</artifactId> | ||
36 | + <version>0.0.1-SNAPSHOT</version> | ||
37 | + <scope>compile</scope> | ||
38 | + </dependency> | ||
33 | </dependencies> | 39 | </dependencies> |
34 | <build> | 40 | <build> |
35 | <plugins> | 41 | <plugins> |
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 | +} |
@@ -62,6 +62,8 @@ public class NMMS_CUSTOM_MT2201 { | @@ -62,6 +62,8 @@ public class NMMS_CUSTOM_MT2201 { | ||
62 | 62 | ||
63 | private List<NMMS_CUSTOM_MT2201> children; | 63 | private List<NMMS_CUSTOM_MT2201> children; |
64 | 64 | ||
65 | + private List<FILE> fileList; | ||
66 | + | ||
65 | public String getUuid() { | 67 | public String getUuid() { |
66 | return uuid; | 68 | return uuid; |
67 | } | 69 | } |
@@ -269,4 +271,12 @@ public class NMMS_CUSTOM_MT2201 { | @@ -269,4 +271,12 @@ public class NMMS_CUSTOM_MT2201 { | ||
269 | public void setUser(NMMS_CUSTOM_USER user) { | 271 | public void setUser(NMMS_CUSTOM_USER user) { |
270 | this.user = user; | 272 | this.user = user; |
271 | } | 273 | } |
274 | + | ||
275 | + public List<FILE> getFileList() { | ||
276 | + return fileList; | ||
277 | + } | ||
278 | + | ||
279 | + public void setFileList(List<FILE> fileList) { | ||
280 | + this.fileList = fileList; | ||
281 | + } | ||
272 | } | 282 | } |
-
请 注册 或 登录 后发表评论