peng
2025-10-27 2a7b0a64b14b22ec45f8a0f6e4764bc3cd16919c
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
package cn.lili.modules.lmk.domain.vo;
 
import cn.lili.mybatis.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.time.LocalDateTime;
import java.util.Date;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
/**
 * 用户行为记录
 *
 * @author peng
 * @since 2025-09-08
 */
@Data
public class ActionRecordListVO extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    /** 用户id */
    private String userId;
 
    /** 页面会话id */
    private String sessionId;
 
    /** 行为类型 */
    private String actionType;
 
    /** 触发时间 */
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date startTime;
 
    /** 进入页面方式 */
    private String joinType;
 
    /** 上一个页面的会话id */
    private String previousSessionId;
 
    /** 分享id */
    private Long shareId;
 
    /** 页面编码 */
    private String pageCode;
 
    /** 昵称 */
    private String nickName;
 
    /** 页面详情参数(json格式) */
    private String pageParams;
 
    /** 页面类型 */
    private String pageType;
 
    /** 用户在页面状态 */
    private String pageStatus;
 
 
}