admin sys add finance manger and company short is must
This commit is contained in:
+19
@@ -204,3 +204,22 @@ create table lc_sys_company (
|
||||
) ENGINE=INNODB DEFAULT CHARSET=UTF8MB4 COLLATE=UTF8MB4_0900_AI_CI COMMENT='公司管理';
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- Title:金融产品
|
||||
-- Author:xusir
|
||||
-- Table:lc_sys_finance
|
||||
-- ---------------------------
|
||||
drop table if exists lc_sys_finance;
|
||||
create table lc_sys_finance (
|
||||
id int(10) unsigned not null auto_increment comment '自增id',
|
||||
title varchar(64) not null comment '公司名称',
|
||||
logo varchar(128) not null default '' comment '菜单图标',
|
||||
money_min decimal(12,2) not null default 0.00 comment '最低额度(万元)',
|
||||
money_max decimal(12,2) not null default 0.00 comment '最高额度(万元)',
|
||||
first_pay decimal(12,2) not null default 0.00 comment '首付(万元)',
|
||||
month_min int not null default 0 comment '最低期限(月)',
|
||||
month_max int not null default 0 comment '最高期限(月)',
|
||||
status tinyint(1) not null default '1' comment '状态:-1删除,0关闭,1开启',
|
||||
primary key (id)
|
||||
) ENGINE=INNODB DEFAULT CHARSET=UTF8MB4 COLLATE=UTF8MB4_0900_AI_CI COMMENT='金融产品';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user