forked from fanruan/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
420 B
22 lines
420 B
package com.alibaba.easyexcel.test.demo.write; |
|
|
|
import java.util.Date; |
|
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
|
|
import lombok.Data; |
|
|
|
/** |
|
* 基础数据类 |
|
* |
|
* @author zhuangjiaju |
|
**/ |
|
@Data |
|
public class DemoData { |
|
@ExcelProperty("字符串标题") |
|
private String string; |
|
@ExcelProperty("日期标题") |
|
private Date date; |
|
@ExcelProperty("数字标题") |
|
private Double doubleData; |
|
}
|
|
|