xiaoyong931011
2023-08-22 09d498d50765b58b048bdf0a81e4ff1765439bef
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;
 
}