Revert "回给前端的邮箱电话不解密"

This reverts commit a563b89b91.
This commit is contained in:
sxu 2025-07-04 13:27:37 +08:00
parent a563b89b91
commit 3f614f44ba
1 changed files with 7 additions and 7 deletions

View File

@ -53,13 +53,13 @@ public class DataEnDecryptInterceptor implements Interceptor {
MappedStatement mappedStatement = getMappedStatement(resultSetHandler);
Object result = invocation.proceed();
// String sqlId = mappedStatement.getId();
// if (sqlId.contains(USER_MAPPER_ID))
// {
// decryUserObject(result);
// } else if (sqlId.contains(DEPT_MAPPER_ID)){
// decryDeptObject(result);
// }
String sqlId = mappedStatement.getId();
if (sqlId.contains(USER_MAPPER_ID))
{
decryUserObject(result);
} else if (sqlId.contains(DEPT_MAPPER_ID)){
decryDeptObject(result);
}
return result;
}