| | |
| | | package org.sxkj.fw.device.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; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | | * 设备报废记录表 Excel实体类 |
| | | * |
| | | * @author lw |
| | | * @since 2026-01-07 |
| | | * @since 2026-01-08 |
| | | */ |
| | | @Data |
| | | @ColumnWidth(25) |
| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 设备ID(关联ja_fw_device.id) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("设备ID(关联ja_fw_device.id)") |
| | | private Long deviceId; |
| | | /** |
| | | * 报废时间 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("报废时间") |
| | | private Date scrapTime; |
| | | /** |
| | | * 报废原因 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("报废原因") |
| | | private String scrapReason; |
| | | /** |
| | | * 处置方式 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("处置方式") |
| | | private String disposeWay; |
| | | /** |
| | | * 区域编码 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("区域编码") |
| | | private String areaCode; |
| | | /** |
| | | * 删除标志(0存在 1删除) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("删除标志(0存在 1删除)") |
| | | private Byte isDeleted; |
| | | |
| | | } |