Commit 4bcb8658 by zhangkb

修改标签导出标签路径逗号改成左斜杠

parent 33779546
......@@ -202,6 +202,10 @@ public class TagFileService {
.and("dimensionType").is(Constants.TAG_DIMENSION_TRUE).and("tagType").is(isSys)),
Tag.class);
}
//author:zhangkb time:2020-3-5 desc:将标签路径的","改成"\"
for(Tag tag : toExportTags) {
tag.setPath(tag.getPath().replace(",", "\\"));
}
// 导出操作
ExcelUtils.exportExcel(toExportTags, null , "sheet1", Tag.class, "标签.xlsx", response);
return toExportTags.size();
......
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