voteim.java

来自「一个不错的bbs论坛系统.对初学者很有帮助」· Java 代码 · 共 51 行

JAVA
51
字号
package com.yhbbs.vote.bean;

import com.yhbbs.vote.itface.Vote;

/**
 * <p>Title:论坛投票相关信息Bean</p>
 * <li>	论坛投票相关信息
 * <br><b>WebSite: www.yyhweb.com</b>
 * <br><b>CopyRight: yyhweb[由由华网]</b>
 * @author stephen
 * @version YHBBS-2.0
 */
public class VoteIm implements Vote {

	private int id = 0;
	private int article = 0;
	private String content = "";
	private int count = 0;
	private int vtype = 0;
	
	public int getArticle() {
		return article;
	}
	public void setArticle(int article) {
		this.article = article;
	}
	public String getContent() {
		return content;
	}
	public void setContent(String content) {
		this.content = content;
	}
	public int getCount() {
		return count;
	}
	public void setCount(int count) {
		this.count = count;
	}
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public int getVtype() {
		return vtype;
	}
	public void setVtype(int vtype) {
		this.vtype = vtype;
	}
}

⌨️ 快捷键说明

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