Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
MCMS
Commits
208f4186
Commit
208f4186
authored
May 10, 2022
by
msgroup
Committed by
mingsoft
May 10, 2022
Browse files
fix:数据越权修复
parent
bd51514f
Changes
2
Hide whitespace changes
Inline
Side-by-side
doc/mcms-5.2.8.sql
View file @
208f4186
...
...
@@ -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);
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
-- ----------------------------
...
...
pom.xml
View file @
208f4186
...
...
@@ -49,7 +49,7 @@
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-basic
</artifactId>
<version>
2.1.13.
2
</version>
<version>
2.1.13.
3
</version>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
...
...
@@ -57,7 +57,6 @@
<version>
2.1.13.1
</version>
</dependency>
<!--store入口依赖(源码不开发),如果不需要MStore可以直接去掉依赖-->
<dependency>
<groupId>
net.mingsoft
</groupId>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment