chenjiahe
2022-01-28 b1097dce55d857ae1ae63798911c1e7027c00de4
src/main/java/com/hx/mybatis/aes/springbean/ConstantBean.java
@@ -16,6 +16,9 @@
    /**固定AES的秘钥*/
    @Value("${mysql.hxe.aes.fixd.key:null}")
    private String fixedAesKey;
    /**数据库初始化加密字段版本号*/
    @Value("${mysql.hxe.aes.init.version:null}")
    private String initVersion;
    public String getPackPath() {
        return packPath;
@@ -32,4 +35,12 @@
    public void setFixedAesKey(String fixedAesKey) {
        this.fixedAesKey = fixedAesKey;
    }
    public String getInitVersion() {
        return initVersion;
    }
    public void setInitVersion(String initVersion) {
        this.initVersion = initVersion;
    }
}