xiaoyong931011
2023-06-02 1c60c0f2ab36bce52690451442399d5b113eb0e4
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;
 
}