newsform.java

来自「基于JAVA的学生就业信息网 实现对信息浏览 检索 审核 修改和删除」· Java 代码 · 共 230 行

JAVA
230
字号
/*
 * Created on 2006-7-19
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package org.ug.sztz.webview.structs.forms;

import org.apache.struts.action.ActionForm;
import org.apache.struts.upload.FormFile;

/**
 * @author Skywalker
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class NewsForm extends ActionForm {
	private int id;
	private String newstlt;
	private int newsdj;
	private String newsdate;
	private String newstext;
	private String newsfbr;
	private String newsbz;
	private String newscolor;
	private String newsstatus;
	private String newstop;
	private int sort;
	private int type;
	private FormFile newsPicFile;
	private FormFile newsWmvFile;
	
	private String newsPic;
	private String newsWmv;
	
	/**
	 * @return Returns the newsPic.
	 */
	public String getNewsPic() {
		return newsPic;
	}
	/**
	 * @param newsPic The newsPic to set.
	 */
	public void setNewsPic(String newsPic) {
		this.newsPic = newsPic;
	}
	/**
	 * @return Returns the newsPicFile.
	 */
	public FormFile getNewsPicFile() {
		return newsPicFile;
	}
	/**
	 * @param newsPicFile The newsPicFile to set.
	 */
	public void setNewsPicFile(FormFile newsPicFile) {
		this.newsPicFile = newsPicFile;
	}
	/**
	 * @return Returns the newsWmv.
	 */
	public String getNewsWmv() {
		return newsWmv;
	}
	/**
	 * @param newsWmv The newsWmv to set.
	 */
	public void setNewsWmv(String newsWmv) {
		this.newsWmv = newsWmv;
	}
	/**
	 * @return Returns the newsWmvFile.
	 */
	public FormFile getNewsWmvFile() {
		return newsWmvFile;
	}
	/**
	 * @param newsWmvFile The newsWmvFile to set.
	 */
	public void setNewsWmvFile(FormFile newsWmvFile) {
		this.newsWmvFile = newsWmvFile;
	}
	/**
	 * @return Returns the newsbz.
	 */
	public String getNewsbz() {
		return newsbz;
	}
	/**
	 * @param newsbz The newsbz to set.
	 */
	public void setNewsbz(String newsbz) {
		this.newsbz = newsbz;
	}
	/**
	 * @return Returns the newsfbr.
	 */
	public String getNewsfbr() {
		return newsfbr;
	}
	/**
	 * @param newsfbr The newsfbr to set.
	 */
	public void setNewsfbr(String newsfbr) {
		this.newsfbr = newsfbr;
	}
	/**
	 * @return Returns the id.
	 */
	public int getId() {
		return id;
	}
	/**
	 * @param id The id to set.
	 */
	public void setId(int id) {
		this.id = id;
	}
	/**
	 * @return Returns the newscolor.
	 */
	public String getNewscolor() {
		return newscolor;
	}
	/**
	 * @param newscolor The newscolor to set.
	 */
	public void setNewscolor(String newscolor) {
		this.newscolor = newscolor;
	}
	/**
	 * @return Returns the newsdate.
	 */
	public String getNewsdate() {
		return newsdate;
	}
	/**
	 * @param newsdate The newsdate to set.
	 */
	public void setNewsdate(String newsdate) {
		this.newsdate = newsdate;
	}
	/**
	 * @return Returns the newsdj.
	 */
	public int getNewsdj() {
		return newsdj;
	}
	/**
	 * @param newsdj The newsdj to set.
	 */
	public void setNewsdj(int newsdj) {
		this.newsdj = newsdj;
	}
	/**
	 * @return Returns the newsstatus.
	 */
	public String getNewsstatus() {
		return newsstatus;
	}
	/**
	 * @param newsstatus The newsstatus to set.
	 */
	public void setNewsstatus(String newsstatus) {
		this.newsstatus = newsstatus;
	}
	/**
	 * @return Returns the newstext.
	 */
	public String getNewstext() {
		return newstext;
	}
	/**
	 * @param newstext The newstext to set.
	 */
	public void setNewstext(String newstext) {
		this.newstext = newstext;
	}
	/**
	 * @return Returns the newstlt.
	 */
	public String getNewstlt() {
		return newstlt;
	}
	/**
	 * @param newstlt The newstlt to set.
	 */
	public void setNewstlt(String newstlt) {
		this.newstlt = newstlt;
	}
	/**
	 * @return Returns the newstop.
	 */
	public String getNewstop() {
		return newstop;
	}
	/**
	 * @param newstop The newstop to set.
	 */
	public void setNewstop(String newstop) {
		this.newstop = newstop;
	}
	/**
	 * @return Returns the sort.
	 */
	public int getSort() {
		return sort;
	}
	/**
	 * @param sort The sort to set.
	 */
	public void setSort(int sort) {
		this.sort = sort;
	}
	/**
	 * @return Returns the type.
	 */
	public int getType() {
		return type;
	}
	/**
	 * @param type The type to set.
	 */
	public void setType(int type) {
		this.type = type;
	}
}

⌨️ 快捷键说明

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