zhanghua
2025-06-11 2ca169c85f61256fb5185c078dba1bfef2be5066
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
package cn.lili.modules.system.entity.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 基础设置
 *
 * @author Chopper
 * @since 2020/11/17 7:58 下午
 */
@Data
public class BaseSetting implements Serializable {
 
    private static final long serialVersionUID = -3138023944444671722L;
 
    @ApiModelProperty(value = "站点名称")
    private String siteName;
 
    @ApiModelProperty(value = "icp")
    private String icp;
 
    @ApiModelProperty(value = "后端logo")
    private String domainLogo;
 
    @ApiModelProperty(value = "后端icon")
    private String domainIcon;
 
    @ApiModelProperty(value = "买家端logo")
    private String buyerSideLogo;
 
    @ApiModelProperty(value = "买家端icon")
    private String buyerSideIcon;
 
    @ApiModelProperty(value = "商家端logo")
    private String storeSideLogo;
 
    @ApiModelProperty(value = "商家端icon")
    private String storeSideIcon;
 
    @ApiModelProperty(value = "站点地址")
    private String staticPageAddress;
 
    @ApiModelProperty(value = "wap站点地址")
    private String staticPageWapAddress;
}