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

📄 bulletinform.java

📁 基于SSH (struts+spring+hibernate)框架设计的 CRM客户关系管理系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.csu.crm.bulletin.form;

import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;

/** 
 * MyEclipse Struts
 * Creation date: 09-28-2007
 * 
 * XDoclet definition:
 * @struts.form name="bulletinForm"
 */
public class BulletinForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** timeLimit property */
	private String timeLimit;

	/** title property */
	private String title;

	/** bulletinId property */
	private String bulletinId;

	/** employee property */
	private String employee;

	/** accessories property */
	private String accessories;

	/** description property */
	private String description;

	/** content property */
	private String content;

	/** logDate property */
	private String logDate;

	/*
	 * Generated Methods
	 */

	/** 
	 * Method validate
	 * @param mapping
	 * @param request
	 * @return ActionErrors
	 */
	public ActionErrors validate(ActionMapping mapping,
			HttpServletRequest request) {
		// TODO Auto-generated method stub
		return null;
	}

	/** 
	 * Method reset
	 * @param mapping
	 * @param request
	 */
	public void reset(ActionMapping mapping, HttpServletRequest request) {
		// TODO Auto-generated method stub
	}

	/** 
	 * Returns the timeLimit.
	 * @return String
	 */
	public String getTimeLimit() {
		return timeLimit;
	}

	/** 
	 * Set the timeLimit.
	 * @param timeLimit The timeLimit to set
	 */
	public void setTimeLimit(String timeLimit) {
		this.timeLimit = timeLimit;
	}

	/** 
	 * Returns the title.
	 * @return String
	 */
	public String getTitle() {
		return title;
	}

	/** 
	 * Set the title.
	 * @param title The title to set
	 */
	public void setTitle(String title) {
		this.title = title;
	}

	/** 
	 * Returns the bulletinId.
	 * @return String
	 */
	public String getBulletinId() {
		return bulletinId;
	}

	/** 
	 * Set the bulletinId.
	 * @param bulletinId The bulletinId to set
	 */
	public void setBulletinId(String bulletinId) {
		this.bulletinId = bulletinId;
	}

	/** 
	 * Returns the employee.
	 * @return String
	 */
	public String getEmployee() {
		return employee;
	}

	/** 
	 * Set the employee.
	 * @param employee The employee to set
	 */
	public void setEmployee(String employee) {
		this.employee = employee;
	}

	/** 
	 * Returns the accessories.
	 * @return String
	 */
	public String getAccessories() {
		return accessories;
	}

	/** 
	 * Set the accessories.
	 * @param accessories The accessories to set
	 */
	public void setAccessories(String accessories) {
		this.accessories = accessories;
	}

	/** 
	 * Returns the description.
	 * @return String
	 */
	public String getDescription() {
		return description;
	}

	/** 
	 * Set the description.
	 * @param description The description to set
	 */
	public void setDescription(String description) {
		this.description = description;
	}

	/** 
	 * Returns the content.
	 * @return String
	 */
	public String getContent() {
		return content;
	}

	/** 
	 * Set the content.
	 * @param content The content to set
	 */
	public void setContent(String content) {
		this.content = content;
	}

	/** 
	 * Returns the logDate.
	 * @return String
	 */
	public String getLogDate() {
		return logDate;
	}

	/** 
	 * Set the logDate.
	 * @param logDate The logDate to set
	 */
	public void setLogDate(String logDate) {
		this.logDate = logDate;
	}
}

⌨️ 快捷键说明

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