| | |
| | | public class ConstantBean { |
| | | |
| | | /**获取AES秘钥的配置(从什么包获取到)*/ |
| | | @Value("${mysql.hxe.aes.find.packs:null}") |
| | | @Value("${mysql.hxe.aes.find.packs:}") |
| | | private String packPath; |
| | | /**固定AES的秘钥*/ |
| | | @Value("${mysql.hxe.aes.fixd.key:null}") |
| | | @Value("${mysql.hxe.aes.fixd.key:}") |
| | | private String fixedAesKey; |
| | | /**数据库初始化加密字段版本号*/ |
| | | @Value("${mysql.hxe.aes.init.version:}") |
| | | private String initVersion; |
| | | |
| | | public String getPackPath() { |
| | | return packPath; |
| | |
| | | public void setFixedAesKey(String fixedAesKey) { |
| | | this.fixedAesKey = fixedAesKey; |
| | | } |
| | | |
| | | public String getInitVersion() { |
| | | return initVersion; |
| | | } |
| | | |
| | | public void setInitVersion(String initVersion) { |
| | | this.initVersion = initVersion; |
| | | } |
| | | } |