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

📄 smallclassform.java

📁 医药供应链管理系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.captainli.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: 11-02-2008
 * 
 * XDoclet definition:
 * @struts.form name="smallclassForm"
 */
public class SmallclassForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** sc_bc_id property */
	private int sc_bc_id;

	/** sc_name property */
	private String sc_name;

	/** sc_id property */
	private int sc_id;

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

	/** 
	 * Set the sc_bc_id.
	 * @param sc_bc_id The sc_bc_id to set
	 */
	public void setSc_bc_id(int sc_bc_id) {
		this.sc_bc_id = sc_bc_id;
	}

	/** 
	 * Returns the sc_name.
	 * @return String
	 */
	public String getSc_name() {
		return sc_name;
	}

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

	/** 
	 * Returns the sc_id.
	 * @return Integer
	 */
	public int getSc_id() {
		return sc_id;
	}

	/** 
	 * Set the sc_id.
	 * @param sc_id The sc_id to set
	 */
	public void setSc_id(int sc_id) {
		this.sc_id = sc_id;
	}

	public SmallclassForm(int sc_id, String sc_name, int sc_bc_id) {
		super();
		this.sc_bc_id = sc_bc_id;
		this.sc_name = sc_name;
		this.sc_id = sc_id;
	}

	public SmallclassForm() {
		super();
		// TODO Auto-generated constructor stub
	}
}

⌨️ 快捷键说明

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