delei commented on issue #854:
URL: https://github.com/apache/fesod/issues/854#issuecomment-3997638083
> ```java
> @Data
> public class SchoolWholeStatDataVO {
>
> public interface SchoolGroup {}
> public interface StudentGroup {}
>
> @ExcelProperty(value = "School Name", groups = SchoolGroup.class)
> private String schoolName;
>
> @ExcelProperty(value = "Student Name", groups = StudentGroup.class)
> private String studentName;
> }
> ```
IMO, to be honest, defining empty interfaces, particularly within VO
classes, is not a common practice in actual development work.
--
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]