design detail 新增接口--编辑图层的位置、大小
This commit is contained in:
@@ -46,7 +46,6 @@ public class DesignPythonItemPrint {
|
||||
return IfSingle;
|
||||
}
|
||||
|
||||
// todo
|
||||
public DesignPythonItemPrint(String singlePath, String level1Type, Float scale, Boolean ifSingle) {
|
||||
this.path = singlePath;
|
||||
this.level1Type = level1Type;
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
package com.ai.da.python.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class OutfitDetailPythonItem {
|
||||
|
||||
private String image_category;
|
||||
|
||||
private List<Long> position;
|
||||
|
||||
private List<Long> image_size;
|
||||
|
||||
private Float scale;
|
||||
|
||||
private String image_url;
|
||||
|
||||
private String mask_url;
|
||||
|
||||
public OutfitDetailPythonItem() {
|
||||
}
|
||||
|
||||
public OutfitDetailPythonItem(String image_category, List<Long> position, List<Long> image_size, Float scale, String image_url, String mask_url) {
|
||||
this.image_category = image_category;
|
||||
this.position = position;
|
||||
this.image_size = image_size;
|
||||
this.scale = scale;
|
||||
this.image_url = image_url;
|
||||
this.mask_url = mask_url;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user