| | |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | |
| | | @ExcelProperty("处置部门") |
| | | private String disposeDept; |
| | | /** |
| | | * 分发人员 |
| | | * 经度 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("分发人员") |
| | | private String distributeUser; |
| | | @ExcelProperty("经度") |
| | | private Double longitude; |
| | | /** |
| | | * 分发部门 |
| | | * 纬度 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("分发部门") |
| | | private String distributeDept; |
| | | @ExcelProperty("纬度") |
| | | private Double latitude; |
| | | /** |
| | | * 分发时间 |
| | | * 状态:0未分发、1已分发、2已驳回 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("分发时间") |
| | | private Date distributeTime; |
| | | /** |
| | | * 工单位置(经纬度) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("工单位置(经纬度)") |
| | | private byte[] workOrderLocation; |
| | | /** |
| | | * 状态:0未知、1已分发、2已驳回 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("状态:0未知、1已分发、2已驳回") |
| | | private Byte eventStatus; |
| | | @ExcelProperty("状态:0未分发、1已分发、2已驳回") |
| | | private Integer eventStatus; |
| | | /** |
| | | * 区域编码 |
| | | */ |