Commit ebff40a3 authored by 昵称u5c8uav4mu's avatar 昵称u5c8uav4mu
Browse files

Delete Main.java

parent f1f8112e
No related merge requests found
Showing with 0 additions and 31 deletions
+0 -31
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();
}
}
}
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment