BennettChina commented on issue #164:
URL: https://github.com/apache/fesod/issues/164#issuecomment-3359261538
```java
@Data
public class Demo {
private String name;
private String value;
@ExcelInclude
// @ExcelInclude("item")
private Item item;
public static class Item {
private String properties1;
private String properties2;
}
}
```
[demo1.xlsx](https://github.com/user-attachments/files/22653752/demo1.xlsx)
[demo2.xlsx](https://github.com/user-attachments/files/22653751/demo2.xlsx)
最开始我期望的是 `demo1.xlsx` 的结果,现在想是或许可以利用它实现 `demo2.xlsx` 的合并标题效果,而 `demo1.xlsx`
可以是默认实现。不过 `demo2` 的效果实现起来可能比较麻烦,可以先尝试实现 `demo1` 的效果。
translation:
> Initially, I expected the result of `demo1.xlsx`, but now I'm thinking
that perhaps it can be used to achieve the merged header effect of
`demo2.xlsx`, with `demo1.xlsx` as the default implementation. However,
implementing the effect of `demo2` might be quite troublesome, so you can first
try to implement the effect of `demo1`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]