-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
添加用户权限菜单控制, 非管理员用户无法 添加图书, 添加读者, 管理用户, 添加管理员
- Loading branch information
1 parent
42ad2e2
commit 3421109
Showing
2 changed files
with
26 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,9 +107,9 @@ CREATE TABLE `users` ( | |
-- ---------------------------- | ||
-- Records of users | ||
-- ---------------------------- | ||
INSERT INTO `users` VALUES ('1', '上海', 'string', '2020-07-14 19:01:33.863000', '[email protected]', '0', '0', '学生', '123', '2', '13576145550', 'stu'); | ||
INSERT INTO `users` VALUES ('2', '上海', 'string', '2020-07-14 19:01:33.863000', '[email protected]', '1', '0', '教师', '123', '0', 'string', 'tea'); | ||
INSERT INTO `users` VALUES ('3', '北京', 'a.jpg', '2020-07-14 19:01:33.863000', '[email protected]', '2', '0', '社会人士', '123', '3', '15078826452', 'other'); | ||
INSERT INTO `users` VALUES ('1', '上海', 'string', '2020-07-14 19:01:33.863000', '[email protected]', '0', '1', '学生', '123', '2', '13576145550', 'stu'); | ||
INSERT INTO `users` VALUES ('2', '上海', 'string', '2020-07-14 19:01:33.863000', '[email protected]', '1', '1', '教师', '123', '0', 'string', 'tea'); | ||
INSERT INTO `users` VALUES ('3', '北京', 'a.jpg', '2020-07-14 19:01:33.863000', '[email protected]', '2', '1', '社会人士', '123', '3', '15078826452', 'other'); | ||
INSERT INTO `users` VALUES ('4', '北京', 'b.jpa', '2020-07-16 16:06:43.000000', '[email protected]', '3', '0', '管理员', '123', '3', '17679088880', 'admin'); | ||
INSERT INTO `users` VALUES ('8', '北京朝阳', 'b.jpa', '1998-02-12 08:00:00.000000', '[email protected]', '3', '0', '游客1', '123', '10', '13576008880', 'guest01'); | ||
INSERT INTO `users` VALUES ('9', '北京', 'b.jpa', '1982-01-01 08:00:00.000000', '[email protected]', '3', '0', '游客2', '123', '10', '1768220000', 'guest02'); | ||
INSERT INTO `users` VALUES ('8', '北京朝阳', 'b.jpa', '1998-02-12 08:00:00.000000', '[email protected]', '3', '1', '游客1', '123', '10', '13576008880', 'guest01'); | ||
INSERT INTO `users` VALUES ('9', '北京', 'b.jpa', '1982-01-01 08:00:00.000000', '[email protected]', '3', '1', '游客2', '123', '10', '1768220000', 'guest02'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters