tcontent.java
来自「社区文章采用的是平板、树形自由选择的两种展示方式」· Java 代码 · 共 78 行
JAVA
78 行
/*
* 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 + =
减小字号Ctrl + -
显示快捷键?