peng
2025-10-15 c40f30d375d4108c8514eed49b372cbb7d80bb57
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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;
 
}