From 8c636d0484ab9f0e89764a3429dc6edb68922324 Mon Sep 17 00:00:00 2001 From: daiyongfei <974332738@qq.com> Date: Fri, 12 Dec 2025 14:55:03 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E5=A4=87=E7=BB=B4=E4=BF=AE=E8=AE=B0?= =?UTF-8?q?=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/vo/DeviceRepairRecordsVo.java | 26 ++++++++++--------- 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/fys-modules/fys-equipment/src/main/java/com/fuyuanshen/equipment/domain/vo/DeviceRepairRecordsVo.java b/fys-modules/fys-equipment/src/main/java/com/fuyuanshen/equipment/domain/vo/DeviceRepairRecordsVo.java index f2867af..3a92f93 100644 --- a/fys-modules/fys-equipment/src/main/java/com/fuyuanshen/equipment/domain/vo/DeviceRepairRecordsVo.java +++ b/fys-modules/fys-equipment/src/main/java/com/fuyuanshen/equipment/domain/vo/DeviceRepairRecordsVo.java @@ -36,33 +36,39 @@ public class DeviceRepairRecordsVo extends TenantEntity implements Serializable /** * 维修记录ID */ - @ExcelProperty(value = "维修记录ID") + // @ExcelProperty(value = "维修记录ID") private Long recordId; /** * 设备ID */ - @ExcelProperty(value = "设备ID") + // @ExcelProperty(value = "设备ID") private String deviceId; + /** + * 设备名称 + */ + @ExcelProperty(value = "设备名称") + private String deviceName; + /** * 维修时间 */ @ExcelProperty(value = "维修时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @ColumnWidth(20) - private Date repairTime; + private String repairTime; /** - * 维修部位 + * 损坏部位 */ - @ExcelProperty(value = "维修部位") + @ExcelProperty(value = "损坏部位") private String repairPart; /** - * 维修原因 + * 损坏原因 */ - @ExcelProperty(value = "维修原因") + @ExcelProperty(value = "损坏原因") private String repairReason; /** @@ -70,11 +76,7 @@ public class DeviceRepairRecordsVo extends TenantEntity implements Serializable */ @ExcelProperty(value = "维修人员") private String repairPerson; - /** - * 维修人员 - */ - @ExcelProperty(value = "设备名称") - private String deviceName; + private List images;