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

📄 topicpostform.java

📁 这是一款最新的野蔷薇论坛源码,有需要的朋友可以尽情下载
💻 JAVA
字号:
/* 
 * Created on 2007-3-17
 * Last modified on 2007-3-17
 * Powered by YeQiangWei.com
 */
package com.yeqiangwei.club.controller.form;

public class TopicPostForm implements java.io.Serializable{

    private static final long serialVersionUID = 1L;
    
    private int topicId = 0;
    
    private int replyId = 0;
    
    private String title = "";
    
    private String userName = "";
    
    private String password = "";
    
    private int userId = 0;
    
    private int forumId = 0;
    
    private String style = "";

    private byte mood = 0;
    
    private long createDateTime = 0;
    
    private String userIp = "";
    
    private int contentLength = 0;
    
    private String content = "";
    
    private byte copyright = 0; 
    
    private int typeInfoId = 0;
    
	private boolean needReply = false; //回复可见
	
	private boolean needScore = false; //积分可见
	
	private boolean needHelp = false; //求助
	
	private boolean needMoney = false; //购买
	
	private double moneyNum = 0;
	
	private double scoreNum = 0;
	
	private double helpScoreNum = 0; //求助散出积分数
	
	private int lastReplyId = 0; //主题的排序ID,按最后回复ID
	
    private byte listSignatures = 0;
    
    private byte labelId = 0;
    
    private byte localizeImage = 0;
    
    private String image = "";

	public String getImage() {
		return image;
	}

	public void setImage(String image) {
		this.image = image;
	}

	public byte getLocalizeImage() {
		return localizeImage;
	}

	public void setLocalizeImage(byte localizeImage) {
		this.localizeImage = localizeImage;
	}

	public byte getLabelId() {
		return labelId;
	}

	public void setLabelId(byte labelId) {
		this.labelId = labelId;
	}

	public byte getListSignatures() {
		return listSignatures;
	}

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

	public int getLastReplyId() {
		return lastReplyId;
	}

	public void setLastReplyId(int lastReplyId) {
		this.lastReplyId = lastReplyId;
	}

	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public double getHelpScoreNum() {
		return helpScoreNum;
	}

	public void setHelpScoreNum(double helpScoreNum) {
		this.helpScoreNum = helpScoreNum;
	}

	public double getMoneyNum() {
		return moneyNum;
	}

	public void setMoneyNum(double moneyNum) {
		this.moneyNum = moneyNum;
	}

	public boolean getNeedHelp() {
		return needHelp;
	}

	public void setNeedHelp(boolean needHelp) {
		this.needHelp = needHelp;
	}

	public boolean getNeedMoney() {
		return needMoney;
	}

	public void setNeedMoney(boolean needMoney) {
		this.needMoney = needMoney;
	}

	public boolean getNeedReply() {
		return needReply;
	}

	public void setNeedReply(boolean needReply) {
		this.needReply = needReply;
	}

	public boolean getNeedScore() {
		return needScore;
	}

	public void setNeedScore(boolean needScore) {
		this.needScore = needScore;
	}

	public int getReplyId() {
		return replyId;
	}

	public void setReplyId(int replyId) {
		this.replyId = replyId;
	}

	public double getScoreNum() {
		return scoreNum;
	}

	public void setScoreNum(double scoreNum) {
		this.scoreNum = scoreNum;
	}

	public int getTypeInfoId() {
		return typeInfoId;
	}

	public void setTypeInfoId(int typeInfoId) {
		this.typeInfoId = typeInfoId;
	}

	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 int getContentLength() {
		return contentLength;
	}

	public void setContentLength(int contentLength) {
		this.contentLength = contentLength;
	}

	public long getCreateDateTime() {
		return createDateTime;
	}

	public void setCreateDateTime(long createDateTime) {
		this.createDateTime = createDateTime;
	}

	public int getForumId() {
		return forumId;
	}

	public void setForumId(int forumId) {
		this.forumId = forumId;
	}
	
	public short getMood() {
		return mood;
	}

	public String getStyle() {
		return style;
	}

	public void setStyle(String style) {
		this.style = style;
	}

	public String getTitle() {
		return title;
	}

	public void setTitle(String title) {
		this.title = title;
	}

	public int getTopicId() {
		return topicId;
	}

	public void setTopicId(int topicId) {
		this.topicId = topicId;
	}

	public int getUserId() {
		return userId;
	}

	public void setUserId(int userId) {
		this.userId = userId;
	}

	public String getUserIp() {
		return userIp;
	}

	public void setUserIp(String userIp) {
		this.userIp = userIp;
	}

	public String getUserName() {
		return userName;
	}

	public void setUserName(String userName) {
		this.userName = userName;
	}

	public void setMood(byte mood) {
		this.mood = mood;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -