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
440 B
20 lines
440 B
package com.alibaba.easyexcel.test.core.excludeorinclude; |
|
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
|
|
import lombok.Data; |
|
|
|
/** |
|
* @author Jiaju Zhuang |
|
*/ |
|
@Data |
|
public class ExcludeOrIncludeData { |
|
@ExcelProperty(order = 1) |
|
private String column1; |
|
@ExcelProperty(order = 2) |
|
private String column2; |
|
@ExcelProperty(order = 3) |
|
private String column3; |
|
@ExcelProperty(order = 4) |
|
private String column4; |
|
}
|
|
|