📄 postpo.java
字号:
package com.lovo.bbs.po;
/**
* 回帖Po
* @author tiancen2001
*
*/
public class PostPo {
private int postid;
private String posttitle;//回复标题
private String postdate;//回复时间
private String content;//回复内容
private int topicid;
private String topicTitle;//所属主题标题
private int userid;
private String username;
private int score;//用户积分
private int userTopicNum;//用户发表数
private String signature;//用户签名
private String headimg;//头像
private int rankid;//等级id
public int getPostid() {
return postid;
}
public void setPostid(int postid) {
this.postid = postid;
}
public int getTopicid() {
return topicid;
}
public void setTopicid(int topicid) {
this.topicid = topicid;
}
public int getUserid() {
return userid;
}
public void setUserid(int userid) {
this.userid = userid;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPosttitle() {
return posttitle;
}
public void setPosttitle(String posttitle) {
this.posttitle = posttitle;
}
public String getPostdate() {
return postdate;
}
public void setPostdate(String postdate) {
this.postdate = postdate;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public int getScore() {
return score;
}
public void setScore(int score) {
this.score = score;
}
public String getSignature() {
return signature;
}
public void setSignature(String signature) {
this.signature = signature;
}
public String getHeadimg() {
return headimg;
}
public void setHeadimg(String headimg) {
this.headimg = headimg;
}
public int getRankid() {
return rankid;
}
public void setRankid(int rankid) {
this.rankid = rankid;
}
public int getUserTopicNum() {
return userTopicNum;
}
public void setUserTopicNum(int userTopicNum) {
this.userTopicNum = userTopicNum;
}
public String getTopicTitle() {
return topicTitle;
}
public void setTopicTitle(String topicTitle) {
this.topicTitle = topicTitle;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -