文档
测试

统计-用户点击记录

POST
http://192.168.0.47:8060/v1.0/burying/add

请求参数

参数名
类型
描述
必填
eventValue
string
示例:id1
必填
eventKey
string
示例:event
必填
userId
int
示例:1
必填
typekey
string
示例:1
必填
typeValue
string
示例:2
必填
advSource
string
示例:advSource
必填
channelNumber
string
示例:channelNumber
必填

响应参数

参数名
类型
描述
必填
code
int
示例:200
必填
message
string
示例:操作成功
必填

说明 / 示例

/** * <p> * 埋点统计表 * </p> * * @author hm * @since 2021-04-06 */ @Data @EqualsAndHashCode(callSuper = false) @TableName("log_burying") @ApiModel(value="LogBurying对象", description="埋点统计表") public class LogBurying implements Serializable { private static final long serialVersionUID = 1L; @ApiModelProperty(value = "主键id") @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "用户id") private Integer userId; @ApiModelProperty(value = "事件名称") private String eventKey; @ApiModelProperty(value = "事件值") private String eventValue; @ApiModelProperty(value = "类型名称") private String typeKey; @ApiModelProperty(value = "类型值") private String typeValue; @ApiModelProperty(value = "事件发生数") private Integer eventNum; @ApiModelProperty(value = "涉及用户数") private Integer userNum; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "添加日期") private Date date; @ApiModelProperty(value = "涉及用户数") private String channelNumber; }