countersview.java

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

JAVA
125
字号
/* 
 * Created on 2007-5-14
 * Last modified on 2007-11-18
 * Powered by YeQiangWei.com
 */
package com.yeqiangwei.club.view.model;

public class CountersView implements java.io.Serializable{

    /**
	 * 
	 */
	private static final long serialVersionUID = 532601066493463032L;

	private int countersId = 0;
    
    private int hits = 0;
    
    private int topics = 0;
    
    private int replys = 0;
    
    private int boys = 0;
    
    private int girls = 0;
    
    private int mostOnline = 0;
    
    private int ymd = 0;
    
    private int forumId = 0;
    
    private int others = 0;
    
    private ForumView forumView;

	public ForumView getForumView() {
		return forumView;
	}

	public void setForumView(ForumView forumView) {
		this.forumView = forumView;
	}

	public int getBoys() {
		return boys;
	}

	public void setBoys(int boys) {
		this.boys = boys;
	}

	public int getCountersId() {
		return countersId;
	}

	public void setCountersId(int countersId) {
		this.countersId = countersId;
	}

	public int getForumId() {
		return forumId;
	}

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

	public int getGirls() {
		return girls;
	}

	public void setGirls(int girls) {
		this.girls = girls;
	}

	public int getHits() {
		return hits;
	}

	public void setHits(int hits) {
		this.hits = hits;
	}

	public int getMostOnline() {
		return mostOnline;
	}

	public void setMostOnline(int mostOnline) {
		this.mostOnline = mostOnline;
	}

	public int getOthers() {
		return others;
	}

	public void setOthers(int others) {
		this.others = others;
	}

	public int getReplys() {
		return replys;
	}

	public void setReplys(int replys) {
		this.replys = replys;
	}

	public int getTopics() {
		return topics;
	}

	public void setTopics(int topics) {
		this.topics = topics;
	}

	public int getYmd() {
		return ymd;
	}

	public void setYmd(int ymd) {
		this.ymd = ymd;
	}
}

⌨️ 快捷键说明

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