vote.java
来自「这是我们做的一个网上购物系统,包手用户和管理员两大功能模块,采用jsp+serv」· Java 代码 · 共 66 行
JAVA
66 行
package com.qyg.shop.vote;
import java.sql.Timestamp;
public class Vote {
private int vote_id;
private int vote_class;
private Timestamp vote_date;
public Vote() {
super();
}
public Vote(int vote_class) {
super();
this.vote_class = vote_class;
}
public Vote(int vote_class, Timestamp vote_date) {
super();
this.vote_class = vote_class;
this.vote_date = vote_date;
}
public Vote(int vote_id, int vote_class, Timestamp vote_date) {
super();
this.vote_id = vote_id;
this.vote_class = vote_class;
this.vote_date = vote_date;
}
public int getVote_id() {
return vote_id;
}
public void setVote_id(int vote_id) {
this.vote_id = vote_id;
}
public int getVote_class() {
return vote_class;
}
public void setVote_class(int vote_class) {
this.vote_class = vote_class;
}
public Timestamp getVote_date() {
return vote_date;
}
public void setVote_date(Timestamp vote_date) {
this.vote_date = vote_date;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?