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
513 B
22 lines
513 B
package com.alibaba.easyexcel.test.core.sort; |
|
|
|
import com.alibaba.excel.annotation.ExcelProperty; |
|
|
|
import lombok.Data; |
|
|
|
/** |
|
* @author Jiaju Zhuang |
|
*/ |
|
@Data |
|
public class SortData { |
|
private String column5; |
|
private String column6; |
|
@ExcelProperty(order = 100) |
|
private String column4; |
|
@ExcelProperty(order = 99) |
|
private String column3; |
|
@ExcelProperty(value = "column2", index = 1) |
|
private String column2; |
|
@ExcelProperty(value = "column1", index = 0) |
|
private String column1; |
|
}
|
|
|