edit-api-licheb-opt

This commit is contained in:
lccsw
2021-08-10 09:51:58 +08:00
parent 10c4399ae2
commit fb40d1535f
63 changed files with 3314 additions and 321 deletions
+4
View File
@@ -153,6 +153,7 @@ create table lc_receiver_order_signs (
-- Title:订单表
-- Author:lcc
-- Table:lc_receiver_orders
-- info_json entrust_name 代办人姓名 entrust_idcard 代办人身份证
-- ---------------------------
drop table if exists lc_receiver_orders;
create table lc_receiver_orders (
@@ -180,3 +181,6 @@ create table lc_receiver_orders (
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_orders add pack_id int(10) unsigned not null default 0 comment '服务包id' after incor_id;
alter table lc_receiver_orders add main_type tinyint(1) unsigned not null default 0 comment '购车主体(0个人 1公司)' after admin_id;
alter table lc_receiver_orders add ifentrust tinyint(1) unsigned not null default 0 comment '是否委托代办' after main_type;