Commit 01e575da by zhangxingmin

push

parent 46455d31
......@@ -302,7 +302,6 @@ public class ApiEmailFileServiceImpl implements ApiEmailFileService {
for (String header : headers) {
String value = getStringValue(row, header);
if (StringUtils.isNotBlank(value)) {
Map<String, String> variableMap = new HashMap<>();
// 中文变量字段名
variableMap.put("cn_key", header);
......@@ -312,7 +311,6 @@ public class ApiEmailFileServiceImpl implements ApiEmailFileService {
variableMap.put("content", value);
variableList.add(variableMap);
}
}
return CollectionUtils.isEmpty(variableList) ? null : JSON.toJSONString(variableList);
}
......
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