|
@@ -88,7 +88,7 @@ public class CustomerInfoVo {
|
|
|
private String originName;
|
|
|
|
|
|
@JsonProperty("tag")
|
|
|
- private List<String> tag;
|
|
|
+ private List<Tag> tag;
|
|
|
|
|
|
@JsonProperty("client_tag_list")
|
|
|
private List<String> clientTagList;
|
|
@@ -267,4 +267,35 @@ public class CustomerInfoVo {
|
|
|
@JsonProperty("value")
|
|
|
private String value;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ @Data
|
|
|
+ public static class Tag {
|
|
|
+
|
|
|
+ @JsonProperty("tag_color")
|
|
|
+ private String tagColor;
|
|
|
+
|
|
|
+ @JsonProperty("tag_id")
|
|
|
+ private String tagId;
|
|
|
+
|
|
|
+ @JsonProperty("tag_name")
|
|
|
+ private String tagName;
|
|
|
+
|
|
|
+ @JsonProperty("user_id")
|
|
|
+ private String userId;
|
|
|
+
|
|
|
+ @JsonProperty("system_flag")
|
|
|
+ private String systemFlag;
|
|
|
+
|
|
|
+ @JsonProperty("create_time")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ @JsonProperty("user_info")
|
|
|
+ private List<Object> userInfo;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
}
|