add-api-delivery

This commit is contained in:
lccsw
2021-11-09 16:38:51 +08:00
parent c406ddfce4
commit c66df76c77
13 changed files with 111 additions and 32 deletions
+3
View File
@@ -92,6 +92,9 @@ create table lc_receiver_order_deliverys (
primary key (id),
unique key o_id (o_id)
) ENGINE=INNODB DEFAULT CHARSET=UTF8MB4 COLLATE=UTF8MB4_0900_AI_CI COMMENT='交付确认订单';
alter table lc_receiver_order_deliverys add info varchar(255) not null default '' comment '随车资料' after o_id;
alter table lc_receiver_order_deliverys add tool varchar(255) not null default '' comment '随车工具' after info;
alter table lc_receiver_order_deliverys add remark varchar(255) not null default '' comment '备注' after tool;
-- ----------------------------
-- Title:订单贷款表