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.
|
|
|
|
|
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();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|