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
49
50
51
52
53
54
| package com.zy.sc.manager.controller.result;
|
| import lombok.Data;
|
| /**
| * Created by vincent on 2021/3/3
| */
| @Data
| public class LetterFileVo {
|
| private Long id;
|
| private String name;
|
| private Long updateTime;
|
| private String type;
|
| private String url;
|
| private Boolean isDir;
|
| private String smUrl;
|
| private Boolean hasSm;
|
| public LetterFileVo() {
| }
|
| public void setHasSm(Boolean hasSm) {
| this.hasSm = hasSm;
| }
|
| public Boolean getHasSm() {
| return hasSm;
| }
|
| public void setSmUrl(String smUrl) {
| this.smUrl = smUrl;
| }
|
| public String getSmUrl() {
| return smUrl;
| }
|
| public LetterFileVo(Long id, String name, Long updateTime, String type, String url, Boolean isDir) {
| this.id = id;
| this.name = name;
| this.updateTime = updateTime;
| this.type = type;
| this.url = url;
| this.isDir = isDir;
| }
| }
|
|