1 Star 0 Fork 10

大橙员/智能家居系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
canhuanet.sql 1.45 KB
一键复制 编辑 原始数据 按行查看 历史
OneSheep123 提交于 2020-05-16 12:49 . 数据库表
/*
Navicat MySQL Data Transfer
Source Server : 本地mysql
Source Server Version : 50556
Source Host : localhost:3306
Source Database : canhuanet
Target Server Type : MYSQL
Target Server Version : 50556
File Encoding : 65001
Date: 2020-05-16 12:48:22
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `apikey`
-- ----------------------------
DROP TABLE IF EXISTS `apikey`;
CREATE TABLE `apikey` (
`id` char(9) NOT NULL,
`apikey` varchar(30) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of apikey
-- ----------------------------
INSERT INTO `apikey` VALUES ('578095058', 'H9gWQeBs=ZhfNh3Za6RNGE9dMio=');
-- ----------------------------
-- Table structure for `user`
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(2) NOT NULL AUTO_INCREMENT,
`name` varchar(10) NOT NULL,
`pwd` varchar(10) NOT NULL,
`deviceId` char(9) NOT NULL,
PRIMARY KEY (`id`),
KEY `fk_device` (`deviceId`),
CONSTRAINT `fk_device` FOREIGN KEY (`deviceId`) REFERENCES `apikey` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES ('1', '张三', '12345678', '578095058');
INSERT INTO `user` VALUES ('2', '李四', '12345678', '578095058');
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/big_programmer/smarthomeSystem.git
[email protected]:big_programmer/smarthomeSystem.git
big_programmer
smarthomeSystem
智能家居系统
master

搜索帮助