edit-licheb-customer

This commit is contained in:
lccsw
2021-08-05 14:40:02 +08:00
parent 68b98501c1
commit 666399b900
19 changed files with 525 additions and 40 deletions
+1
View File
@@ -12,6 +12,7 @@ create table lc_auto_brand (
u_time timestamp not null default current_timestamp on update current_timestamp,
primary key (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='车型库_品牌';
alter table lc_auto_brand add logo varchar(70) not null default '' comment '品牌logo' after name;
-- ----------------------------
-- Title:车型库_车系
+3 -1
View File
@@ -22,7 +22,7 @@ create table lc_receiver_customers (
a_num tinyint(3) not null default '0' comment '到店次数',
p_time timestamp not null default '0000-00-00 00:00:00' comment '分配时间',
cont_time timestamp not null default '0000-00-00 00:00:00' comment '最后联系时间',
buy_time timestamp not null default '0000-00-00 00:00:00' comment '预计购买时间',
buy_time tinyint(3) not null default '0' comment '预计购买时间',
user_json json default null comment '用户其它数据',
car_json json default null comment '车信息',
jsondata json default null comment '其他信息',
@@ -31,6 +31,7 @@ create table lc_receiver_customers (
u_time timestamp not null default current_timestamp on update current_timestamp,
primary key (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='客户表';
alter table lc_receiver_customers add cf_clues varchar(50) not null default '' comment '线索来源' after cf_title;
-- ----------------------------
-- Title:客户操作日志表
@@ -50,4 +51,5 @@ create table lc_receiver_customer_oplogs (
u_time timestamp not null default current_timestamp on update current_timestamp,
primary key (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='客户操作日志表';
alter table lc_receiver_customer_oplogs add imgs json default null comment '图片' after log;