xiangpei
2024-09-11 5116a6d021a3e8c052394e3f9fbc408671802b7f
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
package org.dromara.system.domain.properties;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
 
@Data
@Component
@ConfigurationProperties(prefix = "police")
public class Boundary {
 
    /**
     * 测试
     */
    private String localhost;
 
    /**
     * 政务云
     */
    private String chief;
 
    /**
     * 视频网
     */
    private String video;
}