| | |
| | | package org.sxkj.fw.area.excel; |
| | | |
| | | |
| | | import lombok.Data; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.alibaba.excel.annotation.write.style.ColumnWidth; |
| | | import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
| | | import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | |
| | |
| | | * 派出所信息表 Excel实体类 |
| | | * |
| | | * @author lw |
| | | * @since 2026-01-07 |
| | | * @since 2026-01-08 |
| | | */ |
| | | @Data |
| | | @ColumnWidth(25) |
| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 派出所名称 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("派出所名称") |
| | | private String stationName; |
| | | /** |
| | | * 派出所地址 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("派出所地址") |
| | | private String address; |
| | | /** |
| | | * 经度 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("经度") |
| | | private Double longitude; |
| | | /** |
| | | * 纬度 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("纬度") |
| | | private Double latitude; |
| | | /** |
| | | * 联系人 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("联系人") |
| | | private String contactPerson; |
| | | /** |
| | | * 联系方式 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("联系方式") |
| | | private String contactPhone; |
| | | /** |
| | | * 区域编码 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("区域编码") |
| | | private String areaCode; |
| | | /** |
| | | * 删除标志(0存在 1删除) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("删除标志(0存在 1删除)") |
| | | private Byte isDeleted; |
| | | |
| | | } |