vote_q.java.svn-base

来自「一个实用的CMS管理」· SVN-BASE 代码 · 共 77 行

SVN-BASE
77
字号
package com.suncms.domain; import java.util.*;  import java.io.Serializable;  public class Vote_q implements Serializable {  /**	 * 	 */	private static final long serialVersionUID = 1L;private String row_id; private String vote_title; private String vote_type; private String vote_status; private String vote_content;private Date vote_createtime; private List<Vote_a> votealist = new ArrayList<Vote_a>();private String[] voteqlist;private Integer sum;public Integer getSum() {	return sum;}public void setSum(Integer sum) {	this.sum = sum;}public String getVote_content() {	return vote_content;}public void setVote_content(String vote_content) {	this.vote_content = vote_content;}public String[] getVoteqlist() {	return voteqlist;}public void setVoteqlist(String[] voteqlist) {	this.voteqlist = voteqlist;}public String getRow_id() {	return row_id;}public void setRow_id(String row_id) {	this.row_id = row_id;}public String getVote_title() {	return vote_title;}public void setVote_title(String vote_title) {	this.vote_title = vote_title;}public String getVote_type() {	return vote_type;}public void setVote_type(String vote_type) {	this.vote_type = vote_type;}public String getVote_status() {	return vote_status;}public void setVote_status(String vote_status) {	this.vote_status = vote_status;}public Date getVote_createtime() {	return vote_createtime;}public void setVote_createtime(Date vote_createtime) {	this.vote_createtime = vote_createtime;}public List<Vote_a> getVotealist() {	return votealist;}public void setVotealist(List<Vote_a> votealist) {	this.votealist = votealist;}}

⌨️ 快捷键说明

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