You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
localhost9000/MainApp.java

16 lines
408 B

package com.zzy.ui;
import com.zzy.domain.Accountzzy;
public class MainApp {
//用户登录成功后,需要登陆用户数据
public static Accountzzy account;
//Session(会话)
public static void main(String[] args) {
// TODO 调用Login'frame
LoginFrame loginFrame = new LoginFrame("用户登录",400,250);
loginFrame.setVisible(true);
}
}