📄 voteim.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -