📄 userbean.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 UserBean implements Serializable{ private String u_name; private String u_id; private String u_email; private String u_regtime; private String u_address; private String u_sign; private String u_post; private String u_lasttime; private String u_lastip; public String getU_name() { return u_name; } public void setU_name(String u_name) { this.u_name = u_name; } 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_regtime(String u_regtime) { this.u_regtime = u_regtime; } public String getU_regtime() { return u_regtime; } 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; } public void setU_post(String u_post) { this.u_post = u_post; } public String getU_post() { return u_post; } public void setU_lasttime(String u_lasttime) { this.u_lasttime = u_lasttime; } public String getU_lasttime() { return u_lasttime; } public void setU_lastip(String u_lastip) { this.u_lastip = u_lastip; } public String getU_lastip() { return u_lastip; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -