whycxzp
2021-03-17 1fc5c5b72db71c8c36c7d64950e2795cc8a5b3ac
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package com.whyc.dto;
 
import com.whyc.pojo.ApplicationConfig;
import org.apache.ibatis.type.Alias;
 
import java.beans.Transient;
import java.util.List;
 
/**
 * 应用内模块配置DTO
 */
@Alias("ApplicationConfigDTO")
public class ApplicationConfigDTO {
 
    private Integer appId;
    private String appName;
    private String headPic;
    private String bgPic;
    /**应用缩略图的base64*/
    private String fileData;
    private List<ApplicationConfig> children;
 
    public Integer getAppId() {
        return appId;
    }
 
    public void setAppId(Integer appId) {
        this.appId = appId;
    }
 
    public List<ApplicationConfig> getChildren() {
        return children;
    }
 
    public void setChildren(List<ApplicationConfig> children) {
        this.children = children;
    }
 
    public String getHeadPic() {
        return headPic;
    }
 
    public void setHeadPic(String headPic) {
        this.headPic = headPic;
    }
 
    public String getBgPic() {
        return bgPic;
    }
 
    public void setBgPic(String bgPic) {
        this.bgPic = bgPic;
    }
 
    public String getAppName() {
        return appName;
    }
 
    public void setAppName(String appName) {
        this.appName = appName;
    }
 
    @Transient
    public String getFileData() {
        return fileData;
    }
 
    public void setFileData(String fileData) {
        this.fileData = fileData;
    }
 
}