This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
server
/
easypoi
Watch
6
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
IExcelDataModel 使用Integer类型,以防止inbox, unbox的null错误。
4.1.3.A
Hugh Gao
5 years ago
parent
a353e568f7
commit
afe6b5e3ec
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
easypoi-base/src/main/java/cn/afterturn/easypoi/handler/inter/IExcelDataModel.java
+ 2
- 2
easypoi-base/src/main/java/cn/afterturn/easypoi/handler/inter/IExcelDataModel.java
View File
@@ -10,12 +10,12 @@ public interface IExcelDataModel {
* 获取行号
* @return
*/
public
int
getRowNum();
public
Integer
getRowNum();
/**
* 设置行号
* @param rowNum
*/
public void setRowNum(
int
rowNum);
public void setRowNum(
Integer
rowNum);
}
Write
Preview
Loading…
Cancel
Save