📄 loginbean.java
字号:
/*******************************************************************\* ** LightningBoard ** ** http://sourceforge.net/projects/lightningboard/ ** ** Copyright (c) 2002 Xiaobo Liu ** *********************************************************************** LICENSE INFORMATION ** ** LightningBoard is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as ** published by the Free Software Foundation; either version 2 of ** the License, or any later version. ** ** We don't charge anything for the use of LightningBoard, we only ** require you to keep the copyright present on your site and in ** the source files. ** ** LightningBoard is distributed in the hope that it will be useful,** but without any warranty; without even the implied warranty of ** merchantability or fitness for a particular purpose. See the GNU ** General Public License for more details. ** *\*******************************************************************/package liuxiaobo.lb.bean;import java.io.Serializable;public class LoginBean implements Serializable{ private String u_name; private String u_password; private String u_id; private String u_email; private String u_address; private String u_sign; public String getU_name() { return u_name; } public void setU_name(String u_name) { this.u_name = u_name; } public void setU_password(String u_password) { this.u_password = u_password; } public String getU_password() { return u_password; } public void setU_id(String u_id) { this.u_id = u_id; } public String getU_id() { return u_id; } public void setU_email(String u_email) { this.u_email = u_email; } public String getU_email() { return u_email; } public void setU_address(String u_address) { this.u_address = u_address; } public String getU_address() { return u_address; } public void setU_sign(String u_sign) { this.u_sign = u_sign; } public String getU_sign() { return u_sign; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -