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.

120 lines
3.2 KiB
Java

1 year ago
package com.sztzjy.linkCommerce.entity;
import io.swagger.annotations.ApiModelProperty;
/**
*
1 year ago
*
* @author whb
* fbqd_stu_answer
*/
public class FbqdStuAnswer {
@ApiModelProperty(notes = "主键格式FBQDA_时间戳_哈希值FBQDA_2023110614_9d7b6c5e")
1 year ago
private String id;
@ApiModelProperty(notes = "分析模块")
1 year ago
private String module;
@ApiModelProperty(notes = "用户ID关联userinfo表")
private String userId;
@ApiModelProperty(notes = "1.数据标准化结果(以逗号隔开,没做就为空)")
1 year ago
private String exposureData;
@ApiModelProperty(notes = "2.每个渠道中的比重(以逗号隔开,没做就为空)")
1 year ago
private String clickData;
@ApiModelProperty(notes = "3.每个指标的信息熵(以逗号隔开,没做就为空)")
1 year ago
private String adCost;
@ApiModelProperty(notes = "4.计算每个指标的权重(以逗号隔开,没做就为空)")
1 year ago
private String orderAmount;
@ApiModelProperty(notes = "5.综合评分(以逗号隔开,没做就为空)")
1 year ago
private String keywords;
@ApiModelProperty(notes = "主观题")
1 year ago
private String scenePromotion;
@ApiModelProperty(notes = "人群推广方案500字以内")
1 year ago
private String crowdPromotion;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public String getModule() {
return module;
}
public void setModule(String module) {
this.module = module == null ? null : module.trim();
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId == null ? null : userId.trim();
}
public String getExposureData() {
return exposureData;
}
public void setExposureData(String exposureData) {
this.exposureData = exposureData == null ? null : exposureData.trim();
}
public String getClickData() {
return clickData;
}
public void setClickData(String clickData) {
this.clickData = clickData == null ? null : clickData.trim();
}
public String getAdCost() {
return adCost;
}
public void setAdCost(String adCost) {
this.adCost = adCost == null ? null : adCost.trim();
}
public String getOrderAmount() {
return orderAmount;
}
public void setOrderAmount(String orderAmount) {
this.orderAmount = orderAmount == null ? null : orderAmount.trim();
}
public String getKeywords() {
return keywords;
}
public void setKeywords(String keywords) {
this.keywords = keywords == null ? null : keywords.trim();
}
public String getScenePromotion() {
return scenePromotion;
}
public void setScenePromotion(String scenePromotion) {
this.scenePromotion = scenePromotion == null ? null : scenePromotion.trim();
}
public String getCrowdPromotion() {
return crowdPromotion;
}
public void setCrowdPromotion(String crowdPromotion) {
this.crowdPromotion = crowdPromotion == null ? null : crowdPromotion.trim();
}
}