package ${package}.modules.${moduleName}.excel;
import cn.afterturn.easypoi.excel.annotation.Excel;
import lombok.Data;
#if(${hasBigDecimal})
import java.math.BigDecimal;
#end
import java.util.Date;
/**
* <h1>${comments} Excel 导出</h1>
*
* @author ${author} ${email}
* @since ${version} ${date}
*/
@Data
public class ${className}Excel {
#foreach ($column in $columns)
@Excel(name = "$!column.comments")
private $column.attrType $column.attrname;
#end
}
-
PC-202210251227\Administrator authored50de8c1b