⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 forummodel.java

📁 tbuy1.1.5是在netbeans环境下用JSF技术编写的一个论坛tbuy1.1.5是在netbeans环境下用JSF技术编写的一个论坛
💻 JAVA
字号:
/* * 作者: 胡李青 * qq: 31703299 * Copyright (c) 2007 huliqing * 主页 http://www.tbuy.biz/ * 你可以免费使用该软件,未经许可请勿作用于任何商业目的,如有技术问题请与本人联系! */package biz.tbuy.bbs;import java.io.Serializable;import java.sql.Timestamp;/** * @author huliqing * <p><b>qq:</b>31703299 * <p><b>E-mail:</b> * <a href="mailto:huliqing.cn@gmail.com">huliqing.cn@gmail.com</a> * <p><b>Homepage:</b> * <a href="http://www.tbuy.biz/">http://www.tbuy.biz/</a> */public class ForumModel implements Serializable{    private int num;    private String name;    private String image;    private String comment;    private Timestamp date;    private int byZone;    private String byUser;    private boolean beLock;    private boolean beRevoke;        public ForumModel() {}        public void setNum(int num) {        this.num = num;    }        public int getNum() {        return num;    }        public void setName(String name) {        this.name = name;    }        public String getName() {        return name;    }        public void setImage(String image) {        this.image = image;    }        public String getImage() {        return image;    }        public void setComment(String comment) {        this.comment = comment;    }        public String getComment() {        return comment;    }        public void setDate(Timestamp date) {        this.date = date;    }        public Timestamp getDate() {        return date;    }        public void setByZone(int byZone) {        this.byZone = byZone;    }        public int getByZone() {        return byZone;    }        public void setByUser(String byUser) {        this.byUser = byUser;    }        public String getByUser() {        return byUser;    }        public void setBeLock(boolean beLock) {        this.beLock = beLock;    }        public boolean getBeLock() {        return beLock;    }        public void setBeRevoke(boolean beRevoke) {        this.beRevoke = beRevoke;    }        public boolean getBeRevoke() {        return beRevoke;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -