mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
fix test
This commit is contained in:
parent
3f97a1e495
commit
c19176c8e8
@ -1,51 +1,14 @@
|
||||
package cn.hutool.poi.excel.test;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class TestBean {
|
||||
private String name;
|
||||
private int age;
|
||||
private double score;
|
||||
private boolean isPass;
|
||||
private Date examDate;
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public int getAge() {
|
||||
return age;
|
||||
}
|
||||
|
||||
public void setAge(int age) {
|
||||
this.age = age;
|
||||
}
|
||||
|
||||
public double getScore() {
|
||||
return score;
|
||||
}
|
||||
|
||||
public void setScore(double score) {
|
||||
this.score = score;
|
||||
}
|
||||
|
||||
public boolean isPass() {
|
||||
return isPass;
|
||||
}
|
||||
|
||||
public void setPass(boolean isPass) {
|
||||
this.isPass = isPass;
|
||||
}
|
||||
|
||||
public Date getExamDate() {
|
||||
return examDate;
|
||||
}
|
||||
|
||||
public void setExamDate(Date examDate) {
|
||||
this.examDate = examDate;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user