From b84987e8d9def03bdf06f69e51de56e72d5b8131 Mon Sep 17 00:00:00 2001 From: lyh <925863403@qq.com> Date: 星期四, 14 八月 2025 17:40:57 +0800 Subject: [PATCH] 二保批量打印接口 --- lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/vo/EamEquipmentTree.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/vo/EamEquipmentTree.java b/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/vo/EamEquipmentTree.java index 222d290..8ee85cc 100644 --- a/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/vo/EamEquipmentTree.java +++ b/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/vo/EamEquipmentTree.java @@ -72,6 +72,15 @@ */ private String orgType; + /** + * 淇濆吇瑙勮寖鍚嶇О + */ + private String maintenanceStandardName; + + /** + * 淇濆吇瑙勮寖Id + */ + private String maintenanceStandardId; private List<EamEquipmentTree> children = new ArrayList<>(); @@ -87,6 +96,8 @@ this.title = mdcEquipment.getEquipmentCode() + "/" + mdcEquipment.getEquipmentName(); this.equipmentId = mdcEquipment.getEquipmentCode(); this.equipmentName = mdcEquipment.getEquipmentName(); + this.maintenanceStandardId=mdcEquipment.getMaintenanceStandardId(); + this.maintenanceStandardName=mdcEquipment.getMaintenanceStandardName(); this.isLeaf = true; return this; } -- Gitblit v1.9.3