edit-api-create_order
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
-- ----------------------------
|
||||
-- Title:订单精品
|
||||
-- Author:lcc
|
||||
-- Table:lc_receiver_fine
|
||||
-- ---------------------------
|
||||
create table lc_receiver_fine (
|
||||
id int(10) not null auto_increment comment '自增id',
|
||||
title varchar(50) not null default '' comment '标题',
|
||||
price decimal(10,2) not null default '0.00' comment '价格',
|
||||
status tinyint(1) not null default '0' comment '状态(1开启 0关闭 -1删除)',
|
||||
u_time timestamp not null default current_timestamp on update current_timestamp comment '更新时间',
|
||||
c_time int(10) not null default '0' comment '创建时间',
|
||||
primary key (id)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 comment='订单精品'
|
||||
@@ -157,7 +157,7 @@ create table lc_receiver_order_signs (
|
||||
-- Author:lcc
|
||||
-- Table:lc_receiver_orders
|
||||
-- info_json entrust_name 代办人姓名 entrust_idcard 代办人身份证 name 姓名 sex 性别 nation 民族 birth 出生日期 address 家庭地址 cardid 身份证 c_address 创建时输入的地址 c_cardid 创建时输入的身份证
|
||||
-- money_json price_car 裸车价 price_book 定金 price_insure 保险价格 price_fine 精品报价 price_finance 金融报价 price_loan贷款金额
|
||||
-- money_json price_car 裸车价 price_book 定金 price_insure 保险价格 price_fine 精品报价 price_finance 金融报价 price_loan贷款金额 price_discount优惠金额
|
||||
-- ---------------------------
|
||||
drop table if exists lc_receiver_orders;
|
||||
create table lc_receiver_orders (
|
||||
@@ -191,4 +191,6 @@ alter table lc_receiver_orders add main_type tinyint(1) unsigned not null defaul
|
||||
alter table lc_receiver_orders add ifentrust tinyint(1) unsigned not null default 0 comment '是否委托代办' after main_type;
|
||||
alter table lc_receiver_orders add delry_time timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '期望交付时间' after status;
|
||||
alter table lc_receiver_orders add finance_id int(10) unsigned not null default 0 comment '车型金融信息id' after payway;
|
||||
alter table lc_receiver_orders add money_json json default null comment "格json数据" after info_json;
|
||||
alter table lc_receiver_orders add money_json json default null comment "价格json数据" after info_json;
|
||||
alter table lc_receiver_orders add srv_ids varchar(100) not null default '' comment '服务id多个逗号隔开' after pack_id;
|
||||
alter table lc_receiver_orders add fine_ids varchar(100) not null default '' comment '精品id多个逗号隔开' after srv_ids;
|
||||
|
||||
Reference in New Issue
Block a user