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

📄 custform.java

📁 客户
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.sinoest.struts.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: 10-10-2008
 * 
 * XDoclet definition:
 * @struts.form name="custForm"
 */
public class CustForm extends ActionForm {
	/*
	 * Generated Methods
	 */
	private Long CId;
	private String CName;
	private String CCate;
	private String CTrade;
	private String CGrade;
	private String MState;
	/** 
	 * 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
	}

	/**
	 * @return the cId
	 */
	public Long getCId() {
		return CId;
	}

	/**
	 * @param id the cId to set
	 */
	public void setCId(Long id) {
		CId = id;
	}

	/**
	 * @return the cName
	 */
	public String getCName() {
		return CName;
	}

	/**
	 * @param name the cName to set
	 */
	public void setCName(String name) {
		CName = name;
	}

	/**
	 * @return the cCate
	 */
	public String getCCate() {
		return CCate;
	}

	/**
	 * @param cate the cCate to set
	 */
	public void setCCate(String cate) {
		CCate = cate;
	}

	/**
	 * @return the cTrade
	 */
	public String getCTrade() {
		return CTrade;
	}

	/**
	 * @param trade the cTrade to set
	 */
	public void setCTrade(String trade) {
		CTrade = trade;
	}

	/**
	 * @return the cGrade
	 */
	public String getCGrade() {
		return CGrade;
	}

	/**
	 * @param grade the cGrade to set
	 */
	public void setCGrade(String grade) {
		CGrade = grade;
	}

	/**
	 * @return the mState
	 */
	public String getMState() {
		return MState;
	}

	/**
	 * @param state the mState to set
	 */
	public void setMState(String state) {
		MState = state;
	}
}

⌨️ 快捷键说明

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