|
@@ -2319,7 +2319,7 @@ public class ExcelTabServiceImpl extends BaseServiceImpl<ExcelTabMapper, ExcelTa
|
|
|
// 获取单元格的现有富文本字符串
|
|
|
RichTextString existingRichTextString = cell.getRichStringCellValue();
|
|
|
// 创建一个新的副文本字符串,原有值+电签ID
|
|
|
- RichTextString richTextString = workbook.getCreationHelper().createRichTextString(existingValue + dqid);
|
|
|
+ RichTextString richTextString = workbook.getCreationHelper().createRichTextString(existingValue + " *" + dqid);
|
|
|
// 复制原有部分的字体格式
|
|
|
if (existingRichTextString instanceof XSSFRichTextString) {
|
|
|
XSSFRichTextString xssfRichTextString = (XSSFRichTextString) existingRichTextString;
|