From 7377c6ab43dfc4b622055a992efaadc972c24726 Mon Sep 17 00:00:00 2001 From: yuxc <yuxc@vci-tech.com> Date: 星期五, 03 一月 2025 17:18:58 +0800 Subject: [PATCH] 1、管理功能模块、业务功能模块,判断菜单标识alias是否唯一并且必须是英文。 2、操作类型模块添加图标数据。 3、ACTION增加图标。 --- Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/controller/VciOsStatusController.java | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/controller/VciOsStatusController.java b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/controller/VciOsStatusController.java index 2371ba8..2a54d4b 100644 --- a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/controller/VciOsStatusController.java +++ b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/controller/VciOsStatusController.java @@ -1,7 +1,6 @@ package com.vci.web.controller; import com.vci.constant.FrameWorkLangCodeConstant; -import com.vci.dto.OsAttributeDTO; import com.vci.starter.web.annotation.controller.VciUnCheckRight; import com.vci.starter.web.annotation.log.VciBusinessLog; import com.vci.starter.web.exception.VciBaseException; @@ -15,7 +14,7 @@ import com.vci.starter.web.util.VciBaseUtil; import com.vci.web.service.OsLifeCycleServiceI; import com.vci.web.service.OsStatusServiceI; -import com.vci.web.util.Func; +import com.vci.starter.web.util.Lcm.Func; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -165,7 +164,7 @@ @VciBusinessLog(operateName = "瀵煎嚭鐘舵��") public void exportStatus(String exportFileName,String statusOids, HttpServletResponse response){ try { - String excelPath = statusService.exportStatus(exportFileName,statusOids); + String excelPath = statusService.exportStatus(exportFileName,statusOids,true); ControllerUtil.writeFileToResponse(response,excelPath); } catch (Exception e) { String msg = "瀵煎嚭鐘舵�佹椂鍑虹幇閿欒锛屽師鍥狅細" + VciBaseUtil.getExceptionMessage(e); -- Gitblit v1.9.3