sapienza88 commented on code in PR #942:
URL: https://github.com/apache/fesod/pull/942#discussion_r3589982264


##########
fesod-sheet/src/main/java/org/apache/fesod/sheet/read/metadata/ReadWorkbook.java:
##########
@@ -144,6 +144,11 @@ public class ReadWorkbook extends ReadBasicParameter {
      */
     private Integer numRows;
 
+    /**
+     * The number of columns to read, the default is all, start with 0.
+     */
+    private Integer numColumns;

Review Comment:
   check done



##########
fesod-sheet/src/main/java/org/apache/fesod/sheet/read/metadata/ReadSheet.java:
##########
@@ -71,6 +77,13 @@ public ReadSheet(Integer sheetNo, String sheetName, Integer 
numRows) {
         this.numRows = numRows;
     }
 
+    public ReadSheet(Integer sheetNo, String sheetName, Integer numRows, 
Integer numCols) {
+        this.sheetNo = sheetNo;
+        this.sheetName = sheetName;
+        this.numRows = numRows;
+        this.columnIndexes = columnIndexes;
+    }

Review Comment:
   ok



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