📄 tcontent.java
字号:
/*
* Created on 2005-7-30
* Last modified on 2007-11-9
* Powered by YeQiangWei.com
*/
package com.yeqiangwei.club.model;
public class TContent implements java.io.Serializable{
/**
*
*/
private static final long serialVersionUID = -2866779715114529276L;
private int tcontentId = 0;
private int topicId = 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 int getTcontentId() {
return tcontentId;
}
public void setTcontentId(int tcontentId) {
this.tcontentId = tcontentId;
}
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 getTopicId() {
return topicId;
}
public void setTopicId(int topicId) {
this.topicId = topicId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -