中小型toB 应用实现系列 – 会话

  • Post author:
  • Post category:其他



中小型toB 应用实现系列 – 导航



方案



表结构

drop table if exists user;
create table if not exists user
(
	id varchar(20) not null comment '主键id',
	no varchar(20) not null comment '编码',
	name varchar(20) not null comment '名称',
	password varchar(100) not null default '' comment '密码',	
	registered_time datetime(3) not null comment '注册时间',
	create_time datetime(3) not null comment '',
	update_time datetime(3) not null comment '',
	constraint pk_id primary key (id),
	unique key uk_no (no)
)comment='用户表' engine=InnoDB;



版权声明:本文为weixin_43324335原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。