t_repay_plan.sql 1.1 KB

12345678910111213141516
  1. -- 用户还款计划信息 t_repay_plan
  2. create table t_repay_plan(
  3. id int not null auto_increment comment 'id',
  4. code varchar(10) not null comment '还款计划编号',
  5. repay_code varchar(10) not null default '' comment '用户还款编号',
  6. repay_date varchar(19) not null default '' comment '还款日期',
  7. should_repay_interest decimal(15,2) not null default 0 comment '应还利息',
  8. should_repay_principal decimal(15,2) not null default 0 comment '应还本金',
  9. should_repay_total decimal(15,2) not null default 0 comment '应还本息合计',
  10. periods_number smallint not null default 0 comment '期数',
  11. status smallint not null default 301 comment '还款状态(301.待还款 302.已失效 300.已还款)',
  12. create_time timestamp not null default current_timestamp comment '创建时间',
  13. update_time timestamp not null default current_timestamp on update current_timestamp comment '更新时间',
  14. primary key(id) comment '主键,没有重复',
  15. unique index(code) comment '还款计划编号,唯一索引'
  16. )ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT '用户还款计划信息';