goupan
2024-04-03 5506e9a45e717ffcb67ec313b5a4e8206d9b3a39
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
package cn.stylefeng.roses.kernel.system.modular.theme.pojo;
 
import cn.stylefeng.roses.kernel.rule.annotation.ChineseDescription;
import lombok.Data;
 
import java.util.Map;
 
/**
 * Guns默认主题控制的字段
 *
 * @author fengshuonan
 * @date 2022/1/10 18:30
 */
@Data
public class DefaultTheme {
 
    /**
     * 平台名称
     */
    @ChineseDescription("平台名称")
    private String gunsMgrName;
 
    /**
     * 登录页背景图片
     */
    @ChineseDescription("登录页背景图片")
    private String gunsMgrLoginBackgroundImg;
 
    /**
     * 平台LOGO
     */
    @ChineseDescription("平台LOGO")
    private String gunsMgrLogo;
 
    /**
     * 浏览器Icon
     */
    @ChineseDescription("浏览器Icon")
    private String gunsMgrFavicon;
 
    /**
     * 页脚文字
     */
    @ChineseDescription("页脚文字")
    private String gunsMgrFooterText;
 
    /**
     * 备案号
     */
    @ChineseDescription("备案号")
    private String gunsMgrBeiNo;
 
    /**
     * 备案号跳转链接
     */
    @ChineseDescription("备案号跳转链接")
    private String gunsMgrBeiUrl;
 
    /**
     * 其他的主题配置
     */
    @ChineseDescription("其他的主题配置")
    private Map<String, String> otherConfigs;
 
}