xiangpei
2025-05-09 641b4a3b1572f3a75ce0bd7d645e34252237cf9c
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
package cn.lili.common.properties;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
/**
 * 域名配置
 * @author Chopper
 */
@Data
@Configuration
@ConfigurationProperties(prefix = "lili.domain")
public class DomainProperties {
 
    /**
     * 买家PC端域名
     */
    private String pc;
 
    /**
     * 买家WAP端域名
     */
    private String wap;
 
    /**
     * Store域名
     */
    private String store;
 
    /**
     * 管理端域名
     */
    private String admin;
 
 
}