excel-kit/test/com/lxyer/excel/Person.java
lxyer a10f7e3680 1、update pkg path to com.lxyer
2、update bug for cell only 'NUMERIC' can't read
3、give up use poi's old api
2018-09-15 09:28:28 +08:00

46 lines
726 B
Java

package com.lxyer.excel;
import java.util.Date;
/**
* Created by liangxianyou at 2018/7/6 10:28.
*/
public class Person {
private String name;
private int age;
private Date bir;
public Person() {
}
public Person(String name, int age, Date bir) {
this.name = name;
this.age = age;
this.bir = bir;
}
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 Date getBir() {
return bir;
}
public void setBir(Date bir) {
this.bir = bir;
}
}