用户管理系统

用户管理系统

相关文章

1、 粉丝系统如何设计?
2、Shiro框架入门(一)
3、Shiro框架入门(二)——shiro+springboot

功能点

用户管理系统_第1张图片

系统架构图

关键流程图

界面原型

数据库设计

用户管理系统_第2张图片
建表语句:

/*==============================================================*/
/* Table: T_USER_BASE_INFO                                      */
/*==============================================================*/
drop table if exists T_USER_BASE_INFO;

create table T_USER_BASE_INFO
(
   USER_ID              char(32) not null,
   USER_NAME            varchar(50) not null,
   PHONE                char(13),
   EMAIL                varchar(320),
   STATUS               int not null,
   primary key (USER_ID)
);

alter table T_USER_BASE_INFO comment '基础信息表';

create unique index I_USER_ID on T_USER_BASE_INFO(USER_ID);


/*==============================================================*/
/* Table: T_IDOLS                                               */
/*==============================================================*/
drop table if exists T_IDOLS;
create table T_IDOLS
(
   USER_ID              char(32) not null,
   IDOL_ID              char(32) not null
);

alter table T_IDOLS comment '关注表';

/*==============================================================*/
/* Table: T_FANS                                                */
/*==============================================================*/
drop table if exists T_FANS;
create table T_FANS
(
   USER_ID              char(32) not null,
   FANS_ID              char(32) not null
);

alter table T_FANS comment '粉丝表';


/*==============================================================*/
/* Table: T_USER_LOGIN_INFO                                     */
/*==============================================================*/
drop table if exists T_USER_LOGIN_INFO;

create table T_USER_LOGIN_INFO
(
   USER_ID              char(32) not null,
   PASSWORD             varchar(64) not null,
   CREATE_TIME          time not null
);

alter table T_USER_LOGIN_INFO comment '用户注册信息表';

create unique index I_USER_ID on T_USER_LOGIN_INFO(USER_ID);


接口设计

你可能感兴趣的:(用户管理系统)