6 Star 8 Fork 4

copy/JavaO2O

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tb_area.sql 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
hacker 提交于 2018-01-23 20:22 +08:00 . first info
/*
Navicat MySQL Data Transfer
Source Server : mypc
Source Server Version : 50717
Source Host : localhost:3306
Source Database : o2o
Target Server Type : MYSQL
Target Server Version : 50717
File Encoding : 65001
Date: 2018-01-23 20:05:41
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for tb_area
-- ----------------------------
DROP TABLE IF EXISTS `tb_area`;
CREATE TABLE `tb_area` (
`area_id` int(2) NOT NULL AUTO_INCREMENT,
`area_name` varchar(200) NOT NULL,
`priority` int(2) NOT NULL DEFAULT '0',
`create_time` datetime DEFAULT NULL,
`last_edit_time` datetime DEFAULT NULL,
PRIMARY KEY (`area_id`),
UNIQUE KEY `UK_AREA` (`area_name`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tb_area
-- ----------------------------
INSERT INTO `tb_area` VALUES ('1', '东苑', '5', null, null);
INSERT INTO `tb_area` VALUES ('2', '西苑', '2', null, null);
INSERT INTO `tb_area` VALUES ('3', '南苑', '1', null, null);
INSERT INTO `tb_area` VALUES ('4', '北苑', '2', null, null);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/codezzz/JavaO2O.git
git@gitee.com:codezzz/JavaO2O.git
codezzz
JavaO2O
JavaO2O
master

搜索帮助