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.

123 lines
3.0 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;
import java.util.List;
/**
* 发布渠道分析结果表(含多维度投放数据)
*
* @author whb
* fbqd_stu_answer
*/
public class FbqdStuAnswer {
@ApiModelProperty(notes = "主键格式FBQDA_时间戳_哈希值FBQDA_2023110614_9d7b6c5e")
private String id;
@ApiModelProperty(notes = "分析模块")
private String module;
@ApiModelProperty(notes = "用户ID关联userinfo表")
private String userId;
@ApiModelProperty(notes = "曝光量")
private String exposureData;
@ApiModelProperty(notes = "点击量")
private String clickData;
@ApiModelProperty(notes = "花费")
private String adCost;
@ApiModelProperty(notes = "订单金额")
private String orderAmount;
@ApiModelProperty(notes = "5.综合评分(以逗号隔开,没做就为空)")
private String keywords;
@ApiModelProperty(notes = "主观题")
private String scenePromotion;
@ApiModelProperty(notes = "人群推广方案500字以内")
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();
}
}