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