counterview.java
来自「社区文章采用的是平板、树形自由选择的两种展示方式」· Java 代码 · 共 95 行
JAVA
95 行
/*
* Created on 2007-5-20
* Last modified on 2007-5-20
* Powered by YeQiangWei.com
*/
package com.yeqiangwei.club.view.model;
public class CounterView implements java.io.Serializable{
/**
*
*/
private static final long serialVersionUID = 142888950386409568L;
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 mostOnline = 0;
private int others = 0;
public int getBoys() {
return boys;
}
public void setBoys(int boys) {
this.boys = boys;
}
public int getCounterId() {
return counterId;
}
public void setCounterId(int counterId) {
this.counterId = counterId;
}
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;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?