如题,nutz-integration-json4excel如何导出关联对象的某些字段?
还有J4EConf,现在有没有文档?
有个需求就是对象中时间都是用的int类型时间戳,如何在导出的时候转换成日期类型?
6 回复
@kartking 导出关联对象的字段搞定了吗,最近我也在做这个
public class CellFunLong2DateStr implements J4ECellToExcel {
@Override
public Object toExecl(Object fieldVal) {
Long createAt = Castors.me().castTo(fieldVal, Long.class);
Date dateAt = new Date(createAt*1000);
return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(dateAt);
}
}
@Column
@Comment("报名时间")
@J4EDefine(type = J4EColumnType.STRING)
@J4ECell(toExcel = CellFunLong2DateStr.class)
@J4EName("报名时间")
@ColDefine(type = ColType.INT)
private Integer createAt;
@wendal 目前j4e只能做单表的导入导出吗?
添加回复
请先登陆