rcontent.java

来自「社区文章采用的是平板、树形自由选择的两种展示方式」· Java 代码 · 共 90 行

JAVA
90
字号
/*
 * 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 + =
减小字号Ctrl + -
显示快捷键?