qirong
2023-12-04 61136265a19abbdd1eaaa9ee46c6da8d05eb25be
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;
}