代码拉取完成,页面将自动刷新
/*
Navicat Premium Data Transfer
Source Server : 127.0.0.1
Source Server Type : MySQL
Source Server Version : 50727
Source Host : localhost:3306
Source Schema : ms_repair
Target Server Type : MySQL
Target Server Version : 50727
File Encoding : 65001
Date: 12/03/2022 13:49:33
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for dict_type
-- ----------------------------
DROP TABLE IF EXISTS `dict_type`;
CREATE TABLE `dict_type` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`remark` varchar(255) DEFAULT NULL,
`style` varchar(255) DEFAULT NULL COMMENT '前端样式',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of dict_type
-- ----------------------------
BEGIN;
INSERT INTO `dict_type` VALUES (1, '墙体损坏', '', 'bg-secondary');
INSERT INTO `dict_type` VALUES (2, '瓷砖脱落', '', 'bg-secondary');
INSERT INTO `dict_type` VALUES (3, '地面积水', '', 'bg-secondary');
INSERT INTO `dict_type` VALUES (4, '地板裂痕', '', 'bg-secondary');
INSERT INTO `dict_type` VALUES (5, '暖气管道漏水', '', 'bg-danger');
COMMIT;
-- ----------------------------
-- Table structure for sys_user
-- ----------------------------
DROP TABLE IF EXISTS `sys_user`;
CREATE TABLE `sys_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL,
`username` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL,
`password` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL,
`permission` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of sys_user
-- ----------------------------
BEGIN;
INSERT INTO `sys_user` VALUES (1, '曹雪芹', 'root', '123', 'root,admin,rep,user');
INSERT INTO `sys_user` VALUES (2, '甄士隐', 'admin', '123', 'admin,rep,user');
INSERT INTO `sys_user` VALUES (3, '贾雨村', 'repairer', '123', 'rep');
INSERT INTO `sys_user` VALUES (4, '贾瑛', 'user', '123', 'user');
INSERT INTO `sys_user` VALUES (5, '测试用户', 'test', '123', 'user');
INSERT INTO `sys_user` VALUES (6, '联系管理员添加权限', 'testrr', '123', NULL);
INSERT INTO `sys_user` VALUES (7, '111', '22222222', '333333', 'user');
COMMIT;
-- ----------------------------
-- Table structure for t_repair
-- ----------------------------
DROP TABLE IF EXISTS `t_repair`;
CREATE TABLE `t_repair` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) DEFAULT NULL COMMENT '用户id',
`type_id` tinyint(4) DEFAULT NULL COMMENT '维修类型id',
`longitude` decimal(12,7) DEFAULT NULL COMMENT '经度',
`latitude` decimal(12,7) DEFAULT NULL COMMENT '纬度',
`address` varchar(255) DEFAULT NULL COMMENT '详细地址',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
`repairer_id` int(11) DEFAULT NULL COMMENT '维修人员id',
`conclusion` varchar(255) DEFAULT NULL COMMENT '结论/维修结果',
`cost` decimal(10,2) DEFAULT NULL COMMENT '维修费用',
`create_dt` datetime DEFAULT NULL COMMENT '创建时间',
`start_dt` datetime DEFAULT NULL COMMENT '维修开始时间',
`end_dt` datetime DEFAULT NULL COMMENT '维修结束',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of t_repair
-- ----------------------------
BEGIN;
COMMIT;
SET FOREIGN_KEY_CHECKS = 1;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。