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.
20 lines
445 B
20 lines
445 B
package com.alibaba.easyexcel.test.temp.issue1662; |
|
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
import lombok.AllArgsConstructor; |
|
import lombok.Data; |
|
import lombok.NoArgsConstructor; |
|
|
|
import java.util.Date; |
|
|
|
@Data |
|
@AllArgsConstructor |
|
@NoArgsConstructor |
|
public class Data1662 { |
|
@ExcelProperty(index = 0) |
|
private String str; |
|
@ExcelProperty(index = 1) |
|
private Date date; |
|
@ExcelProperty(index = 2) |
|
private double r; |
|
}
|
|
|