package ${package}.${moduleName}.vo; import lombok.Data; import com.alibaba.excel.annotation.ExcelIgnore; import com.alibaba.excel.annotation.ExcelProperty; import com.fhs.core.trans.vo.TransPojo; <#list importList as i> import ${i!}; /** * ${tableComment} * * @author ${author} ${email!} * MAKU */ @Data public class ${ClassName}ExcelVO implements TransPojo { @ExcelIgnore private ${primaryType} ${primaryName}; <#list gridList as field> <#if field.fieldComment!?length gt 0> @ExcelProperty("${field.fieldComment}") <#if field.attrType == 'LocalDateTime'> @ExcelProperty(value = "${field.fieldComment}", converter = LocalDateTimeConverter.class) <#if field.formDict??> private String ${field.attrName}Label; @ExcelIgnore @Trans(type = TransType.DICTIONARY, key = "${field.formDict}", ref = "${field.attrName}Label") private ${field.attrType} ${field.attrName}; <#else> private ${field.attrType} ${field.attrName}; }