药品管理系统
药品管理系统 药品管理系统mysql数据库创建语句 药品管理系统oracle数据库创建语句 药品管理系统sqlserver数据库创建语句 药品管理系统spring springMVC hibernate框架对象(javaBean,pojo)设计 药品管理系统spring springMVC mybatis框架对象(javaBean,pojo)设计 药品管理系统mysql数据库版本源码: 超级管理员表创建语句如下: create table t_admin( id int primary key auto_increment comment '主键', username varchar(100) comment '超级管理员账号', password varchar(100) comment '超级管理员密码' ) comment '超级管理员'; insert into t_admin(username,password) values('admin','123456'); 厂家表创建语句如下: create table t_cj( id int primary key auto_increment comment '主键', cjName varchar(100) comment '类型名称', lxdh varchar(100) comment '联系电话' ) comment