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

📄 collectionform.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: 12-26-2008
 * 
 * XDoclet definition:
 * @struts.form name="collectionForm"
 */
public class CollectionForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** c_i_id property */
	private int c_i_id;

	/** c_l_id property */
	private int c_l_id;

	/** c_note property */
	private String c_note;

	/** c_b_id property */
	private int c_b_id;
	
	private String c_no;
	/*
	 * Generated Methods
	 */

	public String getC_no() {
		return c_no;
	}

	public void setC_no(String c_no) {
		this.c_no = c_no;
	}

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

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

	/** 
	 * Returns the c_l_id.
	 * @return int
	 */
	public int getC_l_id() {
		return c_l_id;
	}

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

	/** 
	 * Returns the c_note.
	 * @return String
	 */
	public String getC_note() {
		return c_note;
	}

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

	/** 
	 * Returns the c_b_id.
	 * @return int
	 */
	public int getC_b_id() {
		return c_b_id;
	}

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

⌨️ 快捷键说明

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