bengbengbalabalabeng commented on code in PR #979:
URL: https://github.com/apache/fesod/pull/979#discussion_r3734644143


##########
website/docs/sheet/fill/fill.md:
##########
@@ -44,6 +69,22 @@ public class FillData {
 }
 ```
 
+### Data List
+
+```java
+private List<FillData> data() {
+    List<FillData> list = ListUtils.newArrayList();
+    for (int i = 0; i < 10; i++) {
+        FillData fillData = new FillData();
+        fillData.setName("John Doe" + i);

Review Comment:
   The `name` value currently includes a numeric suffix (e.g., John Doe0, John 
Doe1), but this suffix does not appear in the Result sheet panel. The same 
issue exists in the Chinese version.



-- 
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]

Reply via email to