This commit is contained in:
Looly
2023-12-29 21:16:01 +08:00
parent 6facfcfc4d
commit fc8d25dfac
32 changed files with 81 additions and 69 deletions

View File

@@ -40,11 +40,6 @@
<artifactId>hutool-core</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>org.dromara.hutool</groupId>
<artifactId>hutool-log</artifactId>
<version>${project.parent.version}</version>
</dependency>
<!-- POI -->
<dependency>
@@ -58,7 +53,7 @@
<dependency>
<groupId>org.ofdrw</groupId>
<artifactId>ofdrw-full</artifactId>
<version>2.1.0</version>
<version>2.2.4</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>

View File

@@ -26,6 +26,7 @@ import java.util.Map;
*
* @author looly
* @since 5.4.4
* @param <T> 结果类型
*/
public class BeanSheetReader<T> implements SheetReader<List<T>> {

View File

@@ -26,6 +26,7 @@ import java.util.List;
*
* @author looly
* @since 5.4.4
* @param <T> 结果类型
*/
public abstract class BeanRowHandler<T> extends AbstractRowHandler<T> {