From 134c06beb2b6b7f7025fb030a9e52bcceebbfc98 Mon Sep 17 00:00:00 2001
From: jinlin <jinlin>
Date: 星期一, 15 七月 2024 14:36:49 +0800
Subject: [PATCH] 修改

---
 modules/mainPart/src/main/java/com/zt/life/modules/mainPart/sysPictureBase/controller/SysPictureBaseController.java |   76 ++++++++++++++-----------------------
 1 files changed, 29 insertions(+), 47 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 36df92b..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
@@ -50,7 +50,8 @@
     @ApiImplicitParams({
             @ApiImplicitParam(name = Constant.Q.ORDER_FIELD, value = Constant.QV.ORDER_FIELD, dataType = Constant.QT.STRING),
             @ApiImplicitParam(name = Constant.Q.ORDER, value = Constant.QV.ORDER, dataType = Constant.QT.STRING),
-            @ApiImplicitParam(name = "productType", value = "妫�绱㈠叧閿瓧", dataType = Constant.QT.STRING, format = "CONTENT_TYPE^LK"), @ApiImplicitParam(name = "systemMark", value = "绯荤粺鏍囪瘑", dataType = Constant.QT.STRING, format = "SYSTEM_MARK^LK")})
+            @ApiImplicitParam(name = "productType", value = "妫�绱㈠叧閿瓧", dataType = Constant.QT.STRING, format = "PRODUCT_TYPE^EQ"),
+            @ApiImplicitParam(name = "systemMark", value = "绯荤粺鏍囪瘑", dataType = Constant.QT.STRING, format = "SYSTEM_MARK^LK")})
     public Result<List<SysPictureBase>> page(@ApiIgnore @QueryParam QueryFilter queryFilter) {
 
         return Result.ok(sysPictureBaseService.page(queryFilter));
@@ -66,55 +67,15 @@
     @PostMapping("save")
     @ApiOperation("淇濆瓨")
     @LogOperation("淇濆瓨")
-    public Result save(@RequestBody MultipartFile file, Long id, Integer isDefault,
-                       String name, String contentType, Integer productType,  String remark) {
-        SysPictureBase sysPictureBase;
-        if (id != 0) {
-            sysPictureBase = sysPictureBaseService.get(id);
-            sysPictureBase.setIsDefault(isDefault);
-            sysPictureBase.setName(name);
-            sysPictureBase.setContentType(contentType);
-            sysPictureBase.setProductType(productType);
-            sysPictureBase.setRemark(remark);
+    public Result save(@RequestBody SysPictureBase sysPictureBase) {
+        if (sysPictureBase.getId() != null) {
             sysPictureBaseService.update(sysPictureBase);
         } else {
-            sysPictureBase = new SysPictureBase();
-            sysPictureBase.setIsDefault(isDefault);
-            sysPictureBase.setName(name);
-            sysPictureBase.setContentType(contentType);
-            sysPictureBase.setProductType(productType);
-            sysPictureBase.setRemark(remark);
             sysPictureBaseService.insert(sysPictureBase);
         }
-        if (sysPictureBase.getIsDefault()==1){
-            sysPictureBaseService.updateByDefault(sysPictureBase.getId(),sysPictureBase.getProductType());
-            sysPictureBaseService.updateProdeuctImg(sysPictureBase.getId(),sysPictureBase.getProductType());
-        }
-        if (file != null) {
-            BufferedImage bufferedImage = null;
-            try {
-                String fileName = file.getOriginalFilename();
-                String[] arr = fileName.split("\\.");
-                String suffixName = arr[arr.length - 1].toLowerCase();
-
-                bufferedImage = ImageIO.read(file.getInputStream());
-                // 瀹藉害
-                int width = bufferedImage.getWidth();
-                sysPictureBase.setWidth(width);
-                // 楂樺害
-                int height = bufferedImage.getHeight();
-                sysPictureBase.setHeight(height);
-                sysPictureBaseService.update(sysPictureBase);
-                String tempUploadDir = localPath + "/product_img/";
-                File dir = new File(tempUploadDir);
-                if (!dir.exists()) {
-                    dir.mkdirs();
-                }
-                ImageIO.write(bufferedImage, suffixName, new File(tempUploadDir + sysPictureBase.getId().toString()));
-            } catch (IOException e) {
-                e.printStackTrace();
-            }
-
+        if (sysPictureBase.getIsDefault() == 1 && sysPictureBase.getProductType()!=20) {
+            sysPictureBaseService.updateByDefault(sysPictureBase.getId(), sysPictureBase.getProductType());
+            sysPictureBaseService.updateProdeuctImg(sysPictureBase.getId(), sysPictureBase.getProductType(), null);
         }
         return Result.ok();
     }
@@ -143,11 +104,32 @@
             //鍏虫祦
             outputStream.close();
             in.close();
-        }  catch (IOException e) {
+        } catch (IOException e) {
             e.printStackTrace();
         }
     }
 
+    @RequestMapping("/getSvgImage")
+    public void getSvgImage(HttpServletResponse response, Long id) {
+        try {
+            SysPictureBase data = sysPictureBaseService.get(id);
+            String svgContent = data.getSvgContent();
+            response.setContentType("image/svg+xml");
+            response.getWriter().write(svgContent);
+            response.getWriter().flush();
+            response.getWriter().close();
+
+        } catch (IOException e) {
+            e.printStackTrace();
+        }
+    }
+
+    @GetMapping("/getDefaultImg")
+    public Result<SysPictureBase> getDefaultImg(Integer productType) {
+        SysPictureBase data = sysPictureBaseService.getDefaultImg(productType);
+        return Result.ok(data);
+    }
+
     @DeleteMapping
     @ApiOperation("鍒犻櫎")
     @LogOperation("鍒犻櫎")

--
Gitblit v1.9.1