|
@@ -0,0 +1,35 @@
|
|
|
+### lj_event_log table structure
|
|
|
+> 此表为用户行为
|
|
|
+
|
|
|
+
|
|
|
+| field | type | null | default | desc | extra |
|
|
|
+|----|:-----|:-------|:------|:-----|:-----|
|
|
|
+| id | bigint | no | | 主键 | pri |
|
|
|
+| user_id | bigint | yes | 0 | 用户id | |
|
|
|
+| merchant_id | bigint | yes | 0 | 渠道商id | |
|
|
|
+| event_type | int | no | | 事件类型 | |
|
|
|
+| tar_name | varchar(512) | yes | null | 目标名称 | |
|
|
|
+| tar_id | varchar(512) | yes | null | 目标id | |
|
|
|
+| value | bigint | no | 0 | 行为值 | |
|
|
|
+| platform | smallint | yes | null | | |
|
|
|
+| create_time | timestamp | no | now | 创建时间 | |
|
|
|
+| update_time | timestamp | no | create_time | 修改时间 | | |
|
|
|
+
|
|
|
+##### index
|
|
|
+
|
|
|
+##### create sql
|
|
|
+```
|
|
|
+CREATE TABLE `lj_event_log` (
|
|
|
+ `id` bigint(20) NOT NULL AUTO_INCREMENT,
|
|
|
+ `user_id` bigint(16) DEFAULT NULL COMMENT '用户id',
|
|
|
+ `merchant_id` bigint(20) DEFAULT NULL COMMENT '渠道商',
|
|
|
+ `type` int NOT NULL COMMENT '事件类型',
|
|
|
+ `tar_name` varchar(512) DEFAULT NULL COMMENT '目标名称',
|
|
|
+ `tar_id` varchar(512) DEFAULT NULL COMMENT '目标id',
|
|
|
+ `value` bigint(20) DEFAULT 0 COMMENT '事件值',
|
|
|
+ `platform` smallint(6) DEFAULT NULL COMMENT '播放平台 TV APP ...',
|
|
|
+ `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
|
|
+ `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
|
|
|
+ PRIMARY KEY (`id`)
|
|
|
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
|
|
+```
|