| | |
| | | package org.sxkj.fw.device.excel; |
| | | |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | 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.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | |
| | | /** |
| | | * 设备表 Excel实体类 |
| | | * |
| | | * @author Aix |
| | | * @author aix |
| | | * @since 2026-01-08 |
| | | */ |
| | | @Data |
| | |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("来源") |
| | | private String source; |
| | | /** |
| | | * 用途 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("用途") |
| | | private String purpose; |
| | | /** |
| | | * 所属部门 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("所属部门") |
| | | private Long belongDept; |
| | | /** |
| | | * 负责人 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("负责人") |
| | | private String charger; |
| | | /** |
| | | * 联系电话 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("联系电话") |
| | | private String contactPhone; |
| | | /** |
| | | * 备注 |
| | | */ |
| | |
| | | @ExcelProperty("删除标志(0存在 1删除)") |
| | | private Byte isDeleted; |
| | | |
| | | /** |
| | | * 使用日期 |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("使用日期") |
| | | private Date useDate; |
| | | |
| | | /** |
| | | * 使用年限(单位:年) |
| | | */ |
| | | @ColumnWidth(20) |
| | | @ExcelProperty("使用年限(单位:年)") |
| | | private Integer serviceLife; |
| | | |
| | | } |