Commit 49825975 by guojuxing

导出修改:添加加密功能

parent c5a43cf8
......@@ -242,7 +242,7 @@ public class DownloadUtils {
// 将属性值转换成字符串
String convertValue = loader.convertProperty(bean, name, property);
//加密处理
if (needEncryptField == null && needEncryptField.contains(name)) {
if (needEncryptField != null && needEncryptField.contains(name)) {
convertValue = "****";
}
// 组装成row
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment