|
|
package com.sztzjy.linkCommerce.entity;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
/**
|
|
|
* 产品推广测试结果表(多周期指标跟踪)
|
|
|
*
|
|
|
* @author whb
|
|
|
* cptgcs_answer
|
|
|
*/
|
|
|
public class CptgcsAnswer {
|
|
|
@ApiModelProperty(notes = "主键")
|
|
|
private String id;
|
|
|
|
|
|
@ApiModelProperty(notes = "用户ID(关联userinfo表)")
|
|
|
private String userId;
|
|
|
|
|
|
@ApiModelProperty(notes = "创建时间")
|
|
|
private Date createTime;
|
|
|
|
|
|
@ApiModelProperty(notes = "点击率数据")
|
|
|
private String clickRate;
|
|
|
|
|
|
@ApiModelProperty(notes = "转化率数据")
|
|
|
private String conversionRate;
|
|
|
|
|
|
@ApiModelProperty(notes = "投资回报率数据")
|
|
|
private String roiData;
|
|
|
|
|
|
@ApiModelProperty(notes = "统计量")
|
|
|
private String orderAmount;
|
|
|
|
|
|
@ApiModelProperty(notes = "主观题")
|
|
|
private String context;
|
|
|
|
|
|
@ApiModelProperty(notes = "p值")
|
|
|
private String pValue;
|
|
|
|
|
|
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 Date getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
|
|
|
public String getClickRate() {
|
|
|
return clickRate;
|
|
|
}
|
|
|
|
|
|
public void setClickRate(String clickRate) {
|
|
|
this.clickRate = clickRate == null ? null : clickRate.trim();
|
|
|
}
|
|
|
|
|
|
public String getConversionRate() {
|
|
|
return conversionRate;
|
|
|
}
|
|
|
|
|
|
public void setConversionRate(String conversionRate) {
|
|
|
this.conversionRate = conversionRate == null ? null : conversionRate.trim();
|
|
|
}
|
|
|
|
|
|
public String getRoiData() {
|
|
|
return roiData;
|
|
|
}
|
|
|
|
|
|
public void setRoiData(String roiData) {
|
|
|
this.roiData = roiData == null ? null : roiData.trim();
|
|
|
}
|
|
|
|
|
|
public String getOrderAmount() {
|
|
|
return orderAmount;
|
|
|
}
|
|
|
|
|
|
public void setOrderAmount(String orderAmount) {
|
|
|
this.orderAmount = orderAmount == null ? null : orderAmount.trim();
|
|
|
}
|
|
|
|
|
|
public String getContext() {
|
|
|
return context;
|
|
|
}
|
|
|
|
|
|
public void setContext(String context) {
|
|
|
this.context = context == null ? null : context.trim();
|
|
|
}
|
|
|
|
|
|
public String getpValue() {
|
|
|
return pValue;
|
|
|
}
|
|
|
|
|
|
public void setpValue(String pValue) {
|
|
|
this.pValue = pValue == null ? null : pValue.trim();
|
|
|
}
|
|
|
} |