You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.5 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.sztzjy.linkCommerce.entity;
import io.swagger.annotations.ApiModelProperty;
/**
* 学生产品差异化定位分析数据集JSON结构化存储
*
* @author whb
* cpcyhdw_stu_data
*/
public class CpcyhdwStuData {
@ApiModelProperty(notes = "主键格式CPCYHDWSD_时间戳_哈希值CPCYHDWSD_2023110614_9d7b6c5e")
private String id;
@ApiModelProperty(notes = "用户ID关联userinfo表")
private String userId;
@ApiModelProperty(notes = "童装童鞋品类数据JSON格式存储产品参数、市场份额等")
private String childrenClothingShoes;
@ApiModelProperty(notes = "宠物服饰品类数据JSON格式存储竞品分析、价格带分布等")
private String petClothing;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId == null ? null : userId.trim();
}
public String getChildrenClothingShoes() {
return childrenClothingShoes;
}
public void setChildrenClothingShoes(String childrenClothingShoes) {
this.childrenClothingShoes = childrenClothingShoes == null ? null : childrenClothingShoes.trim();
}
public String getPetClothing() {
return petClothing;
}
public void setPetClothing(String petClothing) {
this.petClothing = petClothing == null ? null : petClothing.trim();
}
}