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

📄 counter.java

📁 野蔷薇论坛源码 java 自己看看吧。 学习用
💻 JAVA
字号:
/*
 * Created on 2005-8-1
 * Last modified on 2006-12-19
 * Powered by YeQiangWei.com
 */
package com.yeqiangwei.club.dao.model;

public class Counter implements java.io.Serializable{
   

    private static final long serialVersionUID = 1L;
    
    private int counterId = 0;
    
    private int hits = 0;
    
    private int topics = 0;
    
    private int replys = 0;
    
    private int boys = 0;
    
    private int girls = 0;
    
    private int others = 0;
    
    private int mostOnline = 0;
    
    private String newUserName = "";
    
    private int lastReplyId = 0;
    
    private int temp=0;

	public int getOthers() {
		return others;
	}

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

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

	public int getBoys() {
		return boys;
	}

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

	public int getGirls() {
		return girls;
	}

	public int getCounterId() {
		return counterId;
	}

	public void setCounterId(int counterId) {
		this.counterId = counterId;
	}

	public int getHits() {
		return hits;
	}

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

	public int getLastReplyId() {
		return lastReplyId;
	}

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

	public int getMostOnline() {
		return mostOnline;
	}

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

	public String getNewUserName() {
		return newUserName;
	}

	public void setNewUserName(String newUserName) {
		this.newUserName = newUserName;
	}

	public int getReplys() {
		return replys;
	}

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

	public int getTemp() {
		return temp;
	}

	public void setTemp(int temp) {
		this.temp = temp;
	}

	public int getTopics() {
		return topics;
	}

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

⌨️ 快捷键说明

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