package cn.lili.modules.lmk.domain.vo;
|
|
import cn.lili.base.AbsVo;
|
import cn.lili.modules.lmk.domain.entity.ActionRecord;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.beans.BeanUtils;
|
import org.springframework.format.annotation.DateTimeFormat;
|
import org.springframework.lang.NonNull;
|
|
import java.time.LocalDateTime;
|
import java.util.Date;
|
|
/**
|
* 用户行为记录展示
|
*
|
* @author peng
|
* @since 2025-09-08
|
*/
|
@Data
|
@ApiModel(value = "用户行为记录响应数据", description = "用户行为记录响应数据")
|
public class StayActionRecordVO {
|
/**
|
* 用户ID
|
*/
|
private String userId;
|
|
/**
|
* 用户昵称
|
*/
|
private String nickName;
|
|
/**
|
* 会话ID
|
*/
|
private String sessionId;
|
|
/**
|
* 页面编码
|
*/
|
private String pageCode;
|
|
/**
|
* 中文页面名称
|
*/
|
private String pageNameCn;
|
|
/**
|
* 页面参数
|
*/
|
private String pageParams;
|
|
/**
|
* 进入页面时间
|
*/
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date enterTime;
|
|
/**
|
* 离开页面时间
|
*/
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date leaveTime;
|
|
/**
|
* 停留秒数
|
*/
|
private Integer staySeconds;
|
|
}
|