📄 counters.java
字号:
/*
* Created on 2006-12-19
* Last modified on 2007-05-13
* Powered by YeQiangWei.com
*/
package com.yeqiangwei.club.dao.model;
public class Counters implements java.io.Serializable{
private static final long serialVersionUID = 1L;
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 others = 0;
private int mostOnline = 0;
private int ymd = 0;
private int forumId = 0;
public int getOthers() {
return others;
}
public void setOthers(int others) {
this.others = others;
}
public void setGirls(int girls) {
this.girls = girls;
}
public int getForumId() {
return forumId;
}
public void setForumId(int forumId) {
this.forumId = forumId;
}
public int getCountersId() {
return countersId;
}
public void setCountersId(int countersId) {
this.countersId = countersId;
}
public int getYmd() {
return ymd;
}
public void setYmd(int ymd) {
this.ymd = ymd;
}
public int getBoys() {
return boys;
}
public void setBoys(int boys) {
this.boys = boys;
}
public int getGirls() {
return 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 getReplys() {
return replys;
}
public void setReplys(int replys) {
this.replys = replys;
}
public int getTopics() {
return topics;
}
public void setTopics(int topics) {
this.topics = topics;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -