From 0ea96c728ccdc708d3c66c34a6c8700e38572e09 Mon Sep 17 00:00:00 2001 From: shahaibo <1023316923@qq.com> Date: Sun, 20 Oct 2024 13:39:01 +0800 Subject: [PATCH] =?UTF-8?q?BUGFIX:=E6=A8=A1=E7=89=B9=E9=A2=84=E8=A7=88?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E9=A2=9C=E8=89=B2=E6=B7=BB=E5=8A=A0;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/ai/da/python/PythonService.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/com/ai/da/python/PythonService.java b/src/main/java/com/ai/da/python/PythonService.java index c080e682..08113d91 100644 --- a/src/main/java/com/ai/da/python/PythonService.java +++ b/src/main/java/com/ai/da/python/PythonService.java @@ -2871,6 +2871,7 @@ public class PythonService { designPythonItemPrint.setPrint_path_list(new ArrayList<>()); dress.setPrint(new PrintToPython(designPythonItemPrint)); dress.setPath("aida-sys-image/images/female/blouse/0628001551.jpg"); + dress.setColor("255 255 255"); response.add(dress); DesignPythonItem skirt = new DesignPythonItem(); @@ -2882,6 +2883,7 @@ public class PythonService { designPythonItemPrint1.setPrint_path_list(new ArrayList<>()); skirt.setPrint(new PrintToPython(designPythonItemPrint1)); skirt.setPath("aida-sys-image/images/female/skirt/0628000022.jpg"); + skirt.setColor("255 255 255"); // skirt.setPath("aida-sys-image/images/female/dress/0628000000.jpg"); response.add(skirt); } else { @@ -2894,6 +2896,7 @@ public class PythonService { designPythonItemPrint.setPrint_path_list(new ArrayList<>()); top.setPrint(new PrintToPython(designPythonItemPrint)); top.setPath("aida-sys-image/images/male/tops/mens_test_10.png"); + top.setColor("255 255 255"); response.add(top); DesignPythonItem bottom = new DesignPythonItem(); @@ -2905,6 +2908,7 @@ public class PythonService { designPythonItemPrint1.setPrint_path_list(new ArrayList<>()); bottom.setPrint(new PrintToPython(designPythonItemPrint1)); bottom.setPath("aida-sys-image/images/male/bottoms/mens_test_6252.png"); + bottom.setColor("255 255 255"); response.add(bottom); }