From c19176c8e83546fdf044628ce6c99f30c9f7faac Mon Sep 17 00:00:00 2001 From: Looly Date: Thu, 23 Apr 2020 11:16:43 +0800 Subject: [PATCH] fix test --- .../cn/hutool/poi/excel/test/TestBean.java | 43 ++----------------- 1 file changed, 3 insertions(+), 40 deletions(-) diff --git a/hutool-poi/src/test/java/cn/hutool/poi/excel/test/TestBean.java b/hutool-poi/src/test/java/cn/hutool/poi/excel/test/TestBean.java index af68870bd..62c8405ba 100644 --- a/hutool-poi/src/test/java/cn/hutool/poi/excel/test/TestBean.java +++ b/hutool-poi/src/test/java/cn/hutool/poi/excel/test/TestBean.java @@ -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; - } }