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