|
@@ -3,6 +3,7 @@ package ${packageName}.domain.vo;
|
|
|
#foreach ($import in $importList)
|
|
|
import ${import};
|
|
|
#end
|
|
|
+import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
import org.eco.common.excel.annotation.ExcelDictFormat;
|
|
|
import org.eco.common.excel.convert.ExcelDictConvert;
|
|
@@ -20,6 +21,7 @@ import lombok.NoArgsConstructor;
|
|
|
|
|
|
@Data
|
|
|
@NoArgsConstructor
|
|
|
+@ExcelIgnoreUnannotated
|
|
|
public class ${ClassName}ImportVo implements Serializable {
|
|
|
|
|
|
@Serial
|
|
@@ -66,4 +68,11 @@ public class ${ClassName}ImportVo implements Serializable {
|
|
|
#end
|
|
|
#end
|
|
|
|
|
|
+#if($table.tree)
|
|
|
+ /**
|
|
|
+ * 显示顺序
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "显示顺序")
|
|
|
+ private Integer orderNum;
|
|
|
+#end
|
|
|
}
|