Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
昵称u5c8uav4mu
library
Commits
ebff40a3
Commit
ebff40a3
authored
2 years ago
by
昵称u5c8uav4mu
Browse files
Options
Download
Email Patches
Plain Diff
Delete Main.java
parent
f1f8112e
main
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/Main.java
+0
-31
java/Main.java
with
0 additions
and
31 deletions
+0
-31
java/Main.java
deleted
100644 → 0
+
0
-
31
View file @
f1f8112e
package
library.bin
;
import
library.entity.SysAdmin
;
import
library.entity.SysUser
;
public
class
Main
{
public
static
int
MENU
=
1
;
public
static
SysAdmin
sysAdmin
=
null
;
//当前登陆的管理员
public
static
SysUser
sysUser
=
null
;
//当前登陆的用户
public
static
void
main
(
String
[]
args
)
{
Menu
menu
=
new
Menu
();
for
(;
;
)
{
if
(
MENU
==
1
)
{
menu
.
chooseLogin
();
}
else
if
(
MENU
==
2
)
{
menu
.
adminLogin
();
}
else
if
(
MENU
==
3
)
{
menu
.
adminMainMenu
();
}
else
if
(
MENU
==
4
)
{
menu
.
userMainMenu
();
}
else
if
(
MENU
==
5
)
{
menu
.
userLogin
();
}
}
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
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
Menu
Projects
Groups
Snippets
Help