t_repay.sql 1.2 KB

12345678910111213141516171819
  1. -- 用户还款表 t_repay
  2. create table t_repay(
  3. id int not null auto_increment comment 'id',
  4. code varchar(10) not null comment '用户还款编号',
  5. draw_code varchar(10) not null default '' comment '提款申请记录编号',
  6. repay_plan_code varchar(10) not null default '' comment '最新的还款计划编号',
  7. product_code varchar(10) not null default '' comment '产品编号',
  8. enuu int not null default 0 comment '用户企业uu',
  9. start_date varchar(19) not null default '' comment '提款日期',
  10. end_date varchar(19) not null default '' comment '到期日期',
  11. draw_amount decimal(15,2) not null default 0 comment '提款金额',
  12. draw_month_rate decimal(6,4) not null default 0 comment '月利率',
  13. current_repay_moment decimal(15,2) not null default 0 comment '本期还款金额',
  14. current_repay_time varchar(19) not null default '' comment '本期还款时间',
  15. create_time timestamp not null default current_timestamp comment '创建时间',
  16. update_time timestamp not null default current_timestamp on update current_timestamp comment '更新时间',
  17. primary key(id) comment '主键,没有重复',
  18. unique index(code) comment '用户还款编号,唯一索引'
  19. )ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT '用户还款表';