| | |
| | | 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.time.LocalDate; |
| | | |
| | | |
| | | /** |
| | | * 设备维护计划表 Excel实体类 |
| | | * |
| | | * @author lw |
| | | * @since 2026-01-07 |
| | | * @since 2026-01-08 |
| | | */ |
| | | @Data |
| | | @ColumnWidth(25) |
| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 设备ID |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("设备ID") |
| | | private Long deviceId; |
| | | /** |
| | | * 计划周期(每月1日/每季1日等) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("计划周期(每月1日/每季1日等)") |
| | | private String planCycle; |
| | | /** |
| | | * 计划日期(YYYY-MM-DD) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("计划日期(YYYY-MM-DD)") |
| | | private LocalDate planTime; |
| | | /** |
| | | * 区域编码 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("区域编码") |
| | | private String areaCode; |
| | | /** |
| | | * 删除标志(0存在 1删除) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("删除标志(0存在 1删除)") |
| | | private Byte isDeleted; |
| | | |
| | | } |