update 优化 重构 !pr274 简化结构 解决代码逻辑问题 规范注释

This commit is contained in:
疯狂的狮子li
2023-01-18 14:11:48 +08:00
parent e20dacbfd9
commit d2675744f4
24 changed files with 339 additions and 409 deletions

View File

@ -19,7 +19,7 @@ public @interface EncryptField {
/**
* 加密算法
*/
AlgorithmType algorithm() default AlgorithmType.BASE64;
AlgorithmType algorithm() default AlgorithmType.DEFAULT;
/**
* 秘钥。AES、SM4需要
@ -39,6 +39,6 @@ public @interface EncryptField {
/**
* 编码方式。对加密算法为BASE64的不起作用
*/
EncodeType encode() default EncodeType.BASE64;
EncodeType encode() default EncodeType.DEFAULT;
}