peng
4 天以前 882ae5b03957e8b3c72032d2c7da67738554aa55
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
package cn.lili.modules.lmk.domain.entity;
 
import cn.lili.mybatis.BaseEntity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.time.LocalDateTime;
import lombok.Data;
 
/**
 * 用户行为记录
 *
 * @author peng
 * @since 2025-09-08
 */
@Data
@TableName("lmk_action_record")
public class ActionRecord extends BaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("user_id")
    /** 用户id */
    private String userId;
 
    @TableField("session_id")
    /** 页面会话id */
    private String sessionId;
 
    @TableField("action_type")
    /** 行为类型 */
    private String actionType;
 
    @TableField("start_time")
    /** 触发时间 */
    private LocalDateTime startTime;
 
    @TableField("join_type")
    /** 进入页面方式 */
    private String joinType;
 
    @TableField("previous_session_id")
    /** 上一个页面的会话id */
    private String previousSessionId;
 
    @TableField("share_id")
    /** 分享id */
    private Long shareId;
 
    @TableField("page_code")
    /** 页面编码 */
    private String pageCode;
 
    @TableField("page_params")
    /** 页面详情参数(json格式) */
    private String pageParams;
 
    @TableField("page_type")
    /** 页面类型 */
    private String pageType;
 
    @TableField("page_status")
    /** 用户在页面状态 */
    private String pageStatus;
 
 
}