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