add-auto-biz

This commit is contained in:
lccsw
2023-01-30 14:40:29 +08:00
parent 5f1e2d37d4
commit c456859054
5 changed files with 441 additions and 2 deletions
+16
View File
@@ -122,3 +122,19 @@ create table lc_auto_car_finance (
u_time timestamp not null default current_timestamp on update current_timestamp comment '更新时间',
primary key (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='车型金融信息'
-- ----------------------------
-- Title:车型金融信息
-- Author:lcc
-- Table:lc_auto_car_finance
-- ---------------------------
drop table if exists lc_auto_brand_biz;
create table lc_auto_brand_biz (
id int(10) not null auto_increment,
biz_id int(10) not null comment '门店id',
brand_id int(10) not null comment '车型品牌id',
type tinyint(3) not null comment '门店类型',
c_time int(10) not null default '0' COMMENT '创建时间',
u_time timestamp not null default current_timestamp on update current_timestamp comment '更新时间',
primary key (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='品牌授权门店'