📄 clubcontentitem.java
字号:
/*
* Created on 2005-7-30
* Last modified on 2005-7-30
* Powered by GamVan.com
*/
package com.gamvan.club.item;
/**
*
* @author GamVan by 我容易么我
* Powered by GamVan.com
*/
public class ClubContentItem implements java.io.Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
protected int contentID = 0;
protected int topicID=0;
protected String content="";
protected boolean contentUserPen=false;
protected boolean contentUrl=false;
protected boolean contentImg=false;
protected boolean contentEmail=false;
protected byte contentCopyRight=0;
protected static byte contentIsDel=0;
protected int topicReID=0;
public int getTopicReID() {
return topicReID;
}
public void setTopicReID(int topicReID) {
this.topicReID = topicReID;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public byte getContentCopyRight() {
return contentCopyRight;
}
public void setContentCopyRight(byte contentCopyRight) {
this.contentCopyRight = contentCopyRight;
}
public boolean getContentEmail() {
return contentEmail;
}
public void setContentEmail(boolean contentEmail) {
this.contentEmail = contentEmail;
}
public boolean getContentImg() {
return contentImg;
}
public void setContentImg(boolean contentImg) {
this.contentImg = contentImg;
}
public boolean getContentUrl() {
return contentUrl;
}
public void setContentUrl(boolean contentUrl) {
this.contentUrl = contentUrl;
}
public boolean getContentUserPen() {
return contentUserPen;
}
public void setContentUserPen(boolean contentUserPen) {
this.contentUserPen = contentUserPen;
}
public int getTopicID() {
return topicID;
}
public void setTopicID(int topicID) {
this.topicID = topicID;
}
public int getContentID() {
return contentID;
}
public void setContentID(int contentID) {
this.contentID = contentID;
}
public byte getContentIsDel() {
return contentIsDel;
}
public void setContentIsDel(byte contentIsDel) {
this.contentIsDel = contentIsDel;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -