From c1a0c94ecd6e357b39e2aa8dbde01a25781e5ac3 Mon Sep 17 00:00:00 2001
From: xiebin <vip_xiaobin810@163.com>
Date: Sat, 17 Jan 2026 15:50:36 +0800
Subject: [PATCH] update-维修计划
---
drone-service/drone-fw/src/main/java/org/sxkj/fw/device/vo/FwDeviceMaintainPlanVO.java | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/drone-service/drone-fw/src/main/java/org/sxkj/fw/device/vo/FwDeviceMaintainPlanVO.java b/drone-service/drone-fw/src/main/java/org/sxkj/fw/device/vo/FwDeviceMaintainPlanVO.java
index aee67a1..f4fbb3f 100644
--- a/drone-service/drone-fw/src/main/java/org/sxkj/fw/device/vo/FwDeviceMaintainPlanVO.java
+++ b/drone-service/drone-fw/src/main/java/org/sxkj/fw/device/vo/FwDeviceMaintainPlanVO.java
@@ -18,8 +18,10 @@
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
+import org.sxkj.system.cache.SysCache;
import java.io.Serializable;
+import java.util.Date;
import java.util.List;
/**
@@ -107,5 +109,27 @@
@ApiModelProperty(value = "用途")
private String purpose;
+ /**
+ * 负责人
+ */
+ @ApiModelProperty(value = "负责人")
+ private String charger;
+
+ @ApiModelProperty("入库时间")
+ private Date createTime;
+
+ @ApiModelProperty(value = "维修状态")
+ private String maintainStatus;
+
+ @ApiModelProperty(value = "最后维修时间")
+ private String lastMaintainTime;
+
+ @ApiModelProperty(value = "所属部门名称")
+ public String getBelongDeptName() {
+ if (belongDept == null) {
+ return null;
+ }
+ return SysCache.getDeptName(belongDept);
+ }
}
--
Gitblit v1.9.3