ytf 3 anni fa
parent
commit
e742dd526c

+ 11 - 0
krock-pm/krock-web-pm/src/main/resources/sql/建表语句.sql

@@ -0,0 +1,11 @@
1
+create table t_pm_item_follow (
2
+  person_id varchar(50) not null comment '用户id',
3
+  open_id varchar(50) not null comment '用户openid',
4
+  pm_item_id varchar(50) not null comment '标的物id',
5
+  pm_item_name varchar(50) not null comment '标的物名称',
6
+  time_opening bigint(20) not null comment '开始时间' ,
7
+  status int(11) DEFAULT 0 comment '状态:0.关注 -100.取消关注(假删除) ',
8
+  created bigint(20) comment '创建时间',
9
+  editd bigint(20) comment '修改时间',
10
+  edit_count int(11) default 0 comment '修改次数'
11
+) comment='标的物关注用户表';