📄 voteuserim.java
字号:
package com.yhbbs.vote.bean;
import com.yhbbs.vote.itface.VoteUser;
/**
* <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 VoteUserIm implements VoteUser {
private int id = 0;
private int article = 0;
private int vote = 0;
private int userid = 0;
private String username = "";
public int getArticle() {
return article;
}
public void setArticle(int article) {
this.article = article;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getUserid() {
return userid;
}
public void setUserid(int userid) {
this.userid = userid;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public int getVote() {
return vote;
}
public void setVote(int vote) {
this.vote = vote;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -