fix:数据越权修复

This commit is contained in:
msgroup 2022-05-10 15:48:49 +08:00 committed by mingsoft
parent bd51514f29
commit 208f418664
2 changed files with 1 additions and 33 deletions

View File

@ -652,37 +652,6 @@ INSERT INTO `model` VALUES (1765, 86, '86', '12010004', '查看', 'app:view', NU
INSERT INTO `model` VALUES (1767, 87, '84,87', '12010004', '查看', 'template:view', '', 0, 0, '', '2022-05-07 14:17:03', '57', '2022-05-07 14:17:18', '', NULL, 0); INSERT INTO `model` VALUES (1767, 87, '84,87', '12010004', '查看', 'template:view', '', 0, 0, '', '2022-05-07 14:17:03', '57', '2022-05-07 14:17:18', '', NULL, 0);
COMMIT; COMMIT;
-- ----------------------------
-- Table structure for people
-- ----------------------------
DROP TABLE IF EXISTS `people`;
CREATE TABLE `people` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
`people_name` varchar(30) DEFAULT NULL COMMENT '账号',
`people_password` varchar(50) DEFAULT NULL COMMENT '密码',
`people_ip` varchar(100) DEFAULT NULL COMMENT '用户登录ip',
`people_phone` varchar(30) DEFAULT NULL COMMENT '手机号码',
`people_phonecheck` int(1) DEFAULT '0' COMMENT '1手机验证通过',
`people_mail` varchar(120) DEFAULT NULL COMMENT '用户邮箱',
`people_maillcheck` int(1) DEFAULT '0' COMMENT '1邮箱验证通过',
`people_state` int(2) DEFAULT '0' COMMENT '用户状态',
`people_code` varchar(15) DEFAULT NULL COMMENT '随机验证码',
`people_codesenddate` datetime DEFAULT NULL COMMENT '发送验证码时间',
`people_datetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '注册时间',
`UPDATE_BY` int(11) DEFAULT NULL COMMENT '更新人',
`UPDATE_DATE` datetime DEFAULT NULL COMMENT '更新时间',
`CREATE_BY` int(11) DEFAULT NULL COMMENT '创建人',
`CREATE_DATE` datetime DEFAULT NULL COMMENT '创建时间',
`DEL` int(1) DEFAULT '0' COMMENT '删除标记',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='户用基础表';
-- ----------------------------
-- Records of people
-- ----------------------------
BEGIN;
COMMIT;
-- ---------------------------- -- ----------------------------
-- Table structure for role -- Table structure for role
-- ---------------------------- -- ----------------------------

View File

@ -49,7 +49,7 @@
<dependency> <dependency>
<groupId>net.mingsoft</groupId> <groupId>net.mingsoft</groupId>
<artifactId>ms-basic</artifactId> <artifactId>ms-basic</artifactId>
<version>2.1.13.2</version> <version>2.1.13.3</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>net.mingsoft</groupId> <groupId>net.mingsoft</groupId>
@ -57,7 +57,6 @@
<version>2.1.13.1</version> <version>2.1.13.1</version>
</dependency> </dependency>
<!--store入口依赖源码不开发如果不需要MStore可以直接去掉依赖--> <!--store入口依赖源码不开发如果不需要MStore可以直接去掉依赖-->
<dependency> <dependency>
<groupId>net.mingsoft</groupId> <groupId>net.mingsoft</groupId>