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

📄 mydictmanageform.java

📁 JAVA实现的中小型企业CRM客户关系管理系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.crm.mydict;

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: 11-05-2007
 * 
 * XDoclet definition:
 * @struts.form name="mydictmanageForm"
 */
public class MydictmanageForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** typeid property */
	private String typeid;

	/** fieldname property */
	private String fieldname;

	/** id property */
	private String id;

	/** fieldcode property */
	private String fieldcode;

	private String task;
	/*
	 * Generated Methods
	 */

	public String getTask() {
		return task;
	}

	public void setTask(String task) {
		this.task = task;
	}

	/** 
	 * 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 typeid.
	 * @return String
	 */
	public String getTypeid() {
		return typeid;
	}

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

	/** 
	 * Returns the fieldname.
	 * @return String
	 */
	public String getFieldname() {
		return fieldname;
	}

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

	/** 
	 * Returns the id.
	 * @return String
	 */
	public String getId() {
		return id;
	}

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

	/** 
	 * Returns the fieldcode.
	 * @return String
	 */
	public String getFieldcode() {
		return fieldcode;
	}

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

⌨️ 快捷键说明

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