From 27cf08e72fbff991712384ee7d5c509dc0ccc76f Mon Sep 17 00:00:00 2001
From: xyc <jc_xiong@hotmail.com>
Date: 星期一, 19 八月 2024 15:37:43 +0800
Subject: [PATCH] 传给算法包的模型中,增加节点的名称,以方便调试。

---
 modules/mainPart/src/main/java/com/zt/life/modules/mainPart/sysPictureBase/controller/SysPictureBaseController.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/sysPictureBase/controller/SysPictureBaseController.java b/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/sysPictureBase/controller/SysPictureBaseController.java
index 29551dc..34a8351 100644
--- a/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/sysPictureBase/controller/SysPictureBaseController.java
+++ b/modules/mainPart/src/main/java/com/zt/life/modules/mainPart/sysPictureBase/controller/SysPictureBaseController.java
@@ -73,7 +73,7 @@
         } else {
             sysPictureBaseService.insert(sysPictureBase);
         }
-        if (sysPictureBase.getIsDefault() == 1) {
+        if (sysPictureBase.getIsDefault() == 1 && sysPictureBase.getProductType()!=20) {
             sysPictureBaseService.updateByDefault(sysPictureBase.getId(), sysPictureBase.getProductType());
             sysPictureBaseService.updateProdeuctImg(sysPictureBase.getId(), sysPictureBase.getProductType(), null);
         }

--
Gitblit v1.9.1