| | |
| | | package org.springblade.modules.discuss.excel; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnore; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
| | |
| | | |
| | | private static final long serialVersionUID = 2L; |
| | | |
| | | @ExcelProperty( "姓名") |
| | | @ExcelProperty( "业主姓名") |
| | | private String name; |
| | | |
| | | @ExcelProperty( "手机号") |
| | | @ExcelProperty( "业主电话") |
| | | private String phone; |
| | | |
| | | @ExcelProperty( "地块") |
| | | private String districtName; |
| | | |
| | | @ExcelProperty( "栋号") |
| | | private String building; |
| | | |
| | | @ExcelProperty( "房号") |
| | | private String room; |
| | | |
| | | @ExcelProperty( "地址") |
| | | private String addressName; |
| | | |
| | | @ExcelProperty( "小区") |
| | | private String aoiName; |
| | | |
| | | @ExcelProperty( "面积") |
| | | private String area; |
| | | private BigDecimal area; |
| | | |
| | | @ExcelProperty( "地块") |
| | | private String remark; |
| | | |
| | | @ExcelProperty( "投票项") |
| | | @ExcelProperty( "候选人") |
| | | private String optionContent; |
| | | |
| | | @ExcelProperty( "houseCode") |
| | | private String houseCode; |
| | | |
| | | |
| | | @ExcelProperty(value = "创建时间") |
| | | @ExcelProperty(value = "投票时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date createTime; |
| | | |