首页
开源
资讯
活动
开源许可证
软件工程云服务
软件代码质量检测云服务
持续集成与部署云服务
社区个性化内容推荐服务
贡献审阅人推荐服务
群体化学习服务
重睛鸟代码扫描工具
登录
注册
代码拉取完成,页面将自动刷新
Watch
1
Star
10
Fork
2
程序员小王
/
SpringBoot+mybatis+vue实现人事管理系统(前后端分离)
Fork 仓库
加载中
取消
确认
代码
Issues
1
Pull Requests
0
Wiki
0
统计
更新失败,请稍后重试!
Issues
/
详情
移除标识
内容风险标识
本任务被
标识为内容中包含有代码安全 Bug 、隐私泄露等敏感信息,仓库外成员不可访问
建表后,能使用。谢谢
待办的
#I4YLKW
ropt
创建于
2022-03-19 16:27
``` /* Navicat Premium Data Transfer Source Server : 本机 Source Server Type : MySQL Source Server Version : 50709 Source Host : localhost:3306 Source Schema : ems Target Server Type : MySQL Target Server Version : 50709 File Encoding : 65001 Date: 19/03/2022 16:31:24 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for t_emp -- ---------------------------- DROP TABLE IF EXISTS `t_emp`; CREATE TABLE `t_emp` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `salary` double NOT NULL, `age` int(11) NOT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of t_emp -- ---------------------------- INSERT INTO `t_emp` VALUES (2, '杨福君', 90008, 19); INSERT INTO `t_emp` VALUES (6, '邓正武', 180009, 25); INSERT INTO `t_emp` VALUES (8, '王恒杰', 120008, 21); INSERT INTO `t_emp` VALUES (11, '4', 2, 2); SET FOREIGN_KEY_CHECKS = 1; ```
``` /* Navicat Premium Data Transfer Source Server : 本机 Source Server Type : MySQL Source Server Version : 50709 Source Host : localhost:3306 Source Schema : ems Target Server Type : MySQL Target Server Version : 50709 File Encoding : 65001 Date: 19/03/2022 16:31:24 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for t_emp -- ---------------------------- DROP TABLE IF EXISTS `t_emp`; CREATE TABLE `t_emp` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `salary` double NOT NULL, `age` int(11) NOT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of t_emp -- ---------------------------- INSERT INTO `t_emp` VALUES (2, '杨福君', 90008, 19); INSERT INTO `t_emp` VALUES (6, '邓正武', 180009, 25); INSERT INTO `t_emp` VALUES (8, '王恒杰', 120008, 21); INSERT INTO `t_emp` VALUES (11, '4', 2, 2); SET FOREIGN_KEY_CHECKS = 1; ```
评论 (
0
)
ropt
创建了
任务
ropt
修改了
描述
原值
不错
新值
不错
`/*
Navicat Premium Data Transfer
Source Server : 本机
Source Server Type : MySQL
Source Server Version : 50709
Source Host : localhost:3306
Source Schema : ems
Target Server Type : MySQL
Target Server Version : 50709
File Encoding : 65001
Date: 19/03/2022 16:31:24
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for t_emp
-- ----------------------------
DROP TABLE IF EXISTS `t_emp`;
CREATE TABLE `t_emp` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`salary` double NOT NULL,
`age` int(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of t_emp
-- ----------------------------
INSERT INTO `t_emp` VALUES (2, '杨福君', 90008, 19);
INSERT INTO `t_emp` VALUES (6, '邓正武', 180009, 25);
INSERT INTO `t_emp` VALUES (8, '王恒杰', 120008, 21);
INSERT INTO `t_emp` VALUES (11, '4', 2, 2);
SET FOREIGN_KEY_CHECKS = 1;
`
ropt
修改了
描述
原值
不错`/*
Navicat Premium Data Transfer
Sour
c
e Se
r
ver
: 本机
Source Server Type : MySQL
Source Server
Version
:
50709
Source
Host
:
localhost:3306
Source S
chema
:
ems
Target
S
erver
Type
:
MySQL
Target Server Version : 50709
File Encoding
:
65001
Dat
e
: 19/03/2022
16:31
:
24
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for t_emp
-- ----------------------------
DROP TABLE IF EXISTS `t_emp`;
CREATE TABLE `t_emp` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20)
CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`
salary` double NOT NULL,
`
age` int(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE
)
ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of t_emp
-- ----------------------------
INSERT INTO `t_emp` VALUES (2, '杨福君', 90008, 19);
INSERT INTO `t_emp` VALUES (6, '邓正武', 180009, 25);
INSERT INTO `t_emp` VALUES (
8
, '
王恒杰
',
12
00
08, 21);
INSERT INTO `t_emp` VALUES (
11, '4', 2, 2);
SET FOREIGN_KEY_CHECKS = 1;
`
新值
```
/*
Navi
c
at P
r
emium
Data
Transfer
Source Server :
本机
Source
Server
Type
:
MySQL
Source S
erver
Version
:
50709
Source Host : localhost:3306
Source
S
chema
:
ems
Target Server
Type
:
MySQL
Target Server Version : 50709
Fil
e
Encoding
:
65001
Date: 19/03/2022 16:31:24
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for t_emp
-- ----------------------------
DROP TABLE IF EXISTS `t_emp`;
CREATE TABLE `t_emp`
(
`
id` int(11) NOT NULL AUTO_INCREMENT,
`
name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`salary` double NOT NULL,
`age` int(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 12 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of t_emp
-- ----------------------------
INSERT INTO `t_emp` VALUES (
2
, '
杨福君
',
90
00
8, 19);
INSERT INTO `t_emp` VALUES (
6, '邓正武', 180009, 25);
INSERT INTO `t_emp` VALUES (8, '王恒杰', 120008, 21);
INSERT INTO `t_emp` VALUES (11, '4', 2, 2);
SET FOREIGN_KEY_CHECKS = 1;
```
展开全部操作日志
折叠全部操作日志
登录
后才可以发表评论
状态
待办的
待办的
进行中
已完成
已关闭
负责人
未设置
标签
未设置
标签管理
里程碑
未关联里程碑
未关联里程碑
Pull Requests
未关联
未关联
关联的 Pull Requests 被合并后可能会关闭此 issue
分支
未关联
未关联
main
back
开始日期   -   截止日期
-
置顶选项
不置顶
置顶等级:高
置顶等级:中
置顶等级:低
优先级
不指定
严重
主要
次要
不重要
参与者(1)