topicadminform.java

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

JAVA
157
字号
/* 
 * Created on 2007-5-16
 * Last modified on 2007-5-16
 * Powered by YeQiangWei.com
 */
package com.yeqiangwei.club.controller.form;

import java.io.Serializable;

import com.yeqiangwei.club.model.User;

public class TopicAdminForm implements Serializable{
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 8153737415470055026L;

	protected int userId = 0;
	
	protected int topicId = 0;

	protected int replyId = 0;
	
	protected int forumId = 0;
	
	protected double money = 0, score = 0, credit = 0;
	
	protected String userIp = "";
	
	protected boolean listByUserName = true;
	
	protected boolean isList = true;
	
	protected String message = "";
	
	protected String memo = "";
	
	protected String content = "";
	
	protected User user;
	
	public int getReplyId() {
		return replyId;
	}

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

	public int getUserId() {
		return userId;
	}

	public void setUserId(int userId) {
		this.userId = userId;
	}
	
	public User getUser() {
		return user;
	}

	public void setUser(User user) {
		this.user = user;
	}

	public String getContent() {
		return content;
	}

	public void setContent(String content) {
		this.content = content;
	}

	public double getCredit() {
		return credit;
	}

	public void setCredit(double credit) {
		this.credit = credit;
	}

	public int getForumId() {
		return forumId;
	}

	public void setForumId(int forumId) {
		this.forumId = forumId;
	}

	public boolean getIsList() {
		return isList;
	}

	public void setIsList(boolean isList) {
		this.isList = isList;
	}

	public boolean getListByUserName() {
		return listByUserName;
	}

	public void setListByUserName(boolean listByUserName) {
		this.listByUserName = listByUserName;
	}

	public String getMemo() {
		return memo;
	}

	public void setMemo(String memo) {
		this.memo = memo;
	}

	public String getMessage() {
		return message;
	}

	public void setMessage(String message) {
		this.message = message;
	}

	public double getMoney() {
		return money;
	}

	public void setMoney(double money) {
		this.money = money;
	}

	public double getScore() {
		return score;
	}

	public void setScore(double score) {
		this.score = score;
	}

	public int getTopicId() {
		return topicId;
	}

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

	public String getUserIp() {
		return userIp;
	}

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

⌨️ 快捷键说明

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