⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vote.java

📁 这是我们做的一个网上购物系统,包手用户和管理员两大功能模块,采用jsp+servlet+java bean技术.
💻 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 + -