BUGFIX:layer_order默认false

This commit is contained in:
2023-12-13 11:56:13 +08:00
parent 43b9ba74ab
commit 483eea66b9
2 changed files with 2 additions and 1 deletions

View File

@@ -2033,6 +2033,7 @@ public class PythonService {
basic.setScale_bag(0.7);
basic.setScale_earrings(0.16);
basic.setBody_point_test(getMap(designLibraryModelPoint));
basic.setLayer_order(Boolean.TRUE);
return basic;
}

View File

@@ -36,6 +36,6 @@ public class DesignPythonBasic {
private Map<String, List<Integer>> body_point_test = Maps.newHashMap();
private Boolean layer_order = Boolean.TRUE;
private Boolean layer_order = Boolean.FALSE;
}