| | |
| | | package org.springblade.common.entity; |
| | | |
| | | 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 String galarmPeople; |
| | | |
| | | |
| | | @ColumnWidth(15) |
| | | @ExcelProperty("性别(0:男,1:女)") |
| | | // @ColumnWidth(15) |
| | | // @ExcelProperty("性别(0:男,1:女)") |
| | | @ExcelIgnore |
| | | private String sex; |
| | | |
| | | |
| | |
| | | private String district; |
| | | |
| | | |
| | | @ColumnWidth(10) |
| | | @ExcelProperty("省份") |
| | | // @ColumnWidth(10) |
| | | // @ExcelProperty("省份") |
| | | @ExcelIgnore |
| | | private String province; |
| | | |
| | | |
| | | @ColumnWidth(10) |
| | | @ExcelProperty("地市") |
| | | // @ColumnWidth(10) |
| | | // @ExcelProperty("地市") |
| | | @ExcelIgnore |
| | | private String city; |
| | | |
| | | |
| | |
| | | private String wd; |
| | | |
| | | |
| | | @ColumnWidth(10) |
| | | @ExcelProperty("是否生成警单(0:否 1:是)") |
| | | // @ColumnWidth(10) |
| | | // @ExcelProperty("是否生成警单(0:否 1:是)") |
| | | @ExcelIgnore |
| | | private String jtype; |
| | | |
| | | @ColumnWidth(20) |