📄 rcontent.java
字号:
/*
* Created on 2005-10-15
* Last modified on 2007-11-9
* Powered by YeQiangWei.com
*/
package com.yeqiangwei.club.model;
public class RContent implements java.io.Serializable{
/**
*
*/
private static final long serialVersionUID = -1600475198682308514L;
private int rcontentId = 0;
private int topicId=0;
private int replyId=0;
private String content = "";
private byte copyright=0;
private boolean isDeleted = false; //帖子是否被删除
private byte listSignatures = 0; //为扩展多个签名预留
public byte getListSignatures() {
return listSignatures;
}
public void setListSignatures(byte listSignatures) {
this.listSignatures = listSignatures;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public byte getCopyright() {
return copyright;
}
public void setCopyright(byte copyright) {
this.copyright = copyright;
}
public boolean getIsDeleted() {
return isDeleted;
}
public void setIsDeleted(boolean isDeleted) {
this.isDeleted = isDeleted;
}
public int getRcontentId() {
return rcontentId;
}
public void setRcontentId(int rcontentId) {
this.rcontentId = rcontentId;
}
public int getReplyId() {
return replyId;
}
public void setReplyId(int replyId) {
this.replyId = replyId;
}
public int getTopicId() {
return topicId;
}
public void setTopicId(int topicId) {
this.topicId = topicId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -