vote.java

来自「这是本人做的投票系统的源码」· Java 代码 · 共 51 行

JAVA
51
字号
package cn.hxex.vote.model;

import java.util.Set;

public class Vote {
	private String id;
	private String name;
	private String title;
	private String voteType;
	private String picType;
	private Set voteItems;
	
	public String getId() {
		return id;
	}
	public void setId(String id) {
		this.id = id;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getPicType() {
		return picType;
	}
	public void setPicType(String picType) {
		this.picType = picType;
	}
	public String getTitle() {
		return title;
	}
	public void setTitle(String title) {
		this.title = title;
	}
	public Set getVoteItems() {
		return voteItems;
	}
	public void setVoteItems(Set voteItems) {
		this.voteItems = voteItems;
	}
	public String getVoteType() {
		return voteType;
	}
	public void setVoteType(String voteType) {
		this.voteType = voteType;
	}
	
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?