TASK:模块化;
This commit is contained in:
@@ -32,4 +32,6 @@ public class ProductImageAttribute implements Serializable {
|
||||
private String subtype;
|
||||
|
||||
private String style;
|
||||
|
||||
private Long libraryId;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package com.ai.da.mapper.secondary.entity;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
@@ -7,16 +8,39 @@ import java.util.List;
|
||||
@Data
|
||||
public class AttributeRecognitionJSON {
|
||||
private Long id;
|
||||
@JsonProperty("img_name")
|
||||
private List<String> imgName;
|
||||
|
||||
@JsonProperty("length")
|
||||
private List<String> length;
|
||||
|
||||
@JsonProperty("sleeve_length")
|
||||
private List<String> sleeveLength;
|
||||
|
||||
@JsonProperty("sleeve_shape")
|
||||
private List<String> sleeveShape;
|
||||
|
||||
@JsonProperty("sleeve_shoulder")
|
||||
private List<String> sleeveShoulder;
|
||||
|
||||
@JsonProperty("neckline")
|
||||
private List<String> neckline;
|
||||
|
||||
@JsonProperty("collar")
|
||||
private List<String> collar;
|
||||
|
||||
@JsonProperty("design")
|
||||
private List<String> design;
|
||||
|
||||
@JsonProperty("silhouette")
|
||||
private List<String> silhouette;
|
||||
|
||||
@JsonProperty("type")
|
||||
private List<String> type;
|
||||
|
||||
@JsonProperty("opening_type")
|
||||
private List<String> openingType;
|
||||
|
||||
@JsonProperty("subtype")
|
||||
private List<String> subtype;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user