xiaoyong931011
2023-08-15 a9e31ba6fd2eb1f4a9fffa5c0d195ebbc8bcf797
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cc.mrbird.febs.common.contants;
 
import lombok.Data;
import org.springframework.stereotype.Component;
 
//常量封装类需要使用@Component注入到SpringBoot容器池中
//使用@Data代替setter和getter的实现
@Data
@Component
public class SystemConstants {
 
    public String feeAddressKey;
 
}