⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 recontentmodel.java

📁 Javabean+sevrlet+jsp聊天原文件
💻 JAVA
字号:
/* 
 * Created on 2007-3-23
 * Last modified on 2007-3-23
 * Powered by YeQiangWei.com
 */
package com.yeqiangwei.club.service.model;

public class ReContentModel implements java.io.Serializable{
	
    /**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	private int reContentId = 0;
    
    private int topicId=0;
    
    private int replyId=0;
     
    private String content = "";
    
    private byte listSignatures = 0;
  
    private byte copyright=0; 
    
    private boolean isDeleted = false; //帖子是否被删除

	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 byte getListSignatures() {
		return listSignatures;
	}

	public void setListSignatures(byte listSignatures) {
		this.listSignatures = listSignatures;
	}

	public int getReContentId() {
		return reContentId;
	}

	public void setReContentId(int reContentId) {
		this.reContentId = reContentId;
	}

	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 + -