📄 pollinformation.java
字号:
package com.everstar.poll;
/**
* Title: webstar
* Description: this is the webstar project
* $ Modified Record:
* $2003.4.6: Created.
* Copyright (C) 2003 www.studyjava.com All rights reserved.
* @version 1.0
*/
public class PollInformation implements java.io.Serializable{
public PollInformation() {
}
private int themeNo;
private String themeTitle;
private String author;
private String themeDetail;
private String creatTime;
private String overTime;
private int status;
public int getThemeNo() {
return themeNo;
}
public void setThemeNo(int newThemeNo) {
themeNo = newThemeNo;
}
public void setThemeTitle(String newThemeTitle) {
themeTitle = newThemeTitle;
}
public String getThemeTitle() {
return (themeTitle == null ? "" : themeTitle);
}
public void setAuthor(String newAuthor) {
author = newAuthor;
}
public String getAuthor() {
return (author == null ? "" : author);
}
public void setThemeDetail(String newThemeDetail) {
themeDetail = newThemeDetail;
}
public String getThemeDetail() {
return (themeDetail == null ? "" : themeDetail);
}
public void setCreatTime(String newCreatTime) {
creatTime = newCreatTime;
}
public String getCreatTime() {
return (creatTime == null ? "" : creatTime);
}
public void setOverTime(String newOverTime) {
overTime = newOverTime;
}
public String getOverTime() {
return (overTime == null ? "" : overTime);
}
public void setStatus(int newStatus) {
status = newStatus;
}
public int getStatus() {
return status;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -