1 Star 0 Fork 4

ice/JavaO2O

forked from copy/JavaO2O 
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
tb_area.sql 1.09 KB
Copy Edit Raw Blame History
hacker authored 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/ThinkPeace/JavaO2O.git
git@gitee.com:ThinkPeace/JavaO2O.git
ThinkPeace
JavaO2O
JavaO2O
master

Search