|
@@ -32,26 +32,30 @@ public class DataMigrationExcel {
|
|
|
private String code;
|
|
|
|
|
|
@ColumnWidth(20)
|
|
|
- @ExcelProperty(value = "code1", index=3)
|
|
|
- private String code1;
|
|
|
+ @ExcelProperty(value = "objFrom", index=3)
|
|
|
+ private String objFrom;
|
|
|
|
|
|
@ColumnWidth(20)
|
|
|
- @ExcelProperty(value = "类型(增加/删除/修改)", index=4)
|
|
|
+ @ExcelProperty(value = "objTo", index=4)
|
|
|
+ private String objTo;
|
|
|
+
|
|
|
+ @ColumnWidth(20)
|
|
|
+ @ExcelProperty(value = "类型(增加/删除/修改)", index=5)
|
|
|
private String type;
|
|
|
|
|
|
@ColumnWidth(20)
|
|
|
- @ExcelProperty(value = "源(云端/现场)", index=5)
|
|
|
+ @ExcelProperty(value = "源(云端/现场)", index=6)
|
|
|
private String directional = "adm-to-project";
|
|
|
|
|
|
@ColumnWidth(30)
|
|
|
- @ExcelProperty(value = "from(adm)", index=6)
|
|
|
+ @ExcelProperty(value = "from(adm)", index=7)
|
|
|
private String source;
|
|
|
|
|
|
@ColumnWidth(30)
|
|
|
- @ExcelProperty(value = "to(project)", index=7)
|
|
|
+ @ExcelProperty(value = "to(project)", index=8)
|
|
|
private String targetProject;
|
|
|
|
|
|
@ColumnWidth(50)
|
|
|
- @ExcelProperty(value = "备注", index=8)
|
|
|
+ @ExcelProperty(value = "备注", index=9)
|
|
|
private String mark;
|
|
|
}
|