| | |
| | | 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 io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springblade.common.excel.ExcelDictConverter; |
| | | import org.springblade.common.excel.ExcelDictItemLabel; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | |
| | | |
| | | private static final long serialVersionUID = 2L; |
| | | |
| | | /** 门牌地址编码 */ |
| | | @ExcelProperty( "门牌地址编码") |
| | | private String houseCode; |
| | | |
| | | /** 街道名称 */ |
| | | @ExcelProperty( "街道名称") |
| | | private String streetName; |
| | | @ExcelProperty( "地区") |
| | | private String townStreetName; |
| | | |
| | | /** 社区名称 */ |
| | | @ExcelProperty( "社区名称") |
| | | private String communityName; |
| | | @ExcelProperty( "所属社区") |
| | | private String neiName; |
| | | |
| | | /** 所属网格 */ |
| | | @ExcelProperty( "所属网格") |
| | | private String gridName; |
| | | @ExcelProperty(value = "场所名称") |
| | | private String placeName; |
| | | |
| | | /** 房屋名称 */ |
| | | @ExcelProperty( "详细地址") |
| | | private String houseName; |
| | | @ExcelProperty(value = "地址") |
| | | private String addressName; |
| | | |
| | | /** 姓名 */ |
| | | @ColumnWidth(15) |
| | | @ExcelProperty( "姓名") |
| | | private String name; |
| | | @ExcelProperty( value = "场所类别") |
| | | private String nineType; |
| | | |
| | | /** 手机号 */ |
| | | @ColumnWidth(15) |
| | | @ExcelProperty( "手机号") |
| | | private String phoneNumber; |
| | | @ExcelProperty(value = "场所负责人") |
| | | private String principal; |
| | | |
| | | @ExcelProperty(value = "身份证信息") |
| | | private String principalIdCard; |
| | | |
| | | @ExcelProperty(value = "联系方式") |
| | | private String principalPhone; |
| | | |
| | | @ExcelProperty(value = "辖区派出所") |
| | | private String deptName; |
| | | |
| | | |
| | | @ExcelProperty(value = "责任民警") |
| | | private String policeName; |
| | | |
| | | @ExcelProperty(value = "责任民警联系方式") |
| | | private String policePhone; |
| | | |
| | | |
| | | |
| | | } |
| | | |