edit-admin-edit-loan

This commit is contained in:
lccsw
2021-09-28 15:00:46 +08:00
parent acafc89534
commit 05815a3a12
7 changed files with 108 additions and 30 deletions
+3 -1
View File
@@ -113,6 +113,8 @@ create table lc_receiver_order_loans (
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_loans add num tinyint(3) not null default 0 comment '贷款期数' after first_price;
alter table lc_receiver_order_loans add loan_time timestamp not null default '0000-00-00 00:00:00' comment '放款时间' after status;
-- ----------------------------
-- Title:订单操作日志表
@@ -154,7 +156,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 金融报价
-- money_json price_car 裸车价 price_book 定金 price_insure 保险价格 price_fine 精品报价 price_finance 金融报价 price_loan贷款金额
-- ---------------------------
drop table if exists lc_receiver_orders;
create table lc_receiver_orders (